diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-10 23:28:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-10 23:38:04 +0200 |
commit | bc0e6c9312f5f755e1ccd7d8c43b58974e6f7d38 (patch) | |
tree | 7066a9abd3c0fc0574dbb3598ca421bbc8dbf943 /guix | |
parent | c033f5d6b5b565c43588d25b7b47d177f0c0933c (diff) |
scripts: Fix singular/plural message mismatch.
* guix/scripts.scm (warn-about-old-distro): Swap singular and plural
forms in 'N_' call.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts.scm b/guix/scripts.scm index 8c8c8ef9c9..d5c53dea1b 100644 --- a/guix/scripts.scm +++ b/guix/scripts.scm @@ -171,8 +171,8 @@ Show what and how will/would be built." (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)) |