mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 11:03:00 +00:00
18 lines
950 B
PHP
18 lines
950 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
function string_plural_select_de($n){
|
|
return ($n != 1);;
|
|
}}
|
|
;
|
|
$a->strings["Post to Wordpress"] = "Bei WordPress veröffentlichen";
|
|
$a->strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen";
|
|
$a->strings["Enable WordPress Post Plugin"] = "WordPress Plugin aktivieren";
|
|
$a->strings["WordPress username"] = "WordPress-Benutzername";
|
|
$a->strings["WordPress password"] = "WordPress-Passwort";
|
|
$a->strings["WordPress API URL"] = "WordPress-API-URL";
|
|
$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
|
|
$a->strings["Provide a backlink to the Friendica post"] = "Einen zurück zum Friendica-Beitrag hinzufügen";
|
|
$a->strings["Submit"] = "Senden";
|
|
$a->strings["Post from Friendica"] = "Post via Friendica";
|
|
$a->strings["Read the original post and comment stream on Friendica"] = "Den Original-Beitrag samt Kommentaren bei Friendica lesen";
|