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.
Language file, international characters CSS-weirdness
fuar
New
I've spent most of the day tinkering around with the language file to create a Norwegian.php, and stumbled onto som weirdness.
I may be wrong, but it seems like you are using some of these
in the creation of the CSS, and that doesn't go very well with international characters. It results in a somewhat mangled Text-only box.
I may be wrong, but it seems like you are using some of these
$Context->Dictionary["OffCaps"] = "AV";
$Context->Dictionary["OnCaps"] = "PÃ…";
$Context->Dictionary["Off"] = "av";
$Context->Dictionary["On"] = "på";
in the creation of the CSS, and that doesn't go very well with international characters. It results in a somewhat mangled Text-only box.
0
This discussion has been closed.
Comments
any idea what could be causing that?
$Context->Dictionary["Turn"] = "skru"; $Context->Dictionary["OnCaps"] = "På"; </code
$Context->Dictionary["OffCaps"] = "OFF"; $Context->Dictionary["OnCaps"] = "ON"; $Context->Dictionary["Off"] = "off"; $Context->Dictionary["On"] = "on";
no matter what i replace them with, the line breaking occurs.
works like a charm.
eeek
Changing this one:
$Context->Dictionary["Applicant"] = "Applicant";
will make it impossible to get the list of new applicants since it will use role:Applicant for the search no matter what you put in there.