]> git.mxchange.org Git - friendica-addons.git/blob - impressum/lang/cs/strings.php
Merge branch 'develop' into bugfix/core-GS-5596
[friendica-addons.git] / impressum / 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         return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
7 }}
8 ;
9 $a->strings["Impressum"] = "Impressum";
10 $a->strings["Site Owner"] = "Majitel webu";
11 $a->strings["Email Address"] = "E-mailová adresa";
12 $a->strings["Postal Address"] = "Poštovní adresa";
13 $a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Doplněk Impressum musí být nakonfigurován!<br />Prosím, přidejte alespoň proměnnou <tt>owner</tt> do konfiguračního souboru. Pro nastavení ostatních proměnných se seznamte s nápovědou v souboru README tohoto doplňku.";
14 $a->strings["Settings updated."] = "Nastavení aktualizována.";
15 $a->strings["Submit"] = "Odeslat";
16 $a->strings["The page operators name."] = "Jméno operátora stránky.";
17 $a->strings["Site Owners Profile"] = "Profil majitele webu";
18 $a->strings["Profile address of the operator."] = "Profilová adresa operátora.";
19 $a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Jak kontaktovat operátora prostřednictvím klasické pošty. Zde můžete použít BBCode.";
20 $a->strings["Notes"] = "Poznámky";
21 $a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Další poznámky, které jsou zobrazeny pod kontaktními informacemi. Zde můžete použít BBCode.";
22 $a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Jak konktaktovat operátora přes mail. (bude zobrazeno \"obfuskovaně\")";
23 $a->strings["Footer note"] = "Poznámka v zápatí";
24 $a->strings["Text for the footer. You can use BBCode here."] = "Text pro zápatí. Zde můžete použít BBCode.";