updated CS translation of the securemail addon THX Aditoo
[friendica-addons.git/.git] / securemail / 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["\"Secure Mail\" Settings"] = "Nastavení \"Secure Mail\"";
10 $a->strings["Save Settings"] = "Uložit nastavení";
11 $a->strings["Save and send test"] = "Uložit a poslat test";
12 $a->strings["Enable Secure Mail"] = "Povolit Secure Mail";
13 $a->strings["Public key"] = "Veřejný klíč";
14 $a->strings["Your public PGP key, ascii armored format"] = "Váš veřejný klíč PGP ve formátu ASCII Armor";
15 $a->strings["Secure Mail Settings saved."] = "Nastavení Secure Mail uložena.";
16 $a->strings["Test email sent"] = "Testovací e-mail odeslán";
17 $a->strings["There was an error sending the test email"] = "Při odesílání testovacího e-mailu se vyskytla chyba";