CS remote permissions addon

This commit is contained in:
Tobias Diekershoff 2018-06-18 11:08:14 +02:00
parent 52e676af8d
commit ae39bd6875
2 changed files with 12 additions and 10 deletions

View file

@ -2,12 +2,13 @@
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
$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["Remote Permissions Settings"] = "Nastavení Vzdálených oprávnění";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Umožnit příjemcům Vašich soukromých příspěvků vidět ostatní příjemce příspěvků";
$a->strings["Save Settings"] = "Uložit Nastavení";
$a->strings["Submit"] = "Odeslat";
$a->strings["Remote Permissions settings updated."] = "Nastavení Vzdálených opravnění aktualizováno.";
$a->strings["Visible to:"] = "Viditelné pro:";
$a->strings["Visible to"] = "Viditelné pro";