forked from friendica/friendica-addons
17 lines
586 B
PHP
17 lines
586 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_nl")) {
|
|
function string_plural_select_nl($n){
|
|
$n = intval($n);
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings[":-)"] = ":-)";
|
|
$a->strings[":-("] = ":-(";
|
|
$a->strings["lol"] = "";
|
|
$a->strings["Quick Comment Settings"] = "Snelle reactie instellingen";
|
|
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
|
|
$a->strings["Enter quick comments, one per line"] = "";
|
|
$a->strings["Submit"] = "";
|
|
$a->strings["Quick Comment settings saved."] = "Snelle Reactie instellingen opgeslagen";
|