mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 16:22:54 +00:00
13 lines
384 B
PHP
13 lines
384 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_nl")) {
|
||
|
function string_plural_select_nl($n){
|
||
|
$n = intval($n);
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["Numfriends settings updated."] = "Numfriends instellingen opgeslagen";
|
||
|
$a->strings["Numfriends Settings"] = "Numfriends instellingen";
|
||
|
$a->strings["How many contacts to display on profile sidebar"] = "";
|
||
|
$a->strings["Submit"] = "";
|