]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
cal: fix gettext warning
authorKarel Zak <kzak@redhat.com>
Fri, 11 Oct 2013 10:53:56 +0000 (12:53 +0200)
committerKarel Zak <kzak@redhat.com>
Fri, 11 Oct 2013 10:53:56 +0000 (12:53 +0200)
 /usr/bin/xgettext: Non-ASCII comment at or before misc-utils/cal.c:473.
                   Please specify the source encoding through --from-code.

Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/cal.c

index 2360e3da7730bd23c9486a0eadeec52879caa9e7..a286d8d545826d38b8ee24d52ee9481c28f25689 100644 (file)
@@ -468,8 +468,8 @@ static int do_monthly(int day, int month, long year,
        } else {
                /* TRANSLATORS: %s is the month name, %ld the year number.
                 * You can change the order and/or add something here;
-                * e.g. for Basque the translation should be "%2$ldko %1$s",
-                * and the Vietnamese should be "%s năm %d", and so on. */
+                * e.g. for Basque the translation should be "%2$ldko %1$s".
+                */
                snprintf(lineout, sizeof(lineout), _("%s %ld"),
                        full_month[month - 1], year);
                center_str(lineout, out->s[pos], ARRAY_SIZE(out->s[pos]), width);