Jump to content

[FIXED in 6.4.1]Little modification to Localize Category labels in mai


Recommended Posts

Posted (edited)

EDIT Fixed in release 6.4.1

Hello,

Not really a bug. In boxes.js function fillBoxes is modified like this

function fillBoxes() 
{
...
//insert category and label
// -- label --
[color="red"] // Add this lines
try {
cattext = eval("opt"+cat[i]+"[Language]");
} catch(err) {
cattext = cat[i];
}
[/color]

txt += '<label class="category" ';
txt += 'for="' + cat[i][0] + '" ';
txt += 'onclick="toggleChecked(\'' + cat[i] + '\'); checkCategory(\'' + cat[i] + '\');" ';
[color="red"]txt += '/>' + cattext + '</label>'; // <-- REPLACE cat[i][0] with cattext[/color]
// -- category --
if (!DisableCatCheckBoxes)
{
....
}

Regards

Edited by t4user

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...