12 lines
442 B
PHP
12 lines
442 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_da_dk")) {
|
|
function string_plural_select_da_dk($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Smileybutton settings'] = 'Smileyknap Indstillinger';
|
|
$a->strings['You can hide the button and show the smilies directly.'] = 'Du kan skjule knappen og vise smileyerne direkte.';
|
|
$a->strings['Hide the button'] = 'Skjul knappen';
|
|
$a->strings['Save Settings'] = 'Gem indstillinger';
|