localized_js: disable when translations are disabled in config.php

This commit is contained in:
Andrew Dolgov 2010-01-13 21:38:18 +03:00
parent 47179c0e88
commit 5eee1b4247
1 changed files with 8 additions and 5 deletions

View File

@ -30,13 +30,16 @@ function __(msg) {
<?php
$l10n = _get_reader();
if (ENABLE_TRANSLATIONS) {
for ($i = 0; $i < $l10n->total; $i++) {
$orig = $l10n->get_original_string($i);
$translation = __($orig);
$l10n = _get_reader();
print T_js_decl($orig, $translation);
for ($i = 0; $i < $l10n->total; $i++) {
$orig = $l10n->get_original_string($i);
$translation = __($orig);
print T_js_decl($orig, $translation);
}
}
?>