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 提交者 GitHub
當前提交 5cb3e5d6e1
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 8 行新增1 行删除

查看文件

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