From bc0e6c9312f5f755e1ccd7d8c43b58974e6f7d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 10 May 2017 23:28:04 +0200 Subject: scripts: Fix singular/plural message mismatch. * guix/scripts.scm (warn-about-old-distro): Swap singular and plural forms in 'N_' call. --- guix/scripts.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guix/scripts.scm') 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)) -- cgit v1.2.3