15 lines
588 B
PHP
15 lines
588 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_en_gb")) {
|
|
function string_plural_select_en_gb($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Post to Dreamwidth'] = 'Post to Dreamwidth';
|
|
$a->strings['Dreamwidth Post Settings'] = 'Dreamwidth Post Settings';
|
|
$a->strings['Enable dreamwidth Post Addon'] = 'Enable Dreamwidth post addon';
|
|
$a->strings['dreamwidth username'] = 'Dreamwidth username';
|
|
$a->strings['dreamwidth password'] = 'Dreamwidth password';
|
|
$a->strings['Post to dreamwidth by default'] = 'Post to Dreamwidth by default';
|
|
$a->strings['Submit'] = 'Submit';
|