21 lines
930 B
PHP
21 lines
930 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_nl")) {
|
|
function string_plural_select_nl($n){
|
|
$n = intval($n);
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Remote Permissions Settings"] = "Instellingen voor toegang op afstand";
|
|
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Ontvangers van private berichten toestaan andere ontvangers te bekijken";
|
|
$a->strings["Submit"] = "";
|
|
$a->strings["Remote Permissions settings updated."] = "Toegang op afstand instellingen opgeslagen";
|
|
$a->strings["Visible to:"] = "";
|
|
$a->strings["Visible to"] = "";
|
|
$a->strings["may only be a partial list"] = "";
|
|
$a->strings["Global"] = "";
|
|
$a->strings["The posts of every user on this server show the post recipients"] = "";
|
|
$a->strings["Individual"] = "";
|
|
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
|
|
$a->strings["Settings updated."] = "Instellingen opgeslagen";
|