mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 17:08:48 +00:00
added CS translation of the securemail addon THX Aditoo
This commit is contained in:
parent
51a0593054
commit
f2c0e39ee0
2 changed files with 72 additions and 0 deletions
17
securemail/lang/cs/strings.php
Normal file
17
securemail/lang/cs/strings.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
$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["\"Secure Mail\" Settings"] = "Nastavení \"Secure Mail\"";
|
||||
$a->strings["Save Settings"] = "Uložit nastavení";
|
||||
$a->strings["Save and send test"] = "";
|
||||
$a->strings["Enable Secure Mail"] = "";
|
||||
$a->strings["Public key"] = "";
|
||||
$a->strings["Your public PGP key, ascii armored format"] = "";
|
||||
$a->strings["Secure Mail Settings saved."] = "";
|
||||
$a->strings["Test email sent"] = "";
|
||||
$a->strings["There was an error sending the test email"] = "";
|
Loading…
Add table
Add a link
Reference in a new issue