Windows resource: handle dashes in the Git version gracefully
[git/dscho.git] / t / t0200 / test.c
blob584d45cf3602706bcefef3a8596fe35e87ffb5e9
1 /* This is a phony C program that's only here to test xgettext message extraction */
3 const char help[] =
4 /* TRANSLATORS: This is a test. You don't need to translate it. */
5 N_("See 'git help COMMAND' for more information on a specific command.");
7 int main(void)
9 /* TRANSLATORS: This is a test. You don't need to translate it. */
10 puts(_("TEST: A C test string"));
12 /* TRANSLATORS: This is a test. You don't need to translate it. */
13 printf(_("TEST: A C test string %s"), "variable");
15 /* TRANSLATORS: This is a test. You don't need to translate it. */
16 printf(_("TEST: Hello World!"));
18 /* TRANSLATORS: This is a test. You don't need to translate it. */
19 printf(_("TEST: Old English Runes"));
21 /* TRANSLATORS: This is a test. You don't need to translate it. */
22 printf(_("TEST: ‘single’ and “double” quotes"));