Modify the existing i18n() javascript function to lookup strings in

the javascript i18n array as well as expanding arguments, and make all
lookups go through it.
This commit is contained in:
Tom Hughes 2009-10-02 23:41:19 +00:00
parent 596ab82461
commit f4dba81b64
3 changed files with 11 additions and 9 deletions

View file

@ -62,7 +62,7 @@ function updatelinks(lon,lat,zoom,layers,minlon,minlat,maxlon,maxlat,objtype,obj
node.href = setArgs("/edit", args);
node.style.fontStyle = 'normal';
} else {
node.href = 'javascript:alert(rails_i18n["javascripts.site.edit_zoom_alert"]);';
node.href = 'javascript:alert(i18n("javascripts.site.edit_zoom_alert"));';
node.style.fontStyle = 'italic';
}
}
@ -87,7 +87,7 @@ function updatelinks(lon,lat,zoom,layers,minlon,minlat,maxlon,maxlat,objtype,obj
node.href = setArgs("/history", args);
node.style.fontStyle = 'normal';
} else {
node.href = 'javascript:alert(rails_i18n["javascripts.site.history_zoom_alert"]);';
node.href = 'javascript:alert(i18n("javascripts.site.history_zoom_alert"));';
node.style.fontStyle = 'italic';
}
}
@ -202,6 +202,8 @@ function getStyle(el, property) {
* rails and then later by javascript.
*/
function i18n(string, keys) {
string = i18n_strings[string] || string
for (var key in keys) {
var re_key = '\\[\\[' + key + '\\]\\]';
var re = new RegExp(re_key, "g");