]> git.mxchange.org Git - friendica-addons.git/blob - js_upload/lang/cs/strings.php
Merge pull request #1082 from annando/no-item
[friendica-addons.git] / js_upload / lang / cs / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_cs")) {
4 function string_plural_select_cs($n){
5         $n = intval($n);
6         if (($n==1)) { return 0; } else if (($n>=2 && $n<=4)) { return 1; } else  { return 2; }
7 }}
8 ;
9 $a->strings["Upload a file"] = "Nahrát soubor";
10 $a->strings["Drop files here to upload"] = "Přeneste sem soubory k nahrání";
11 $a->strings["Cancel"] = "Zrušit";
12 $a->strings["Failed"] = "Neúspěch";
13 $a->strings["No files were uploaded."] = "Žádné soubory nebyly nahrány.";
14 $a->strings["Uploaded file is empty"] = "Nahraný soubor je prázdný";
15 $a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
16 $a->strings["File has an invalid extension, it should be one of "] = "Soubor má neplatnou příponu, ta by měla být jednou z";
17 $a->strings["Upload was cancelled, or server error encountered"] = "Nahrávání bylo zrušeno nebo došlo k chybě na serveru";