sforkowany z mirror/friendica
Merge pull request #5587 from annando/notice-tt
Notice in tt fixed that happens with chinese translations2022.09-rc
commit
5cb3e5d6e1
|
@ -6,6 +6,7 @@ namespace Friendica\Core;
|
|||
|
||||
use Friendica\BaseObject;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\Core\System;
|
||||
|
||||
require_once 'boot.php';
|
||||
require_once 'include/dba.php';
|
||||
|
@ -193,7 +194,13 @@ class L10n extends BaseObject
|
|||
} else {
|
||||
$i = self::stringPluralSelectDefault($count);
|
||||
}
|
||||
$s = $t[$i];
|
||||
|
||||
// for some languages there is only a single array item
|
||||
if (!isset($t[$i])) {
|
||||
$s = $t[0];
|
||||
} else {
|
||||
$s = $t[$i];
|
||||
}
|
||||
} else {
|
||||
$s = $t;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue