diff options
Diffstat (limited to 'include/functions.inc.php')
-rw-r--r-- | include/functions.inc.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index 46651c284..6b44c81dc 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -1012,12 +1012,14 @@ function l10n($key) function l10n_dec($singular_fmt_key, $plural_fmt_key, $decimal) { global $lang_info; - if ( $lang_info['zero_plural'] and $decimal == 0 ) - { - return sprintf(l10n($plural_fmt_key), 0); - } - return sprintf(l10n(($decimal > 1 ? $plural_fmt_key : - $singular_fmt_key)), $decimal); + + return + sprintf( + l10n(( + (($decimal > 1) or ($decimal == 0 and $lang_info['zero_plural'])) + ? $plural_fmt_key + : $singular_fmt_key + )), $decimal); } /** |