Text-only mode translation bug
I found a bug: when I translate the "on" and "off" strings in the "Text-only mode is..." message, it doesn't appear correctly anymore. You'll see immediately what I mean, if you try this:
Change this:
$Context->Dictionary["OffCaps"] = "OFF";
$Context->Dictionary["OnCaps"] = "ON";
$Context->Dictionary["Off"] = "off";
$Context->Dictionary["On"] = "on";
into this:
$Context->Dictionary["OffCaps"] = "FOO";
$Context->Dictionary["OnCaps"] = "BAR";
$Context->Dictionary["Off"] = "foo";
$Context->Dictionary["On"] = "bar";
0
This discussion has been closed.
Comments
can i add entries to this list somehow?
in the meantime, i found another 2 translation-related bugs.