mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
blockbot addon added CS translation THX Aditoo
This commit is contained in:
parent
a16801cf79
commit
22008114e1
2 changed files with 55 additions and 0 deletions
13
blockbot/lang/cs/strings.php
Normal file
13
blockbot/lang/cs/strings.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?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["Save Settings"] = "Uložit nastavení";
|
||||
$a->strings["Allow \"good\" crawlers"] = "Povolit „dobré“ crawlery";
|
||||
$a->strings["Block GabSocial"] = "Zablokovat GabSocial";
|
||||
$a->strings["Training mode"] = "Trénovací režim";
|
||||
$a->strings["Settings updated."] = "Nastavení aktualizována.";
|
Loading…
Add table
Add a link
Reference in a new issue