Merge pull request #10646 from annando/fix-translation

Fix translations for singular/plural strings
pull/10648/head
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
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;
}