Staging
v0.8.1
Revision 6ecc01f26cc38841c8d0c89f24a260067b462f30 authored by Junio C Hamano on 12 December 2012, 18:06:24 UTC, committed by Junio C Hamano on 27 December 2012, 23:40:09 UTC
We earlier removed a link to list of contributors that pointed to a
defunct page; let's use a working one from Ohloh.net to replace it
instead.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2b05d9f
Raw File
test.c
/* 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)
{
	/* TRANSLATORS: This is a test. You don't need to translate it. */
	puts(_("TEST: A C test string"));

	/* TRANSLATORS: This is a test. You don't need to translate it. */
	printf(_("TEST: A C test string %s"), "variable");

	/* TRANSLATORS: This is a test. You don't need to translate it. */
	printf(_("TEST: Hello World!"));

	/* TRANSLATORS: This is a test. You don't need to translate it. */
	printf(_("TEST: Old English Runes"));

	/* TRANSLATORS: This is a test. You don't need to translate it. */
	printf(_("TEST: ‘single’ and “double” quotes"));
}
back to top