remove warning

This commit is contained in:
Philipp Holzer 2021-04-17 13:20:45 +02:00
parent 6a414b0543
commit f10c24c83a
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 2 additions and 2 deletions

View File

@ -304,9 +304,9 @@ class L10n
} elseif (count($t) > 0) {
// for some languages there is only a single array item
$s = $t[0];
} else {
$this->logger->warning('Found empty strings array.', ['singular' => $singular, 'plural' => $plural, 'array' => $t]);
}
// if $t is empty, skip it, because empty strings array are indended
// to make string file smaller when there's no translation
} else {
$s = $t;
}