mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
added CS translation of the notifyall addon THX Aditoo
This commit is contained in:
parent
9da9390896
commit
e31d7d74f8
2 changed files with 74 additions and 0 deletions
17
notifyall/lang/cs/strings.php
Normal file
17
notifyall/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["Send email to all members"] = "Odeslat e-mail všem členům";
|
||||
$a->strings["%s Administrator"] = "%s Administrátor";
|
||||
$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrátor";
|
||||
$a->strings["No recipients found."] = "Nenalezeni žádní příjemci.";
|
||||
$a->strings["Emails sent"] = "E-maily odeslány";
|
||||
$a->strings["Send email to all members of this Friendica instance."] = "Odeslat e-mail všem členům této instance Friendica.";
|
||||
$a->strings["Message subject"] = "Předmět zprávy";
|
||||
$a->strings["Test mode (only send to administrator)"] = "Testovací režim (odeslat pouze administrátorovi)";
|
||||
$a->strings["Submit"] = "Odeslat";
|
Loading…
Add table
Add a link
Reference in a new issue