Merge pull request #10646 from annando/fix-translation

Fix translations for singular/plural strings
This commit is contained in:
Tobias Diekershoff 2021-08-31 09:44:15 +02:00 committed by GitHub
commit 01abd5b344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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