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
In index (228)
create functions for translate the be able to get back default values. Now if the key is not found then empty string will be returned.
I already created it for level:
function get_translated_level(level){
if (translated_levels.hasOwnProperty(level)) {
return translated_levels[level];
} else {
return level;
}
}
The text was updated successfully, but these errors were encountered:
In index (228)
create functions for translate the be able to get back default values. Now if the key is not found then empty string will be returned.
I already created it for level:
The text was updated successfully, but these errors were encountered: