scripts: Fix singular/plural message mismatch.
authorLudovic Courtès <ludo@gnu.org>
Wed, 10 May 2017 21:28:04 +0000 (23:28 +0200)
committerLudovic Courtès <ludo@gnu.org>
Wed, 10 May 2017 21:38:04 +0000 (23:38 +0200)
* guix/scripts.scm (warn-about-old-distro): Swap singular and plural
forms in 'N_' call.

guix/scripts.scm

index 8c8c8ef..d5c53de 100644 (file)
@@ -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))