From: Philipp Date: Sat, 17 Apr 2021 11:20:45 +0000 (+0200) Subject: remove warning X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f10c24c83a119eecce8e842bbad6e24acd1a5df3;p=friendica.git remove warning --- diff --git a/src/Core/L10n.php b/src/Core/L10n.php index 138fd8730b..dc31b41832 100644 --- a/src/Core/L10n.php +++ b/src/Core/L10n.php @@ -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; }