1/* This is a phony C program that's only here to test xgettext message extraction */ 2 3const char help[] = 4/* TRANSLATORS: This is a test. You don't need to translate it. */ 5N_("See 'git help COMMAND' for more information on a specific command."); 6 7intmain(void) 8{ 9/* TRANSLATORS: This is a test. You don't need to translate it. */ 10puts(_("TEST: A C test string")); 11 12/* TRANSLATORS: This is a test. You don't need to translate it. */ 13printf(_("TEST: A C test string%s"),"variable"); 14 15/* TRANSLATORS: This is a test. You don't need to translate it. */ 16printf(_("TEST: Hello World!")); 17 18/* TRANSLATORS: This is a test. You don't need to translate it. */ 19printf(_("TEST: Old English Runes")); 20 21/* TRANSLATORS: This is a test. You don't need to translate it. */ 22printf(_("TEST: ‘single’ and “double” quotes")); 23}