diff --git a/src/Translator/Translator.php b/src/Translator/Translator.php index 1864ff0f..50d148e9 100644 --- a/src/Translator/Translator.php +++ b/src/Translator/Translator.php @@ -333,7 +333,7 @@ public function translatePlural( ); } - return ($number != 1 ? $singular : $plural); + return ($number == 1 ? $singular : $plural); } $index = $this->messages[$textDomain][$locale]