DebugNow: Internationalize text

Translation instructions are "keep it short and all uppercase,
5 characters or less".

Now non-English languages can join the fun:

DEBUG JETZT
DEBUG AHORA
DEBUG ORA
DEBUG が現在

... this might be a bit of a challenge for some languages.
This commit is contained in:
John Scipione
2014-03-04 18:11:51 -05:00
parent 0f7a8c1da4
commit 782f6a4fae
@@ -40,8 +40,10 @@ BScreenSaver* instantiate_screen_saver(BMessage* message, image_id image)
DebugNow::DebugNow(BMessage* archive, image_id id)
:
BScreenSaver(archive, id),
fLine1("DEBUG"),
fLine2("NOW")
fLine1(B_TRANSLATE_COMMENT("DEBUG",
"keep it short and all uppercase, 5 characters or less")),
fLine2(B_TRANSLATE_COMMENT("NOW",
"keep it short and all uppercase, 5 characters or less"))
{
}