diff options
-rw-r--r-- | core/libraries/I18n.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libraries/I18n.php b/core/libraries/I18n.php index 546919b9..7bb2eff6 100644 --- a/core/libraries/I18n.php +++ b/core/libraries/I18n.php @@ -189,7 +189,7 @@ class I18n_Core { if (!is_array($entry)) { return $entry; } else if ($count == null) { - $count = 1; + $count = $locale == "en" ? 0 : 1; } $plural_key = self::get_plural_key($locale, $count); |