Revision b0edfab2
Von Thomas Heck vor mehr als 11 Jahren hinzugefügt
js/kivi.js | ||
---|---|---|
6 | 6 |
ns.t8 = function(text, params) { |
7 | 7 |
if( ns._localeLang ) { |
8 | 8 |
if( !ns._locales[ns._localeLang] ) { |
9 |
ns._locales[ns._localeLang] = {}; |
|
10 |
|
|
9 | 11 |
jQuery.ajax({ |
10 | 12 |
url: "js/locale/"+ ns._localeLang +".js", |
11 | 13 |
async: false, |
... | ... | |
13 | 15 |
success: function(res) { |
14 | 16 |
ns._locales[ns._localeLang] = res; |
15 | 17 |
}, |
16 |
error: function(xhr, textStatus, errorThrown) { |
|
17 |
alert(textStatus +": "+ errorThrown); |
|
18 |
}, |
|
19 | 18 |
}); |
20 | 19 |
} |
21 | 20 |
|
Auch abrufbar als: Unified diff
JS-Übersetzung: Fehlermeldung unterdrücken und nur eine Abfrage am Stück zulassen