mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
CS showmore addon
This commit is contained in:
parent
ae39bd6875
commit
4b60073ab4
2 changed files with 19 additions and 17 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue