Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
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.