mirror of
https://github.com/hequan2017/seal.git
synced 2026-04-25 19:20:47 +08:00
11 lines
210 B
Python
11 lines
210 B
Python
window.getLanuage = function (key) {
|
|
console.log(key)
|
|
if (!window.Lanuages) {
|
|
return "";
|
|
}
|
|
var val = Lanuages[key];
|
|
if (!val || val == "") {
|
|
val = key;
|
|
}
|
|
return val
|
|
} |