CS showmore addon

This commit is contained in:
Tobias Diekershoff 2018-06-18 11:11:06 +02:00
parent ae39bd6875
commit 4b60073ab4
2 changed files with 19 additions and 17 deletions

View file

@ -2,12 +2,13 @@
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
$n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}}
;
$a->strings["\"Show more\" Settings"] = "\"Show more\" nastavení";
$a->strings["Enable Show More"] = "Povolit Show more";
$a->strings["Cutting posts after how much characters"] = "Oříznout přízpěvky po zadaném množství znaků";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Show More Settings saved."] = "\"Show more\" nastavení uloženo.";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["Show More Settings saved."] = "Nastavení \"Show more\" uložena.";
$a->strings["show more"] = "zobrazit více";