summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/functions.php b/include/functions.php
index 58aad1113..6312fa761 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -4283,8 +4283,8 @@
$orig = $l10n->get_original_string($i);
if(strpos($orig, "\000") !== FALSE) { // Plural forms
$key = explode(chr(0), $orig);
- print T_js_decl($key[0], ngettext($key[0], $key[1], 1)); // Singular
- print T_js_decl($key[1], ngettext($key[0], $key[1], 2)); // Plural
+ print T_js_decl($key[0], _ngettext($key[0], $key[1], 1)); // Singular
+ print T_js_decl($key[1], _ngettext($key[0], $key[1], 2)); // Plural
} else {
$translation = __($orig);
print T_js_decl($orig, $translation);