mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
scripts: Fix singular/plural message mismatch.
* guix/scripts.scm (warn-about-old-distro): Swap singular and plural forms in 'N_' call.
This commit is contained in:
parent
c033f5d6b5
commit
bc0e6c9312
1 changed files with 2 additions and 2 deletions
|
@ -171,8 +171,8 @@ (define age
|
|||
(stat:mtime stat)))))
|
||||
|
||||
(when (and age (>= age old))
|
||||
(warning (N_ "Your Guix installation is ~a days old.\n"
|
||||
"Your Guix installation is ~a day old.\n"
|
||||
(warning (N_ "Your Guix installation is ~a day old.\n"
|
||||
"Your Guix installation is ~a days old.\n"
|
||||
(seconds->days age))
|
||||
(seconds->days age)))
|
||||
(when (or (not age) (>= age old))
|
||||
|
|
Loading…
Reference in a new issue