js i18n: misc fixes; quick-reply.js i18n

This commit is contained in:
czaks 2013-07-03 01:04:08 -04:00
parent 3fc38cb552
commit da9f367f2f
3 changed files with 7 additions and 7 deletions

View file

@ -2,12 +2,12 @@
/* gettext-compatible _ function, example of usage:
*
* > // Loading pl_PL.json here (containing polish translation strings generated by tools/locale_compile.php)
* > // Loading pl_PL.json here (containing polish translation strings generated by tools/i18n_compile.php)
* > alert(_("Hello!"));
* Witaj!
*/
function _(s) {
return (typeof tb_l10n != 'undefined' && typeof tb_l10n[s] != 'undefined') ? tb_l10n[s] : s;
return (typeof l10n != 'undefined' && typeof l10n[s] != 'undefined') ? l10n[s] : s;
}
/* printf-like formatting function, example of usage: