mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 17:08:48 +00:00
CS remote permissions addon
This commit is contained in:
parent
52e676af8d
commit
ae39bd6875
2 changed files with 12 additions and 10 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue