From: Ævar Arnfjörð Bjarmason Date: Mon, 30 Aug 2010 17:54:53 +0000 (+0000) Subject: gettext tests: mark a test message as not needing translation X-Git-Tag: ko-pu~10^2~138 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1b1984ebd973a8af5ebd486c130e8d08a0258ce5;p=git.git gettext tests: mark a test message as not needing translation This was the only message in t/t0200/* that didn't have a TRANSLATORS comment, without it translators will waste time translating this needlessly. Signed-off-by: Ævar Arnfjörð Bjarmason --- diff --git a/po/is.po b/po/is.po index 815286beb..26f349acf 100644 --- a/po/is.po +++ b/po/is.po @@ -16,35 +16,36 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: t/t0200/test.c:4 +#. TRANSLATORS: This is a test. You don't need to translate it. +#: t/t0200/test.c:5 msgid "See 'git help COMMAND' for more information on a specific command." msgstr "Sjá 'git help SKIPUN' til að sjá hjálp fyrir tiltekna skipun." #. TRANSLATORS: This is a test. You don't need to translate it. -#: t/t0200/test.c:9 +#: t/t0200/test.c:10 msgid "TEST: A C test string" msgstr "TILRAUN: C tilraunastrengur" #. TRANSLATORS: This is a test. You don't need to translate it. -#: t/t0200/test.c:12 +#: t/t0200/test.c:13 #, c-format msgid "TEST: A C test string %s" msgstr "TILRAUN: C tilraunastrengur %s" #. TRANSLATORS: This is a test. You don't need to translate it. -#: t/t0200/test.c:15 +#: t/t0200/test.c:16 #, c-format msgid "TEST: Hello World!" msgstr "TILRAUN: Halló Heimur!" #. TRANSLATORS: This is a test. You don't need to translate it. -#: t/t0200/test.c:18 +#: t/t0200/test.c:19 #, c-format msgid "TEST: Old English Runes" msgstr "TILRAUN: ᚻᛖ ᚳᚹᚫᚦ ᚦᚫᛏ ᚻᛖ ᛒᚢᛞᛖ ᚩᚾ ᚦᚫᛗ ᛚᚪᚾᛞᛖ ᚾᚩᚱᚦᚹᛖᚪᚱᛞᚢᛗ ᚹᛁᚦ ᚦᚪ ᚹᛖᛥᚫ" #. TRANSLATORS: This is a test. You don't need to translate it. -#: t/t0200/test.c:21 +#: t/t0200/test.c:22 #, c-format msgid "TEST: ‘single’ and “double” quotes" msgstr "TILRAUN: ‚einfaldar‘ og „tvöfaldar“ gæsalappir" diff --git a/t/t0200/test.c b/t/t0200/test.c index ff15c2f91..584d45cf3 100644 --- a/t/t0200/test.c +++ b/t/t0200/test.c @@ -1,6 +1,7 @@ /* This is a phony C program that's only here to test xgettext message extraction */ const char help[] = + /* TRANSLATORS: This is a test. You don't need to translate it. */ N_("See 'git help COMMAND' for more information on a specific command."); int main(void)