Removed many deprecated addons

This commit is contained in:
Michael 2017-10-19 06:31:48 +00:00
commit 1b7283c72b
247 changed files with 28554 additions and 0 deletions

View file

@ -0,0 +1,61 @@
# ADDON forumlist
# Copyright (C)
# This file is distributed under the same license as the Friendica forumlist addon package.
#
#
# Translators:
# Abrax <webmaster@a-zwenkau.de>, 2014
# bavatar <tobias.diekershoff@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2014-10-15 12:28+0000\n"
"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: forumlist.php:64
msgid "Forums"
msgstr "Foren"
#: forumlist.php:67
msgid "show/hide"
msgstr "anzeigen/verbergen"
#: forumlist.php:81
msgid "No forum subscriptions"
msgstr "Keine Foren-Mitgliedschaften."
#: forumlist.php:98
msgid "Forums:"
msgstr "Foren:"
#: forumlist.php:134
msgid "Forumlist settings updated."
msgstr "Einstellungen zur Foren-Liste aktualisiert."
#: forumlist.php:162
msgid "Forumlist Settings"
msgstr "Foren-Liste Einstellungen"
#: forumlist.php:164
msgid "Randomise forum list"
msgstr "Zufällige Zusammenstellung der Foren-Liste"
#: forumlist.php:167
msgid "Show forums on profile page"
msgstr "Zeige die Liste der Foren auf der Profilseite"
#: forumlist.php:170
msgid "Show forums on network page"
msgstr "Zeige Foren auf der Netzwerk-Seite"
#: forumlist.php:178
msgid "Submit"
msgstr "Senden"

View file

@ -0,0 +1,17 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Forums"] = "Foren";
$a->strings["show/hide"] = "anzeigen/verbergen";
$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
$a->strings["Forums:"] = "Foren:";
$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
$a->strings["Submit"] = "Senden";