2020-08-18 16:27:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_en_us")) {
|
|
|
|
function string_plural_select_en_us($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 17:47:38 +00:00
|
|
|
return intval($n != 1);
|
2020-08-18 16:27:34 +00:00
|
|
|
}}
|
2021-10-10 06:27:53 +00:00
|
|
|
$a->strings['Post to Diaspora'] = 'Post to Diaspora';
|
|
|
|
$a->strings['Diaspora Export'] = 'Diaspora Export';
|
|
|
|
$a->strings['Save Settings'] = 'Save settings';
|
|
|
|
$a->strings['Enable Diaspora Post Addon'] = 'Enable Diaspora export';
|
|
|
|
$a->strings['Diaspora password'] = 'Diaspora password';
|
|
|
|
$a->strings['Post to Diaspora by default'] = 'Post to Diaspora by default';
|