not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
352 B

// Localization API
var l10n;
// Localization function
__$FC = function(str) {
// Look in dictionnary
var value = l10n.get(str);
if (value != undefined && value != "")
return value.replace("%27", "'").replace("%22", '"');
if (str == "sounddir") // HACK: At first launch not always initialized
return l10n.language.code;
return str;
}