Merge pull request #5587 from annando/notice-tt

Notice in tt fixed that happens with chinese translations
This commit is contained in:
Tobias Diekershoff 2018-08-08 16:43:05 +02:00 odevzdal GitHub
revize 5cb3e5d6e1
V databázi nebyl nalezen žádný známý klíč pro tento podpis
ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 8 přidání a 1 odebrání

Zobrazit soubor

@ -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;
}