forked from friendica/friendica-addons
18 lines
983 B
PHP
18 lines
983 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_en_gb")) {
|
||
|
function string_plural_select_en_gb($n){
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["Post to Diaspora"] = "Post to Diaspora";
|
||
|
$a->strings["Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)"] = "Can't login to your Diaspora account. Please check username and password and ensure you used the complete address (including http...)";
|
||
|
$a->strings["Diaspora Export"] = "Diaspora Export";
|
||
|
$a->strings["Enable Diaspora Post Addon"] = "Enable Diaspora export";
|
||
|
$a->strings["Diaspora username"] = "Diaspora username";
|
||
|
$a->strings["Diaspora password"] = "Diaspora password";
|
||
|
$a->strings["Diaspora site URL"] = "Diaspora site URL";
|
||
|
$a->strings["Post to Diaspora by default"] = "Post to Diaspora by default";
|
||
|
$a->strings["Save Settings"] = "Save settings";
|
||
|
$a->strings["Diaspora post failed. Queued for retry."] = "Diaspora post failed. Queued for retry.";
|