13 lines
375 B
PHP
13 lines
375 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_nl")) {
|
|
function string_plural_select_nl($n){
|
|
$n = intval($n);
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Smileybutton settings"] = "Smileybutton instellingen";
|
|
$a->strings["You can hide the button and show the smilies directly."] = "";
|
|
$a->strings["Hide the button"] = "";
|
|
$a->strings["Save Settings"] = "Instellingen opslaan";
|