mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
fixing a problem with automatization ;-)
This commit is contained in:
parent
214e7d9b1c
commit
a79ca033f4
102 changed files with 819 additions and 0 deletions
|
@ -1,2 +1,16 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
||||
}}
|
||||
;
|
||||
$a->strings["Altpager settings updated."] = "Nastavení Altpager aktualizováno.";
|
||||
$a->strings["Alternate Pagination Setting"] = "Alternate Pagination nastavení";
|
||||
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Použít odkazy na \"novější\" a \"starší\" stránky místo čísel stránek?";
|
||||
$a->strings["Submit"] = "Odeslat";
|
||||
$a->strings["Global"] = "Globální";
|
||||
$a->strings["Force global use of the alternate pager"] = "Vynutit globální použití alternativního stránkování";
|
||||
$a->strings["Individual"] = "Individuálové";
|
||||
$a->strings["Each user chooses whether to use the alternate pager"] = "Každý uživatel si vybere, zda-li použije alternativní stránkování.";
|
||||
$a->strings["Settings updated."] = "Nastavení aktualizováno.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue