You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function should be modified to somthing like this:
function _(n) {
var my_lang = <TMPL_VAR LANGUAGE>; -- not working !!!
if (my_lang == null)
my_lang = translations.english;
else
my_lang = translations.my_lang;
var item = my_lang[0][n];
var out = (item == null) ? n : item;
return out;
}
The text was updated successfully, but these errors were encountered:
To avoid exception in some cases like this
The function should be modified to somthing like this:
The text was updated successfully, but these errors were encountered: