Fix translations for singular/plural strings

This commit is contained in:
Michael 2021-08-31 05:51:08 +00:00
parent 80ff11e626
commit 80b13ec232
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ class L10n
if (is_null($s) && $this->stringPluralSelectDefault($count)) {
$s = $plural;
} else {
} elseif (is_null($s)) {
$s = $singular;
}