]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #3787 from rabuzarus/20171013_-_format_event_in_stream
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 16 Oct 2017 09:29:43 +0000 (11:29 +0200)
committerGitHub <noreply@github.com>
Mon, 16 Oct 2017 09:29:43 +0000 (11:29 +0200)
 event items are now more themeable in the networkstream

12 files changed:
CHANGELOG
include/Contact.php
include/diaspora.php
include/follow.php
include/network.php
include/ostatus.php
mod/contacts.php
mod/ostatus_subscribe.php
src/ParseUrl.php
view/lang/de/messages.po
view/lang/de/strings.php
view/theme/frio/css/style.css

index 66766c5502499854d0989a6be2d450a8109d918a..e9b5cae857b7992aabc9facae617f4dc20a700b9 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,29 @@
+Version 3.5.4 (2017-10-16)
+  Friendica Core:
+    Updates to the translations (DE) [translation teams]
+    Updates to the docs [tobiasd, annando]
+    Code refactoring [annando]
+    Fixing some problems with moving accounts to new nodes [annando]
+    Fixing the admin account in the Vagrant box [tobiasd]
+    Fixing a bug in the search functionality [annando]
+    Improvements to SQL queries [annando]
+    Improvements to the themes (frio) [annando]
+    Improvements to the import of RSS feeds [annando]
+    Improvements to the OStatus (GNU Social) compatibility [annando]
+    Added possibility to block contacts for a node [annando]
+    Added sending out the migration signal to Diaspora contacts [annando]
+    Added processing of Diaspora account migration signal [annando]
+    Added new fields to the generated data for displaying events [annando]
+    Update vier theme with new support forum URL [AlfredSK]
+    Update the DB handling for support of PHP 7.1 [annando]
+
+  Friendica Addons:
+    dav: Update the database handling [annando]
+    newmemberwidget: Update support forum URL [AlfredSK]
+
+  Closed Issues:
+    3711, 3714
+
 Version 3.5.3 (2017-10-05)
   Friendica Core:
     Updates to the translations (DE, EN-GB, EN-US, ES, ZH-CN) [translation teams]
index 8b575bf122bfba5f8c8cc887e01eeeca65600823..88f588e2f6e4271b898e5111d34d30763953baab 100644 (file)
@@ -155,7 +155,7 @@ function mark_for_death($contact) {
 
 function unmark_for_death($contact) {
 
-       $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` > '%s'",
+       $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND (`term-date` > '%s' OR `archive`)",
                intval($contact['id']),
                dbesc('1000-00-00 00:00:00')
        );
@@ -166,16 +166,11 @@ function unmark_for_death($contact) {
        }
 
        // It's a miracle. Our dead contact has inexplicably come back to life.
-       q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
-               dbesc(NULL_DATE),
-               intval($contact['id'])
-       );
+       $fields = array('term-date' => NULL_DATE, 'archive' => false);
+       dba::update('contact', $fields, array('id' => $contact['id']));
 
        if ($contact['url'] != '') {
-               q("UPDATE `contact` SET `term-date` = '%s' WHERE `nurl` = '%s'",
-                       dbesc(NULL_DATE),
-                       dbesc(normalise_link($contact['url']))
-               );
+               dba::update('contact', $fields, array('nurl' => normalise_link($contact['url'])));
        }
 }
 
index 2e165a05b5d43038767a3493ab9e27668d3c7635..af014c47fe1cd71a0d083892974200faf9c33210 100644 (file)
@@ -12,6 +12,7 @@ use Friendica\App;
 use Friendica\Core\System;
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
+use Friendica\Network\Probe;
 
 require_once 'include/items.php';
 require_once 'include/bb2diaspora.php';
@@ -498,6 +499,9 @@ class Diaspora {
                logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
 
                switch ($type) {
+                       case "account_migration":
+                               return self::receiveAccountMigration($importer, $fields);
+
                        case "account_deletion":
                                return self::receive_account_deletion($importer, $fields);
 
@@ -1318,6 +1322,91 @@ class Diaspora {
                }
        }
 
+       /**
+        * @brief Receives account migration
+        *
+        * @param array $importer Array of the importer user
+        * @param object $data The message object
+        *
+        * @return bool Success
+        */
+       private static function receiveAccountMigration($importer, $data) {
+               $old_handle = notags(unxmlify($data->author));
+               $new_handle = notags(unxmlify($data->profile->author));
+               $signature = notags(unxmlify($data->signature));
+
+               $contact = self::contact_by_handle($importer["uid"], $old_handle);
+               if (!$contact) {
+                       logger("cannot find contact for sender: ".$old_handle." and user ".$importer["uid"]);
+                       return false;
+               }
+
+               logger("Got migration for ".$old_handle.", to ".$new_handle." with user ".$importer["uid"]);
+
+               // Check signature
+               $signed_text = 'AccountMigration:'.$old_handle.':'.$new_handle;
+               $key = self::key($old_handle);
+               if (!rsa_verify($signed_text, $signature, $key, "sha256")) {
+                       logger('No valid signature for migration.');
+                       return false;
+               }
+
+               // Update the profile
+               self::receive_profile($importer, $data->profile);
+
+               // change the technical stuff in contact and gcontact
+               $data = Probe::uri($new_handle);
+               if ($data['network'] == NETWORK_PHANTOM) {
+                       logger('Account for '.$new_handle." couldn't be probed.");
+                       return false;
+               }
+
+               $fields = array('url' => $data['url'], 'nurl' => normalise_link($data['url']),
+                               'name' => $data['name'], 'nick' => $data['nick'],
+                               'addr' => $data['addr'], 'batch' => $data['batch'],
+                               'notify' => $data['notify'], 'poll' => $data['poll'],
+                               'network' => $data['network']);
+
+               dba::update('contact', $fields, array('addr' => $old_handle));
+
+               $fields = array('url' => $data['url'], 'nurl' => normalise_link($data['url']),
+                               'name' => $data['name'], 'nick' => $data['nick'],
+                               'addr' => $data['addr'], 'connect' => $data['addr'],
+                               'notify' => $data['notify'], 'photo' => $data['photo'],
+                               'server_url' => $data['baseurl'], 'network' => $data['network']);
+
+               dba::update('gcontact', $fields, array('addr' => $old_handle));
+
+               logger('Contacts are updated.');
+
+               // update items
+               /// @todo This is an extreme performance killer
+               $fields = array(
+                       'owner-link' => array($contact["url"], $data["url"]),
+                       'author-link' => array($contact["url"], $data["url"]),
+               );
+               foreach ($fields as $n=>$f) {
+                       $r = q("SELECT `id` FROM `item` WHERE `%s` = '%s' AND `uid` = %d LIMIT 1",
+                                       $n, dbesc($f[0]),
+                                       intval($importer["uid"]));
+
+                       if (dbm::is_result($r)) {
+                               $x = q("UPDATE `item` SET `%s` = '%s' WHERE `%s` = '%s' AND `uid` = %d",
+                                               $n, dbesc($f[1]),
+                                               $n, dbesc($f[0]),
+                                               intval($importer["uid"]));
+
+                               if ($x === false) {
+                                       return false;
+                               }
+                       }
+               }
+
+               logger('Items are updated.');
+
+               return true;
+       }
+
        /**
         * @brief Processes an account deletion
         *
index cac713b12f93def8d69703b58305e54cf23ce721..c5214fe4612ae22bb24e16338e8726af035c5aa2 100644 (file)
@@ -2,6 +2,7 @@
 
 use Friendica\App;
 use Friendica\Core\System;
+use Friendica\Network\Probe;
 
 require_once 'include/probe.php';
 require_once 'include/socgraph.php';
@@ -71,7 +72,7 @@ function update_contact($id) {
 
 
 
-function new_contact($uid,$url,$interactive = false) {
+function new_contact($uid, $url, $interactive = false, $network = '') {
 
        $result = array('cid' => -1, 'success' => false,'message' => '');
 
@@ -102,9 +103,13 @@ function new_contact($uid,$url,$interactive = false) {
 
        if (x($arr['contact'],'name')) {
                $ret = $arr['contact'];
+       } else {
+               $ret = Probe::uri($url, $network, $uid, false);
        }
-       else {
-               $ret = probe_url($url);
+
+       if (($network != '') && ($ret['network'] != $network)) {
+               logger('Expected network '.$network.' does not match actual network '.$ret['network']);
+               return result;
        }
 
        if ($ret['network'] === NETWORK_DFRN) {
index 11a0fffbe671a827c3e524e10ed0bc7b76def26c..c705d4e78cc3c792cfa52a7bd0a7978c8a975049 100644 (file)
@@ -65,7 +65,7 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
  *    string 'body' => fetched content
  */
 function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array()) {
-       $ret = array('return_code' => 0, 'success' => false, 'header' => '', 'body' => '');
+       $ret = array('return_code' => 0, 'success' => false, 'header' => '', 'info' => '', 'body' => '');
 
        $stamp1 = microtime(true);
 
@@ -164,6 +164,15 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array()) {
        // if it throws any errors.
 
        $s = @curl_exec($ch);
+       $curl_info = @curl_getinfo($ch);
+
+       // Special treatment for HTTP Code 416
+       // See https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/416
+       if (($curl_info['http_code'] == 416) && ($range > 0)) {
+               @curl_setopt($ch, CURLOPT_RANGE, '');
+               $s = @curl_exec($ch);
+               $curl_info = @curl_getinfo($ch);
+       }
 
        if (curl_errno($ch) !== CURLE_OK) {
                logger('fetch_url error fetching ' . $url . ': ' . curl_error($ch), LOGGER_NORMAL);
@@ -172,9 +181,10 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array()) {
        $ret['errno'] = curl_errno($ch);
 
        $base = $s;
-       $curl_info = @curl_getinfo($ch);
+       $ret['info'] = $curl_info;
 
        $http_code = $curl_info['http_code'];
+
        logger('fetch_url ' . $url . ': ' . $http_code . " " . $s, LOGGER_DATA);
        $header = '';
 
index 0e2caa2156d8dc6f32db15dcb2a529630e966afa..78916173e040a99167c8064ef3262ba3a886c75c 100644 (file)
@@ -149,6 +149,9 @@ class ostatus {
                // Only update the contacts if it is an OStatus contact
                if ($r && ($r['id'] > 0) && !$onlyfetch && ($contact["network"] == NETWORK_OSTATUS)) {
 
+                       // This contact is vital, so we awake it from the dead
+                       unmark_for_death($contact);
+
                        // Update contact data
 
                        $current = $contact;
index eae4141bc9fe1b2294430e3211efa3060ca9f114..a129a665d131d67f2e55ab020218e01d2d22e1ef 100644 (file)
@@ -244,7 +244,7 @@ function _contact_update($contact_id) {
                return;
 
        if ($r[0]["network"] == NETWORK_OSTATUS) {
-               $result = new_contact($uid, $r[0]["url"], false);
+               $result = new_contact($uid, $r[0]["url"], false, $r[0]["network"]);
 
                if ($result['success'])
                        $r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
index 3250bdc2a2d7cea10df77dc403afd92a0f6ade67..f835f0ed20b38fc17fca23a18c375841c1a868ab 100644 (file)
@@ -66,7 +66,7 @@ function ostatus_subscribe_content(App $a) {
 
        $data = probe_url($url);
        if ($data["network"] == NETWORK_OSTATUS) {
-               $result = new_contact($uid,$url,true);
+               $result = new_contact($uid, $url, true, NETWORK_OSTATUS);
                if ($result["success"]) {
                        $o .= " - ".t("success");
                } else {
index 1674d5691459efde1a0df655dffc91d85f61b5ea..81c5671c90c5cac48bdb8c54187604c996b561aa 100644 (file)
@@ -139,53 +139,24 @@ class ParseUrl {
                $siteinfo["url"] = $url;
                $siteinfo["type"] = "link";
 
-               $check_cert = Config::get("system", "verifyssl");
-
-               $stamp1 = microtime(true);
-
-               $ch = curl_init();
-               curl_setopt($ch, CURLOPT_URL, $url);
-               curl_setopt($ch, CURLOPT_HEADER, 1);
-               curl_setopt($ch, CURLOPT_TIMEOUT, 10);
-               curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
-               curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
-               curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
-               if ($check_cert) {
-                       @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
-               }
-
-               $range = intval(Config::get('system', 'curl_range_bytes', 0));
-
-               if ($range > 0) {
-                       curl_setopt($ch, CURLOPT_RANGE, '0-' . $range);
-               }
-
-               $header = curl_exec($ch);
-               $curl_info = @curl_getinfo($ch);
-               curl_close($ch);
-
-               $a->save_timestamp($stamp1, "network");
-
-               if ((($curl_info["http_code"] == "301") || ($curl_info["http_code"] == "302") || ($curl_info["http_code"] == "303") || ($curl_info["http_code"] == "307"))
-                       && (($curl_info["redirect_url"] != "") || ($curl_info["location"] != ""))) {
-                       if ($curl_info["redirect_url"] != "") {
-                               $siteinfo = self::getSiteinfo($curl_info["redirect_url"], $no_guessing, $do_oembed, ++$count);
-                       } else {
-                               $siteinfo = self::getSiteinfo($curl_info["location"], $no_guessing, $do_oembed, ++$count);
-                       }
+               $data = z_fetch_url($url);
+               if (!$data['success']) {
                        return($siteinfo);
                }
 
                // If the file is too large then exit
-               if ($curl_info["download_content_length"] > 1000000) {
+               if ($data["info"]["download_content_length"] > 1000000) {
                        return($siteinfo);
                }
 
                // If it isn't a HTML file then exit
-               if (($curl_info["content_type"] != "") && !strstr(strtolower($curl_info["content_type"]), "html")) {
+               if (($data["info"]["content_type"] != "") && !strstr(strtolower($data["info"]["content_type"]), "html")) {
                        return($siteinfo);
                }
 
+               $header = $data["header"];
+               $body = $data["body"];
+
                if ($do_oembed) {
 
                        $oembed_data = oembed_fetch_url($url);
@@ -217,14 +188,6 @@ class ParseUrl {
                        $charset = "utf-8";
                }
 
-               $pos = strpos($header, "\r\n\r\n");
-
-               if ($pos) {
-                       $body = trim(substr($header, $pos));
-               } else {
-                       $body = $header;
-               }
-
                if (($charset != "") && (strtoupper($charset) != "UTF-8")) {
                        logger("parseurl_getsiteinfo: detected charset ".$charset, LOGGER_DEBUG);
                        //$body = mb_convert_encoding($body, "UTF-8", $charset);
index bf813518db886fd679d04405d5828af2e8c2fa2f..1e5e74891c0197b0fe9a32920fa3881e2f9a7336 100644 (file)
@@ -36,8 +36,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-10-01 08:52+0200\n"
-"PO-Revision-Date: 2017-10-03 04:26+0000\n"
+"POT-Creation-Date: 2017-10-13 07:26+0200\n"
+"PO-Revision-Date: 2017-10-13 15:20+0000\n"
 "Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -577,7 +577,7 @@ msgstr "Ist mir nicht wichtig"
 msgid "Ask me"
 msgstr "Frag mich"
 
-#: include/dba_pdo.php:75 include/dba.php:56
+#: include/dba_pdo.php:75 include/dba.php:57
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
@@ -648,19 +648,19 @@ msgstr "OK, wahrscheinlich harmlos"
 msgid "Reputable, has my trust"
 msgstr "Seriös, hat mein Vertrauen"
 
-#: include/contact_selectors.php:56 mod/admin.php:1079
+#: include/contact_selectors.php:56 mod/admin.php:1083
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: include/contact_selectors.php:57 mod/admin.php:1080
+#: include/contact_selectors.php:57 mod/admin.php:1084
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: include/contact_selectors.php:58 mod/admin.php:1081
+#: include/contact_selectors.php:58 mod/admin.php:1085
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: include/contact_selectors.php:59 mod/admin.php:1082
+#: include/contact_selectors.php:59 mod/admin.php:1086
 msgid "Daily"
 msgstr "Täglich"
 
@@ -685,7 +685,7 @@ msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1632
+#: mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1619 mod/admin.php:1637
 msgid "Email"
 msgstr "E-Mail"
 
@@ -789,7 +789,7 @@ msgstr "Kontakte in keiner Gruppe"
 msgid "add"
 msgstr "hinzufügen"
 
-#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1104
+#: include/ForumManager.php:119 include/nav.php:134 include/text.php:1100
 #: view/theme/vier/theme.php:249
 msgid "Forums"
 msgstr "Foren"
@@ -799,7 +799,7 @@ msgid "External link to forum"
 msgstr "Externer Link zum Forum"
 
 #: include/ForumManager.php:124 include/contact_widgets.php:272
-#: include/items.php:2407 mod/content.php:626 object/Item.php:417
+#: include/items.php:2417 mod/content.php:626 object/Item.php:417
 #: view/theme/vier/theme.php:254 src/App.php:524
 msgid "show more"
 msgstr "mehr anzeigen"
@@ -813,8 +813,8 @@ msgstr "System"
 msgid "Network"
 msgstr "Netzwerk"
 
-#: include/NotificationsManager.php:171 mod/network.php:911
-#: mod/profiles.php:694
+#: include/NotificationsManager.php:171 mod/profiles.php:694
+#: mod/network.php:912
 msgid "Personal"
 msgstr "Persönlich"
 
@@ -912,8 +912,8 @@ msgid "Finishes:"
 msgstr "Endet:"
 
 #: include/bb2diaspora.php:257 include/event.php:44 include/event.php:70
-#: include/event.php:462 include/identity.php:339 mod/directory.php:135
-#: mod/events.php:497 mod/notifications.php:247 mod/contacts.php:657
+#: include/event.php:462 include/identity.php:339 mod/events.php:497
+#: mod/notifications.php:247 mod/contacts.php:657 mod/directory.php:133
 msgid "Location:"
 msgstr "Ort:"
 
@@ -985,7 +985,7 @@ msgstr "Verbinden/Folgen"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: include/contact_widgets.php:41 mod/directory.php:202 mod/contacts.php:827
+#: include/contact_widgets.php:41 mod/contacts.php:827 mod/directory.php:200
 msgid "Find"
 msgstr "Finde"
 
@@ -1034,7 +1034,7 @@ msgstr[0] "%d gemeinsamer Kontakt"
 msgstr[1] "%d gemeinsame Kontakte"
 
 #: include/conversation.php:135 include/conversation.php:287
-#: include/like.php:184 include/text.php:1885
+#: include/like.php:184 include/text.php:1881
 msgid "event"
 msgstr "Event"
 
@@ -1046,7 +1046,7 @@ msgid "status"
 msgstr "Status"
 
 #: include/conversation.php:143 include/conversation.php:295
-#: include/like.php:182 include/text.php:1887 mod/subthread.php:90
+#: include/like.php:182 include/text.php:1883 mod/subthread.php:90
 #: mod/tagger.php:64
 msgid "photo"
 msgstr "Foto"
@@ -1136,7 +1136,7 @@ msgid "Select"
 msgstr "Auswählen"
 
 #: include/conversation.php:754 mod/content.php:456 mod/content.php:762
-#: mod/photos.php:1732 mod/settings.php:741 mod/admin.php:1606
+#: mod/photos.php:1732 mod/settings.php:741 mod/admin.php:1611
 #: mod/contacts.php:837 mod/contacts.php:1036 object/Item.php:148
 msgid "Delete"
 msgstr "Löschen"
@@ -1190,8 +1190,8 @@ msgstr "Pinnwand anschauen"
 
 #: include/conversation.php:1013 include/conversation.php:1029
 #: include/Contact.php:401 include/Contact.php:414 include/Contact.php:459
-#: mod/allfriends.php:71 mod/directory.php:153 mod/dirfind.php:212
-#: mod/match.php:77 mod/suggest.php:82
+#: mod/allfriends.php:71 mod/dirfind.php:212 mod/match.php:77
+#: mod/suggest.php:82 mod/directory.php:151
 msgid "View Profile"
 msgstr "Profil anschauen"
 
@@ -1422,7 +1422,7 @@ msgstr "Öffentlicher Beitrag"
 msgid "Preview"
 msgstr "Vorschau"
 
-#: include/conversation.php:1326 include/items.php:2148
+#: include/conversation.php:1326 include/items.php:2158
 #: mod/dfrn_request.php:895 mod/editpost.php:141 mod/follow.php:161
 #: mod/message.php:210 mod/tagrm.php:14 mod/tagrm.php:99 mod/videos.php:135
 #: mod/photos.php:248 mod/photos.php:340 mod/settings.php:679
@@ -1473,48 +1473,6 @@ msgid_plural "Not Attending"
 msgstr[0] "Nicht teilnehmend "
 msgstr[1] "Nicht teilnehmend"
 
-#: include/dbstructure.php:26
-msgid "There are no tables on MyISAM."
-msgstr "Es gibt keine MyISAM Tabellen."
-
-#: include/dbstructure.php:67
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
-
-#: include/dbstructure.php:72
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
-
-#: include/dbstructure.php:197
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
-
-#: include/dbstructure.php:200
-msgid "Errors encountered performing database changes: "
-msgstr "Fehler beim Ändern der Datenbank aufgetreten"
-
-#: include/dbstructure.php:208
-msgid ": Database update"
-msgstr ": Datenbank Update"
-
-#: include/dbstructure.php:440
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualisiere Tabelle %s"
-
 #: include/delivery.php:429
 msgid "(no subject)"
 msgstr "(kein Betreff)"
@@ -1848,31 +1806,31 @@ msgstr "Fr"
 msgid "Sat"
 msgstr "Sa"
 
-#: include/event.php:419 include/text.php:1207 mod/settings.php:978
+#: include/event.php:419 include/text.php:1203 mod/settings.php:978
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: include/event.php:420 include/text.php:1207 mod/settings.php:978
+#: include/event.php:420 include/text.php:1203 mod/settings.php:978
 msgid "Monday"
 msgstr "Montag"
 
-#: include/event.php:421 include/text.php:1207
+#: include/event.php:421 include/text.php:1203
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: include/event.php:422 include/text.php:1207
+#: include/event.php:422 include/text.php:1203
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: include/event.php:423 include/text.php:1207
+#: include/event.php:423 include/text.php:1203
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: include/event.php:424 include/text.php:1207
+#: include/event.php:424 include/text.php:1203
 msgid "Friday"
 msgstr "Freitag"
 
-#: include/event.php:425 include/text.php:1207
+#: include/event.php:425 include/text.php:1203
 msgid "Saturday"
 msgstr "Samstag"
 
@@ -1892,7 +1850,7 @@ msgstr "März"
 msgid "Apr"
 msgstr "Apr"
 
-#: include/event.php:431 include/event.php:444 include/text.php:1211
+#: include/event.php:431 include/event.php:444 include/text.php:1207
 msgid "May"
 msgstr "Mai"
 
@@ -1924,47 +1882,47 @@ msgstr "Nov"
 msgid "Dec"
 msgstr "Dez"
 
-#: include/event.php:440 include/text.php:1211
+#: include/event.php:440 include/text.php:1207
 msgid "January"
 msgstr "Januar"
 
-#: include/event.php:441 include/text.php:1211
+#: include/event.php:441 include/text.php:1207
 msgid "February"
 msgstr "Februar"
 
-#: include/event.php:442 include/text.php:1211
+#: include/event.php:442 include/text.php:1207
 msgid "March"
 msgstr "März"
 
-#: include/event.php:443 include/text.php:1211
+#: include/event.php:443 include/text.php:1207
 msgid "April"
 msgstr "April"
 
-#: include/event.php:445 include/text.php:1211
+#: include/event.php:445 include/text.php:1207
 msgid "June"
 msgstr "Juni"
 
-#: include/event.php:446 include/text.php:1211
+#: include/event.php:446 include/text.php:1207
 msgid "July"
 msgstr "Juli"
 
-#: include/event.php:447 include/text.php:1211
+#: include/event.php:447 include/text.php:1207
 msgid "August"
 msgstr "August"
 
-#: include/event.php:448 include/text.php:1211
+#: include/event.php:448 include/text.php:1207
 msgid "September"
 msgstr "September"
 
-#: include/event.php:449 include/text.php:1211
+#: include/event.php:449 include/text.php:1207
 msgid "October"
 msgstr "Oktober"
 
-#: include/event.php:450 include/text.php:1211
+#: include/event.php:450 include/text.php:1207
 msgid "November"
 msgstr "November"
 
-#: include/event.php:451 include/text.php:1211
+#: include/event.php:451 include/text.php:1207
 msgid "December"
 msgstr "Dezember"
 
@@ -1988,7 +1946,7 @@ msgstr "Veranstaltung bearbeiten"
 msgid "Delete event"
 msgstr "Veranstaltung löschen"
 
-#: include/event.php:620 include/text.php:1609 include/text.php:1616
+#: include/event.php:620 include/text.php:1605 include/text.php:1612
 msgid "link to source"
 msgstr "Link zum Originalbeitrag"
 
@@ -2048,21 +2006,21 @@ msgstr "sichtbar für jeden"
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: include/identity.php:341 include/identity.php:642 mod/directory.php:137
-#: mod/notifications.php:253
+#: include/identity.php:341 include/identity.php:642 mod/notifications.php:253
+#: mod/directory.php:135
 msgid "Gender:"
 msgstr "Geschlecht:"
 
-#: include/identity.php:344 include/identity.php:665 mod/directory.php:139
+#: include/identity.php:344 include/identity.php:665 mod/directory.php:137
 msgid "Status:"
 msgstr "Status:"
 
-#: include/identity.php:346 include/identity.php:682 mod/directory.php:141
+#: include/identity.php:346 include/identity.php:682 mod/directory.php:139
 msgid "Homepage:"
 msgstr "Homepage:"
 
-#: include/identity.php:348 include/identity.php:702 mod/directory.php:143
-#: mod/notifications.php:249 mod/contacts.php:661
+#: include/identity.php:348 include/identity.php:702 mod/notifications.php:249
+#: mod/contacts.php:661 mod/directory.php:141
 msgid "About:"
 msgstr "Über:"
 
@@ -2206,7 +2164,7 @@ msgstr "Foren:"
 msgid "Basic"
 msgstr "Allgemein"
 
-#: include/identity.php:761 mod/events.php:511 mod/admin.php:1158
+#: include/identity.php:761 mod/events.php:511 mod/admin.php:1163
 #: mod/contacts.php:899
 msgid "Advanced"
 msgstr "Erweitert"
@@ -2259,7 +2217,7 @@ msgid "Only You Can See This"
 msgstr "Nur Du kannst das sehen"
 
 #: include/identity.php:853 include/identity.php:856 include/nav.php:131
-#: include/nav.php:195 include/text.php:1101 mod/viewcontacts.php:124
+#: include/nav.php:195 include/text.php:1097 mod/viewcontacts.php:124
 #: mod/contacts.php:821 mod/contacts.php:882 view/theme/frio/theme.php:264
 msgid "Contacts"
 msgstr "Kontakte"
@@ -2279,863 +2237,905 @@ msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 msgid "%1$s may attend %2$s's %3$s"
 msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/nav.php:38 mod/navigation.php:22
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
-
-#: include/nav.php:42 mod/navigation.php:26
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
-
-#: include/nav.php:43 include/text.php:1094
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
-
-#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:869
-msgid "Logout"
-msgstr "Abmelden"
-
-#: include/nav.php:81 view/theme/frio/theme.php:250
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
-
-#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/oembed.php:254
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/nav.php:85 view/theme/frio/theme.php:254
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/oembed.php:262
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/nav.php:86 view/theme/frio/theme.php:255
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/plugin.php:519 include/plugin.php:521
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: include/nav.php:87 view/theme/frio/theme.php:256
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/plugin.php:528
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: include/nav.php:88 view/theme/frio/theme.php:257
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: include/plugin.php:533
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: include/nav.php:89
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/security.php:64
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/nav.php:89
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/security.php:65
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:870
-msgid "Login"
-msgstr "Anmeldung"
+#: include/security.php:67
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/nav.php:98
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/security.php:424
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/nav.php:108
-msgid "Home Page"
-msgstr "Homepage"
+#: include/user.php:41 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: include/nav.php:112 mod/register.php:293 boot.php:846
-msgid "Register"
-msgstr "Registrieren"
+#: include/user.php:50
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: include/nav.php:112
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/user.php:55
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
-msgid "Help"
-msgstr "Hilfe"
+#: include/user.php:63
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: include/nav.php:118
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/user.php:84
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: include/nav.php:122
-msgid "Apps"
-msgstr "Apps"
+#: include/user.php:98
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: include/nav.php:122
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/user.php:100
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: include/nav.php:126 include/text.php:1091 mod/search.php:145
-msgid "Search"
-msgstr "Suche"
+#: include/user.php:108
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: include/nav.php:126
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/user.php:113
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: include/nav.php:129 include/text.php:1099
-msgid "Full Text"
-msgstr "Volltext"
+#: include/user.php:116
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: include/nav.php:130 include/text.php:1100
-msgid "Tags"
-msgstr "Tags"
+#: include/user.php:129
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: include/nav.php:146 include/nav.php:148 mod/community.php:31
-msgid "Community"
-msgstr "Gemeinschaft"
+#: include/user.php:135
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
 
-#: include/nav.php:146
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/user.php:142 include/user.php:230
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/nav.php:148
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/user.php:152
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/nav.php:155
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/user.php:168
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: include/nav.php:155
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/user.php:216
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/nav.php:157
-msgid "Information"
-msgstr "Information"
+#: include/user.php:239 view/theme/duepuntozero/config.php:47
+msgid "default"
+msgstr "Standard"
 
-#: include/nav.php:157
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/nav.php:161 view/theme/frio/theme.php:260
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/user.php:308 include/user.php:316 include/user.php:324
+#: include/api.php:3717 mod/profile_photo.php:75 mod/profile_photo.php:83
+#: mod/profile_photo.php:91 mod/profile_photo.php:215
+#: mod/profile_photo.php:310 mod/profile_photo.php:320 mod/photos.php:74
+#: mod/photos.php:190 mod/photos.php:777 mod/photos.php:1259
+#: mod/photos.php:1280 mod/photos.php:1866
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: include/nav.php:162
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/user.php:399
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
 
-#: include/nav.php:162
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/user.php:409
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
 
-#: include/nav.php:169
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/user.php:419
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: include/nav.php:172 mod/notifications.php:99
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/user.php:423
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: include/nav.php:173
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/user.php:455 mod/admin.php:1411
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: include/nav.php:174 mod/settings.php:903
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/Photo.php:1008 include/Photo.php:1024 include/Photo.php:1032
+#: include/Photo.php:1057 include/message.php:138 mod/item.php:469
+#: mod/wall_upload.php:250
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: include/nav.php:174
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/message.php:15 include/message.php:161
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
-msgid "Messages"
+#: include/photos.php:57 include/photos.php:66 mod/photos.php:190
+#: mod/photos.php:1126 mod/photos.php:1259 mod/photos.php:1280
+#: mod/photos.php:1842 mod/photos.php:1856 mod/fbrowser.php:43
+#: mod/fbrowser.php:65
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
+
+#: include/Contact.php:463
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
+
+#: include/Contact.php:888
+msgid "Organisation"
+msgstr "Organisation"
+
+#: include/Contact.php:891
+msgid "News"
 msgstr "Nachrichten"
 
-#: include/nav.php:178 view/theme/frio/theme.php:262
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/Contact.php:894
+msgid "Forum"
+msgstr "Forum"
 
-#: include/nav.php:179
-msgid "Inbox"
-msgstr "Eingang"
+#: include/api.php:1103
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/nav.php:180
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/api.php:1124
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/nav.php:181 mod/message.php:19
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/api.php:1145
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: include/nav.php:184
-msgid "Manage"
-msgstr "Verwalten"
+#: include/dbstructure.php:24
+msgid "There are no tables on MyISAM."
+msgstr "Es gibt keine MyISAM Tabellen."
 
-#: include/nav.php:184
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/dbstructure.php:65
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
 
-#: include/nav.php:187 mod/settings.php:84
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/dbstructure.php:70
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: include/nav.php:187 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/dbstructure.php:194
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
 
-#: include/nav.php:189 mod/newmember.php:15 mod/settings.php:114
-#: mod/admin.php:1716 mod/admin.php:1992 view/theme/frio/theme.php:263
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/dbstructure.php:197
+msgid "Errors encountered performing database changes: "
+msgstr "Fehler beim Ändern der Datenbank aufgetreten"
 
-#: include/nav.php:189 view/theme/frio/theme.php:263
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/dbstructure.php:205
+msgid ": Database update"
+msgstr ": Datenbank Update"
 
-#: include/nav.php:192
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/dbstructure.php:437
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualisiere Tabelle %s"
 
-#: include/nav.php:195 view/theme/frio/theme.php:264
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/dfrn.php:1331
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: include/nav.php:200 mod/admin.php:203
-msgid "Admin"
-msgstr "Administration"
+#: include/diaspora.php:2259
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/nav.php:200
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/diaspora.php:3226
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: include/nav.php:203
-msgid "Navigation"
-msgstr "Navigation"
+#: include/follow.php:85 mod/dfrn_request.php:515
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: include/nav.php:203
-msgid "Site map"
-msgstr "Sitemap"
+#: include/follow.php:90 mod/dfrn_request.php:521 mod/admin.php:289
+#: mod/admin.php:307 mod/friendica.php:116
+msgid "Blocked domain"
+msgstr "Blockierte Daimain"
 
-#: include/oembed.php:254
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: include/follow.php:95
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/oembed.php:262
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: include/follow.php:123
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: include/plugin.php:519 include/plugin.php:521
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: include/follow.php:124 include/follow.php:138
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/plugin.php:528
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+#: include/follow.php:136
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/plugin.php:533
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
+#: include/follow.php:141
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/security.php:64
-msgid "Welcome "
-msgstr "Willkommen "
+#: include/follow.php:144
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/security.php:65
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: include/follow.php:147
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: include/security.php:67
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: include/follow.php:148
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: include/security.php:424
+#: include/follow.php:154
 msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: include/text.php:315
-msgid "newer"
-msgstr "neuer"
+#: include/follow.php:159
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: include/text.php:316
-msgid "older"
-msgstr "älter"
+#: include/follow.php:256
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/text.php:321
-msgid "first"
-msgstr "erste"
+#: include/items.php:1734 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: include/text.php:322
-msgid "prev"
-msgstr "vorige"
+#: include/items.php:2110 mod/viewsrc.php:16 mod/notice.php:18
+#: mod/admin.php:257 mod/admin.php:1668 mod/admin.php:1919 mod/display.php:99
+#: mod/display.php:268 mod/display.php:473
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: include/text.php:356
-msgid "next"
-msgstr "nächste"
+#: include/items.php:2153
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: include/text.php:357
-msgid "last"
-msgstr "letzte"
+#: include/items.php:2155 mod/api.php:107 mod/dfrn_request.php:881
+#: mod/follow.php:150 mod/message.php:207 mod/register.php:249
+#: mod/profiles.php:638 mod/profiles.php:641 mod/profiles.php:668
+#: mod/settings.php:1168 mod/settings.php:1174 mod/settings.php:1181
+#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
+#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+#: mod/settings.php:1235 mod/suggest.php:32 mod/contacts.php:465
+msgid "Yes"
+msgstr "Ja"
 
-#: include/text.php:411
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
+#: include/items.php:2294 mod/api.php:28 mod/api.php:33 mod/attach.php:35
+#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
+#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
+#: mod/uimport.php:26 mod/allfriends.php:15 mod/cal.php:302
+#: mod/dfrn_confirm.php:64 mod/dirfind.php:16 mod/editpost.php:13
+#: mod/events.php:189 mod/follow.php:14 mod/follow.php:55 mod/follow.php:118
+#: mod/group.php:21 mod/invite.php:18 mod/invite.php:106 mod/item.php:198
+#: mod/item.php:210 mod/manage.php:104 mod/message.php:49 mod/message.php:172
+#: mod/mood.php:117 mod/notifications.php:74 mod/ostatus_subscribe.php:12
+#: mod/poke.php:156 mod/profile_photo.php:20 mod/profile_photo.php:180
+#: mod/profile_photo.php:191 mod/profile_photo.php:204 mod/register.php:46
+#: mod/regmod.php:107 mod/repair_ostatus.php:12 mod/wall_upload.php:102
+#: mod/wall_upload.php:105 mod/wallmessage.php:12 mod/wallmessage.php:36
+#: mod/wallmessage.php:76 mod/wallmessage.php:100 mod/delegate.php:15
+#: mod/photos.php:169 mod/photos.php:1112 mod/profiles.php:167
+#: mod/profiles.php:605 mod/settings.php:25 mod/settings.php:133
+#: mod/settings.php:665 mod/suggest.php:58 mod/wall_attach.php:69
+#: mod/wall_attach.php:72 mod/contacts.php:373 mod/display.php:470
+#: mod/network.php:17 mod/unfollow.php:14 mod/unfollow.php:57
+#: mod/unfollow.php:90 index.php:413
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: include/text.php:412
-msgid "The end"
-msgstr "Das Ende"
+#: include/items.php:2411
+msgid "Archives"
+msgstr "Archiv"
 
-#: include/text.php:965
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: include/nav.php:38 mod/navigation.php:22
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/text.php:989
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: include/nav.php:42 mod/navigation.php:26
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/text.php:1002
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: include/nav.php:43 include/text.php:1090
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/text.php:1092 mod/filer.php:32 mod/notes.php:64
-#: mod/editpost.php:102
-msgid "Save"
-msgstr "Speichern"
+#: include/nav.php:81 view/theme/frio/theme.php:250 boot.php:874
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/text.php:1153
-msgid "poke"
-msgstr "anstupsen"
+#: include/nav.php:81 view/theme/frio/theme.php:250
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/text.php:1153
-msgid "poked"
-msgstr "stupste"
+#: include/nav.php:84 include/nav.php:164 view/theme/frio/theme.php:253
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/text.php:1154
-msgid "ping"
-msgstr "anpingen"
+#: include/nav.php:85 view/theme/frio/theme.php:254
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/text.php:1154
-msgid "pinged"
-msgstr "pingte"
+#: include/nav.php:86 view/theme/frio/theme.php:255
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/text.php:1155
-msgid "prod"
-msgstr "knuffen"
+#: include/nav.php:87 view/theme/frio/theme.php:256
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/text.php:1155
-msgid "prodded"
-msgstr "knuffte"
+#: include/nav.php:88 view/theme/frio/theme.php:257
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/text.php:1156
-msgid "slap"
-msgstr "ohrfeigen"
+#: include/nav.php:89
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/text.php:1156
-msgid "slapped"
-msgstr "ohrfeigte"
+#: include/nav.php:89
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/text.php:1157
-msgid "finger"
-msgstr "befummeln"
+#: include/nav.php:98 mod/bookmarklet.php:15 boot.php:875
+msgid "Login"
+msgstr "Anmeldung"
 
-#: include/text.php:1157
-msgid "fingered"
-msgstr "befummelte"
+#: include/nav.php:98
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/text.php:1158
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: include/nav.php:108
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/text.php:1158
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: include/nav.php:112 mod/register.php:293 boot.php:851
+msgid "Register"
+msgstr "Registrieren"
 
-#: include/text.php:1172
-msgid "happy"
-msgstr "glücklich"
+#: include/nav.php:112
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
+
+#: include/nav.php:118 mod/help.php:51 view/theme/vier/theme.php:292
+msgid "Help"
+msgstr "Hilfe"
+
+#: include/nav.php:118
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
+
+#: include/nav.php:122
+msgid "Apps"
+msgstr "Apps"
+
+#: include/nav.php:122
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+
+#: include/nav.php:126 include/text.php:1087 mod/search.php:145
+msgid "Search"
+msgstr "Suche"
+
+#: include/nav.php:126
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
+
+#: include/nav.php:129 include/text.php:1095
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/text.php:1173
-msgid "sad"
-msgstr "traurig"
+#: include/nav.php:130 include/text.php:1096
+msgid "Tags"
+msgstr "Tags"
 
-#: include/text.php:1174
-msgid "mellow"
-msgstr "sanft"
+#: include/nav.php:146 include/nav.php:148 mod/community.php:31
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: include/text.php:1175
-msgid "tired"
-msgstr "müde"
+#: include/nav.php:146
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: include/text.php:1176
-msgid "perky"
-msgstr "frech"
+#: include/nav.php:148
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: include/text.php:1177
-msgid "angry"
-msgstr "sauer"
+#: include/nav.php:155
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: include/text.php:1178
-msgid "stupified"
-msgstr "verblüfft"
+#: include/nav.php:155
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: include/text.php:1179
-msgid "puzzled"
-msgstr "verwirrt"
+#: include/nav.php:157
+msgid "Information"
+msgstr "Information"
 
-#: include/text.php:1180
-msgid "interested"
-msgstr "interessiert"
+#: include/nav.php:157
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: include/text.php:1181
-msgid "bitter"
-msgstr "verbittert"
+#: include/nav.php:161 view/theme/frio/theme.php:260
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: include/text.php:1182
-msgid "cheerful"
-msgstr "fröhlich"
+#: include/nav.php:162
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/text.php:1183
-msgid "alive"
-msgstr "lebendig"
+#: include/nav.php:162
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/text.php:1184
-msgid "annoyed"
-msgstr "verärgert"
+#: include/nav.php:169
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/text.php:1185
-msgid "anxious"
-msgstr "unruhig"
+#: include/nav.php:172 mod/notifications.php:99
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: include/text.php:1186
-msgid "cranky"
-msgstr "schrullig"
+#: include/nav.php:173
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/text.php:1187
-msgid "disturbed"
-msgstr "verstört"
+#: include/nav.php:174 mod/settings.php:903
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: include/text.php:1188
-msgid "frustrated"
-msgstr "frustriert"
+#: include/nav.php:174
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/text.php:1189
-msgid "motivated"
-msgstr "motiviert"
+#: include/nav.php:178 mod/message.php:180 view/theme/frio/theme.php:262
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: include/text.php:1190
-msgid "relaxed"
-msgstr "entspannt"
+#: include/nav.php:178 view/theme/frio/theme.php:262
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/text.php:1191
-msgid "surprised"
-msgstr "überrascht"
+#: include/nav.php:179
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/text.php:1408 mod/videos.php:389
-msgid "View Video"
-msgstr "Video ansehen"
+#: include/nav.php:180
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/text.php:1425
-msgid "bytes"
-msgstr "Byte"
+#: include/nav.php:181 mod/message.php:19
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: include/text.php:1460 include/text.php:1471
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: include/nav.php:184
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/text.php:1603
-msgid "View on separate page"
-msgstr "Auf separater Seite ansehen"
+#: include/nav.php:184
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/text.php:1604
-msgid "view on separate page"
-msgstr "auf separater Seite ansehen"
+#: include/nav.php:187 mod/settings.php:84
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: include/text.php:1889
-msgid "activity"
-msgstr "Aktivität"
+#: include/nav.php:187 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/text.php:1891 mod/content.php:625 object/Item.php:416
-#: object/Item.php:428
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: include/nav.php:189 mod/newmember.php:15 mod/settings.php:114
+#: mod/admin.php:1721 mod/admin.php:1997 view/theme/frio/theme.php:263
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/text.php:1894
-msgid "post"
-msgstr "Beitrag"
+#: include/nav.php:189 view/theme/frio/theme.php:263
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/text.php:2060
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: include/nav.php:192
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/uimport.php:84
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: include/nav.php:195 view/theme/frio/theme.php:264
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/uimport.php:90
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: include/nav.php:200 mod/admin.php:203
+msgid "Admin"
+msgstr "Administration"
 
-#: include/uimport.php:107 include/uimport.php:118
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: include/nav.php:200
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/uimport.php:111 include/uimport.php:122
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: include/nav.php:203
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/uimport.php:144
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: include/nav.php:203
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/uimport.php:165
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: include/network.php:704
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: include/uimport.php:214
+#: include/ostatus.php:1710
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: include/uimport.php:280
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: include/ostatus.php:1711
+msgid "following"
+msgstr "folgen"
 
-#: include/user.php:41 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+#: include/ostatus.php:1714
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: include/user.php:50
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: include/ostatus.php:1715
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: include/user.php:55
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: include/text.php:315
+msgid "newer"
+msgstr "neuer"
 
-#: include/user.php:63
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: include/text.php:316
+msgid "older"
+msgstr "älter"
 
-#: include/user.php:84
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: include/text.php:321
+msgid "first"
+msgstr "erste"
 
-#: include/user.php:98
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: include/text.php:322
+msgid "prev"
+msgstr "vorige"
 
-#: include/user.php:100
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: include/text.php:356
+msgid "next"
+msgstr "nächste"
 
-#: include/user.php:108
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+#: include/text.php:357
+msgid "last"
+msgstr "letzte"
 
-#: include/user.php:113
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: include/text.php:411
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: include/user.php:116
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: include/text.php:412
+msgid "The end"
+msgstr "Das Ende"
 
-#: include/user.php:129
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: include/text.php:961
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: include/user.php:135
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
+#: include/text.php:985
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: include/user.php:142 include/user.php:230
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: include/text.php:998
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: include/user.php:152
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: include/text.php:1088 mod/filer.php:32 mod/notes.php:64
+#: mod/editpost.php:102
+msgid "Save"
+msgstr "Speichern"
 
-#: include/user.php:168
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: include/text.php:1149
+msgid "poke"
+msgstr "anstupsen"
 
-#: include/user.php:216
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: include/text.php:1149
+msgid "poked"
+msgstr "stupste"
 
-#: include/user.php:239 view/theme/duepuntozero/config.php:47
-msgid "default"
-msgstr "Standard"
+#: include/text.php:1150
+msgid "ping"
+msgstr "anpingen"
 
-#: include/user.php:249
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: include/text.php:1150
+msgid "pinged"
+msgstr "pingte"
 
-#: include/user.php:308 include/user.php:316 include/user.php:324
-#: include/api.php:3717 mod/profile_photo.php:75 mod/profile_photo.php:83
-#: mod/profile_photo.php:91 mod/profile_photo.php:215
-#: mod/profile_photo.php:310 mod/profile_photo.php:320 mod/photos.php:74
-#: mod/photos.php:190 mod/photos.php:777 mod/photos.php:1259
-#: mod/photos.php:1280 mod/photos.php:1866
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: include/text.php:1151
+msgid "prod"
+msgstr "knuffen"
 
-#: include/user.php:399
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
+#: include/text.php:1151
+msgid "prodded"
+msgstr "knuffte"
 
-#: include/user.php:409
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
+#: include/text.php:1152
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: include/user.php:419
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
+#: include/text.php:1152
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: include/user.php:423
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
+#: include/text.php:1153
+msgid "finger"
+msgstr "befummeln"
 
-#: include/user.php:455 mod/admin.php:1406
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: include/text.php:1153
+msgid "fingered"
+msgstr "befummelte"
 
-#: include/Photo.php:1008 include/Photo.php:1024 include/Photo.php:1032
-#: include/Photo.php:1057 include/message.php:138 mod/item.php:469
-#: mod/wall_upload.php:250
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: include/text.php:1154
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: include/dfrn.php:1331
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
+#: include/text.php:1154
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: include/message.php:15 include/message.php:161
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: include/text.php:1168
+msgid "happy"
+msgstr "glücklich"
 
-#: include/photos.php:57 include/photos.php:66 mod/photos.php:190
-#: mod/photos.php:1126 mod/photos.php:1259 mod/photos.php:1280
-#: mod/photos.php:1842 mod/photos.php:1856 mod/fbrowser.php:43
-#: mod/fbrowser.php:65
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/text.php:1169
+msgid "sad"
+msgstr "traurig"
 
-#: include/Contact.php:463
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/text.php:1170
+msgid "mellow"
+msgstr "sanft"
 
-#: include/Contact.php:841
-msgid "Organisation"
-msgstr "Organisation"
+#: include/text.php:1171
+msgid "tired"
+msgstr "müde"
 
-#: include/Contact.php:844
-msgid "News"
-msgstr "Nachrichten"
+#: include/text.php:1172
+msgid "perky"
+msgstr "frech"
 
-#: include/Contact.php:847
-msgid "Forum"
-msgstr "Forum"
+#: include/text.php:1173
+msgid "angry"
+msgstr "sauer"
 
-#: include/api.php:1103
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1174
+msgid "stupified"
+msgstr "verblüfft"
 
-#: include/api.php:1124
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1175
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: include/api.php:1145
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: include/text.php:1176
+msgid "interested"
+msgstr "interessiert"
 
-#: include/diaspora.php:2259
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: include/text.php:1177
+msgid "bitter"
+msgstr "verbittert"
 
-#: include/diaspora.php:3226
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: include/text.php:1178
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: include/follow.php:85 mod/dfrn_request.php:515
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: include/text.php:1179
+msgid "alive"
+msgstr "lebendig"
 
-#: include/follow.php:90 mod/dfrn_request.php:521 mod/friendica.php:116
-#: mod/admin.php:289 mod/admin.php:307
-msgid "Blocked domain"
-msgstr "Blockierte Daimain"
+#: include/text.php:1180
+msgid "annoyed"
+msgstr "verärgert"
 
-#: include/follow.php:95
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/text.php:1181
+msgid "anxious"
+msgstr "unruhig"
 
-#: include/follow.php:123
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: include/text.php:1182
+msgid "cranky"
+msgstr "schrullig"
 
-#: include/follow.php:124 include/follow.php:138
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/text.php:1183
+msgid "disturbed"
+msgstr "verstört"
 
-#: include/follow.php:136
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/text.php:1184
+msgid "frustrated"
+msgstr "frustriert"
 
-#: include/follow.php:141
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/text.php:1185
+msgid "motivated"
+msgstr "motiviert"
 
-#: include/follow.php:144
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/text.php:1186
+msgid "relaxed"
+msgstr "entspannt"
 
-#: include/follow.php:147
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: include/text.php:1187
+msgid "surprised"
+msgstr "überrascht"
 
-#: include/follow.php:148
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: include/text.php:1404 mod/videos.php:389
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: include/follow.php:154
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: include/text.php:1421
+msgid "bytes"
+msgstr "Byte"
 
-#: include/follow.php:159
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: include/text.php:1456 include/text.php:1467
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: include/follow.php:256
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/text.php:1599
+msgid "View on separate page"
+msgstr "Auf separater Seite ansehen"
 
-#: include/items.php:1724 mod/dfrn_confirm.php:738 mod/dfrn_request.php:760
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: include/text.php:1600
+msgid "view on separate page"
+msgstr "auf separater Seite ansehen"
 
-#: include/items.php:2100 mod/viewsrc.php:16 mod/notice.php:18
-#: mod/display.php:122 mod/display.php:291 mod/display.php:496
-#: mod/admin.php:257 mod/admin.php:1663 mod/admin.php:1914
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: include/text.php:1885
+msgid "activity"
+msgstr "Aktivität"
 
-#: include/items.php:2143
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
+#: include/text.php:1887 mod/content.php:625 object/Item.php:416
+#: object/Item.php:428
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: include/items.php:2145 mod/api.php:107 mod/dfrn_request.php:881
-#: mod/follow.php:150 mod/message.php:207 mod/register.php:249
-#: mod/profiles.php:638 mod/profiles.php:641 mod/profiles.php:668
-#: mod/settings.php:1168 mod/settings.php:1174 mod/settings.php:1181
-#: mod/settings.php:1185 mod/settings.php:1190 mod/settings.php:1195
-#: mod/settings.php:1200 mod/settings.php:1205 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/settings.php:1235 mod/suggest.php:32 mod/contacts.php:465
-msgid "Yes"
-msgstr "Ja"
+#: include/text.php:1890
+msgid "post"
+msgstr "Beitrag"
 
-#: include/items.php:2284 mod/api.php:28 mod/api.php:33 mod/attach.php:35
-#: mod/common.php:20 mod/crepair.php:105 mod/fsuggest.php:80
-#: mod/nogroup.php:29 mod/notes.php:25 mod/viewcontacts.php:49
-#: mod/uimport.php:26 mod/allfriends.php:15 mod/cal.php:302
-#: mod/dfrn_confirm.php:64 mod/dirfind.php:16 mod/editpost.php:13
-#: mod/events.php:189 mod/follow.php:14 mod/follow.php:55 mod/follow.php:118
-#: mod/group.php:21 mod/invite.php:18 mod/invite.php:106 mod/item.php:198
-#: mod/item.php:210 mod/manage.php:104 mod/message.php:49 mod/message.php:172
-#: mod/mood.php:117 mod/network.php:17 mod/notifications.php:74
-#: mod/ostatus_subscribe.php:12 mod/poke.php:156 mod/profile_photo.php:20
-#: mod/profile_photo.php:180 mod/profile_photo.php:191
-#: mod/profile_photo.php:204 mod/register.php:46 mod/regmod.php:107
-#: mod/repair_ostatus.php:12 mod/wall_upload.php:102 mod/wall_upload.php:105
-#: mod/wallmessage.php:12 mod/wallmessage.php:36 mod/wallmessage.php:76
-#: mod/wallmessage.php:100 mod/delegate.php:15 mod/display.php:493
-#: mod/photos.php:169 mod/photos.php:1112 mod/profiles.php:167
-#: mod/profiles.php:605 mod/settings.php:25 mod/settings.php:133
-#: mod/settings.php:665 mod/suggest.php:58 mod/wall_attach.php:69
-#: mod/wall_attach.php:72 mod/contacts.php:373 mod/unfollow.php:14
-#: mod/unfollow.php:57 mod/unfollow.php:90 index.php:411
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: include/text.php:2056
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
 
-#: include/items.php:2401
-msgid "Archives"
-msgstr "Archiv"
+#: include/uimport.php:79
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/network.php:704
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: include/uimport.php:85
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: include/ostatus.php:1690
+#: include/uimport.php:102 include/uimport.php:113
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+
+#: include/uimport.php:106 include/uimport.php:117
 #, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/ostatus.php:1691
-msgid "following"
-msgstr "folgen"
+#: include/uimport.php:143
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+
+#: include/uimport.php:164
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/ostatus.php:1694
+#: include/uimport.php:213
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: include/ostatus.php:1695
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: include/uimport.php:279
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
 #: mod/api.php:78 mod/api.php:104
 msgid "Authorize application connection"
@@ -3165,7 +3165,7 @@ msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontak
 msgid "No"
 msgstr "Nein"
 
-#: mod/apps.php:9 index.php:258
+#: mod/apps.php:9 index.php:260
 msgid "You must be logged in to use addons. "
 msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
@@ -3298,12 +3298,12 @@ msgid "Refetch contact data"
 msgstr "Kontaktdaten neu laden"
 
 #: mod/crepair.php:159 mod/fsuggest.php:109 mod/content.php:730
-#: mod/events.php:509 mod/install.php:245 mod/install.php:285
-#: mod/invite.php:150 mod/localtime.php:47 mod/manage.php:157
-#: mod/message.php:338 mod/message.php:521 mod/mood.php:140 mod/poke.php:205
-#: mod/photos.php:1144 mod/photos.php:1274 mod/photos.php:1600
-#: mod/photos.php:1649 mod/photos.php:1691 mod/photos.php:1771
-#: mod/profiles.php:679 mod/contacts.php:604 object/Item.php:702
+#: mod/events.php:509 mod/invite.php:150 mod/localtime.php:47
+#: mod/manage.php:157 mod/message.php:338 mod/message.php:521 mod/mood.php:140
+#: mod/poke.php:205 mod/photos.php:1144 mod/photos.php:1274
+#: mod/photos.php:1600 mod/photos.php:1649 mod/photos.php:1691
+#: mod/photos.php:1771 mod/profiles.php:679 mod/contacts.php:604
+#: mod/install.php:243 mod/install.php:283 object/Item.php:702
 #: view/theme/duepuntozero/config.php:65 view/theme/frio/config.php:68
 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:114
 msgid "Submit"
@@ -3324,7 +3324,7 @@ msgid ""
 msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
 #: mod/crepair.php:170 mod/settings.php:680 mod/settings.php:706
-#: mod/admin.php:1588 mod/admin.php:1601 mod/admin.php:1614 mod/admin.php:1630
+#: mod/admin.php:1593 mod/admin.php:1606 mod/admin.php:1619 mod/admin.php:1635
 msgid "Name"
 msgstr "Name"
 
@@ -3572,7 +3572,7 @@ msgstr "Kontakt bearbeiten"
 msgid "Contacts who are not members of a group"
 msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/profperm.php:22 mod/group.php:78 index.php:410
+#: mod/profperm.php:22 mod/group.php:78 index.php:412
 msgid "Permission denied"
 msgstr "Zugriff verweigert"
 
@@ -3602,9 +3602,9 @@ msgid "[Embedded content - reload page to view]"
 msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
 #: mod/viewcontacts.php:39 mod/webfinger.php:10 mod/probe.php:9
-#: mod/community.php:17 mod/dfrn_request.php:805 mod/directory.php:33
-#: mod/videos.php:201 mod/display.php:218 mod/photos.php:982 mod/search.php:89
-#: mod/search.php:95
+#: mod/community.php:17 mod/dfrn_request.php:805 mod/videos.php:201
+#: mod/photos.php:982 mod/directory.php:31 mod/display.php:195
+#: mod/search.php:89 mod/search.php:95
 msgid "Public access denied."
 msgstr "Öffentlicher Zugriff verweigert."
 
@@ -3677,7 +3677,7 @@ msgstr "Keine Kontakte zum Anzeigen."
 msgid "The post was created"
 msgstr "Der Beitrag wurde angelegt"
 
-#: mod/cal.php:146 mod/profile.php:157 mod/display.php:348
+#: mod/cal.php:146 mod/profile.php:157 mod/display.php:325
 msgid "Access to this profile has been restricted."
 msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
@@ -3689,7 +3689,7 @@ msgstr "Ansehen"
 msgid "Previous"
 msgstr "Vorherige"
 
-#: mod/cal.php:276 mod/events.php:382 mod/install.php:204
+#: mod/cal.php:276 mod/events.php:382 mod/install.php:202
 msgid "Next"
 msgstr "Nächste"
 
@@ -4133,26 +4133,6 @@ msgstr "Adresse Deines Profils:"
 msgid "Submit Request"
 msgstr "Anfrage abschicken"
 
-#: mod/directory.php:195 view/theme/vier/theme.php:194
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
-
-#: mod/directory.php:197
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
-
-#: mod/directory.php:199
-msgid "Results for:"
-msgstr "Ergebnisse für:"
-
-#: mod/directory.php:201
-msgid "Site Directory"
-msgstr "Verzeichnis"
-
-#: mod/directory.php:208
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
-
 #: mod/dirfind.php:40
 #, php-format
 msgid "People Search - %s"
@@ -4236,7 +4216,7 @@ msgid "Event removed"
 msgstr "Veranstaltung enfternt"
 
 #: mod/fetch.php:16 mod/fetch.php:43 mod/fetch.php:52 mod/help.php:57
-#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:302
+#: mod/p.php:20 mod/p.php:47 mod/p.php:56 index.php:304
 msgid "Not Found"
 msgstr "Nicht gefunden"
 
@@ -4265,50 +4245,6 @@ msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefüg
 msgid "Profile URL"
 msgstr "Profil URL"
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
-
-#: mod/friendica.php:71
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
-
-#: mod/friendica.php:75
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
-
-#: mod/friendica.php:79
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
-
-#: mod/friendica.php:79
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
-
-#: mod/friendica.php:82
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
-
-#: mod/friendica.php:96
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps:"
-
-#: mod/friendica.php:110
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
-
-#: mod/friendica.php:115
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
-
-#: mod/friendica.php:116 mod/admin.php:290 mod/admin.php:308
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
-
 #: mod/group.php:31
 msgid "Group created."
 msgstr "Gruppe erstellt."
@@ -4377,7 +4313,7 @@ msgstr "Kein Profil"
 msgid "Help:"
 msgstr "Hilfe:"
 
-#: mod/help.php:60 index.php:305
+#: mod/help.php:60 index.php:307
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
@@ -4386,4437 +4322,4505 @@ msgstr "Seite nicht gefunden."
 msgid "Welcome to %s"
 msgstr "Willkommen zu %s"
 
-#: mod/install.php:109
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
-
-#: mod/install.php:115
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/invite.php:31
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: mod/install.php:119
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/invite.php:54
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/install.php:125
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/invite.php:79
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/install.php:130
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: mod/invite.php:90
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: mod/install.php:131 mod/install.php:203 mod/install.php:550
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/invite.php:94
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/install.php:143
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/invite.php:98
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: mod/install.php:200
-msgid "System check"
-msgstr "Systemtest"
+#: mod/invite.php:117
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/install.php:205
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/invite.php:125
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: mod/install.php:224
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/invite.php:127
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: mod/install.php:225
+#: mod/invite.php:128
+#, php-format
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
 
-#: mod/install.php:226
+#: mod/invite.php:132
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+
+#: mod/invite.php:135
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
 
-#: mod/install.php:227
+#: mod/invite.php:136
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
 
-#: mod/install.php:231
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/invite.php:142
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: mod/install.php:232
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/invite.php:143
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/install.php:233
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:138
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: mod/install.php:233
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+#: mod/invite.php:145
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: mod/install.php:234
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/invite.php:147
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/install.php:235 mod/install.php:276
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/invite.php:147
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: mod/install.php:235 mod/install.php:276
+#: mod/invite.php:149
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
 
-#: mod/install.php:239 mod/install.php:279
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/item.php:119
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/install.php:266
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/install.php:280
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/item.php:903
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/install.php:280
+#: mod/item.php:994
+#, php-format
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: mod/item.php:996
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/install.php:321
+#: mod/item.php:997
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run the background processing. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/install.php:325
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/item.php:1001
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
+
+#: mod/localtime.php:26
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/install.php:325
+#: mod/localtime.php:28
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: mod/install.php:330
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/localtime.php:32
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/install.php:339
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: mod/localtime.php:35
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/install.php:340
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/localtime.php:38
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/install.php:342
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/localtime.php:43
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/install.php:353
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: mod/lostpass.php:22
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: mod/install.php:354
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/lostpass.php:38
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: mod/install.php:356
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/lostpass.php:44
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
 
-#: mod/install.php:379
+#: mod/lostpass.php:55
+#, php-format
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: mod/install.php:380
+#: mod/lostpass.php:74
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+
+#: mod/lostpass.php:94
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: mod/install.php:382
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/lostpass.php:113 boot.php:889
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/install.php:389
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/lostpass.php:114
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: mod/install.php:390
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/lostpass.php:115
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: mod/install.php:391
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/lostpass.php:116
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
 
-#: mod/install.php:392
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO oder MySQLi PHP Modul"
+#: mod/lostpass.php:117
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
 
-#: mod/install.php:393
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/lostpass.php:118
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
 
-#: mod/install.php:394
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/lostpass.php:128
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
 
-#: mod/install.php:395
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/lostpass.php:134
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+
+#: mod/lostpass.php:150
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
+
+#: mod/lostpass.php:162
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
+
+#: mod/lostpass.php:163
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
-#: mod/install.php:399 mod/install.php:401
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/lostpass.php:164 boot.php:877
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/install.php:399
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: mod/lostpass.php:165
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: mod/install.php:407
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/manage.php:153
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/install.php:411
+#: mod/manage.php:154
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: mod/install.php:415
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/manage.php:155
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/install.php:419
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
+#: mod/match.php:39
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: mod/install.php:423
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
+#: mod/match.php:92
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/install.php:427
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/match.php:106
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/install.php:431
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/message.php:63 mod/wallmessage.php:53
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/install.php:441
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/install.php:453
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/install.php:454
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/install.php:455
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: mod/message.php:76 mod/wallmessage.php:65
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/install.php:456
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
+#: mod/message.php:205
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/install.php:459
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/message.php:225
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/install.php:469
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/install.php:470
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: mod/message.php:322 mod/wallmessage.php:129
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: mod/install.php:471
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
+msgid "To:"
+msgstr "An:"
 
-#: mod/install.php:472
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/install.php:475
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/message.php:364
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/install.php:491
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/install.php:493
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/message.php:478
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/install.php:512
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: mod/install.php:514
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/message.php:505
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
-#: mod/install.php:516
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/install.php:523
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/install.php:548
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/install.php:549
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/invite.php:31
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/invite.php:54
+#: mod/message.php:597
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/invite.php:79
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: mod/mood.php:136
+msgid "Mood"
+msgstr "Stimmung"
 
-#: mod/invite.php:90
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: mod/mood.php:137
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
 
-#: mod/invite.php:94
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: mod/notifications.php:38
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/invite.php:98
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: mod/notifications.php:47 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/invite.php:117
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: mod/notifications.php:63 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:635 mod/contacts.php:835
+#: mod/contacts.php:1020
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: mod/invite.php:125
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+#: mod/notifications.php:108
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/invite.php:127
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+#: mod/notifications.php:114 mod/notify.php:73
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: mod/invite.php:128
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+#: mod/notifications.php:120
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/invite.php:132
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: mod/notifications.php:126
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/invite.php:135
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/invite.php:136
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden."
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/invite.php:142
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/invite.php:143
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/invite.php:144 mod/message.php:332 mod/message.php:515
-#: mod/wallmessage.php:138
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:642
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: mod/invite.php:145
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/invite.php:147
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/invite.php:147
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1609
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/invite.php:149
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/item.php:119
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "ja"
 
-#: mod/item.php:346
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nein"
 
-#: mod/item.php:903
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
 
-#: mod/item.php:994
+#: mod/notifications.php:201 mod/notifications.php:206
 #, php-format
 msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
 
-#: mod/item.php:996
+#: mod/notifications.php:202
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
-
-#: mod/item.php:997
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/item.php:1001
+#: mod/notifications.php:207
 #, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
-
-#: mod/localtime.php:26
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
-
-#: mod/localtime.php:28
 msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+"Accepting %s as a sharer allows them to subscribe to your posts, but you "
+"will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: mod/localtime.php:32
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/localtime.php:35
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/localtime.php:38
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Abonnent"
 
-#: mod/localtime.php:43
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: mod/lostpass.php:22
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/lostpass.php:38
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: mod/lostpass.php:44
+#: mod/notifications.php:322
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: mod/lostpass.php:55
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+#: mod/notify.php:69
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: mod/lostpass.php:74
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: mod/lostpass.php:94
+#: mod/openid.php:25
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+
+#: mod/openid.php:61
 msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: mod/lostpass.php:113 boot.php:884
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: mod/ostatus_subscribe.php:17
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
 
-#: mod/lostpass.php:114
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/ostatus_subscribe.php:28
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
 
-#: mod/lostpass.php:115
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/ostatus_subscribe.php:34
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/lostpass.php:116
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/ostatus_subscribe.php:43
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/lostpass.php:117
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
+msgid "Done"
+msgstr "Erledigt"
+
+#: mod/ostatus_subscribe.php:71
+msgid "success"
+msgstr "Erfolg"
+
+#: mod/ostatus_subscribe.php:73
+msgid "failed"
+msgstr "Fehlgeschlagen"
 
-#: mod/lostpass.php:118
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
+#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/lostpass.php:128
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+#: mod/p.php:13
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/lostpass.php:134
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+#: mod/poke.php:198
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: mod/lostpass.php:150
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: mod/poke.php:199
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: mod/lostpass.php:162
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/poke.php:200
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: mod/lostpass.php:163
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+#: mod/poke.php:201
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: mod/lostpass.php:164 boot.php:872
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/poke.php:204
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: mod/lostpass.php:165
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/profile.php:177
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/manage.php:153
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/profile_photo.php:45
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/manage.php:154
+#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+
+#: mod/profile_photo.php:128
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: mod/manage.php:155
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/match.php:39
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
+#: mod/profile_photo.php:156 mod/wall_upload.php:182 mod/photos.php:816
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
 
-#: mod/match.php:92
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/profile_photo.php:165 mod/wall_upload.php:219 mod/photos.php:857
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: mod/match.php:106
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/message.php:63 mod/wallmessage.php:53
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/message.php:70 mod/wallmessage.php:59
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "oder"
 
-#: mod/message.php:73 mod/wallmessage.php:62
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/message.php:76 mod/wallmessage.php:65
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/message.php:205
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/message.php:225
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/message.php:322 mod/wallmessage.php:129
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:131
-msgid "To:"
-msgstr "An:"
+#: mod/profile_photo.php:315 mod/wall_upload.php:258 mod/photos.php:886
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:132
-msgid "Subject:"
-msgstr "Betreff:"
+#: mod/register.php:97
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: mod/message.php:364
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/register.php:102
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: mod/message.php:403
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/register.php:109
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
 
-#: mod/message.php:478
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/register.php:164
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/message.php:505
+#: mod/register.php:230
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
-
-#: mod/message.php:509
-msgid "Send Reply"
-msgstr "Antwort senden"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
 
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: mod/register.php:231
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: mod/register.php:232
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: mod/message.php:565
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+#: mod/register.php:246
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: mod/register.php:271
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: mod/register.php:271
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
 
-#: mod/mood.php:136
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/register.php:272
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: mod/mood.php:137
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
+#: mod/register.php:273
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: mod/network.php:187 mod/search.php:28
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/register.php:276 mod/admin.php:1160
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/network.php:561
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
+#: mod/register.php:284
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
 
-#: mod/network.php:564
-msgid "Messages in this group won't be send to these receivers."
-msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
+#: mod/register.php:285
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: mod/network.php:684
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: mod/register.php:287 mod/settings.php:1275
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/network.php:688
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/register.php:287
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/network.php:892
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/register.php:288 mod/settings.php:1276
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/network.php:895
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/register.php:289
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
 
-#: mod/network.php:900
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/register.php:290
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: mod/network.php:903
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/register.php:300
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/network.php:914
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/regmod.php:61
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: mod/network.php:922
-msgid "New"
-msgstr "Neue"
+#: mod/regmod.php:89
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/network.php:925
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/regmod.php:101
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/network.php:933
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/removeme.php:55 mod/removeme.php:58
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: mod/network.php:936
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/removeme.php:56
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: mod/network.php:944
-msgid "Starred"
-msgstr "Markierte"
+#: mod/removeme.php:57
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: mod/network.php:947
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/repair_ostatus.php:17
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
 
-#: mod/notifications.php:38
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/repair_ostatus.php:33
+msgid "Error"
+msgstr "Fehler"
 
-#: mod/notifications.php:47 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/subthread.php:106
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: mod/notifications.php:63 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:635 mod/contacts.php:835
-#: mod/contacts.php:1020
-msgid "Ignore"
-msgstr "Ignorieren"
+#: mod/tagrm.php:46
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: mod/notifications.php:108
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: mod/notifications.php:114 mod/notify.php:73
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: mod/notifications.php:120
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: mod/tagrm.php:98 mod/delegate.php:139
+msgid "Remove"
+msgstr "Entfernen"
 
-#: mod/notifications.php:126
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: mod/uexport.php:39
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/uexport.php:39
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/uexport.php:40
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/uexport.php:40
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: mod/uexport.php:47 mod/settings.php:98
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:642
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: mod/videos.php:127
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/videos.php:132
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/videos.php:211
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1604
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/videos.php:312 mod/photos.php:1094
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/videos.php:396 mod/photos.php:1894
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "ja"
+#: mod/videos.php:405
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/notifications.php:199
-msgid "no"
-msgstr "nein"
+#: mod/videos.php:407
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Soll die Verbindung beidseitig sein oder nicht?"
+#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
+#: mod/wall_upload.php:151 mod/wall_upload.php:154 mod/wall_attach.php:19
+#: mod/wall_attach.php:27 mod/wall_attach.php:78
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: mod/notifications.php:201 mod/notifications.php:206
+#: mod/wallmessage.php:45 mod/wallmessage.php:109
 #, php-format
-msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: mod/notifications.php:202
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/wallmessage.php:56
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
+
+#: mod/wallmessage.php:83 mod/wallmessage.php:92
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: mod/notifications.php:207
+#: mod/wallmessage.php:130
 #, php-format
 msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Abonnent"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/notify.php:69
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: mod/photos.php:97 mod/photos.php:1903
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/openid.php:25
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/photos.php:115 mod/settings.php:39
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/openid.php:61
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
+#: mod/photos.php:179
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/ostatus_subscribe.php:17
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
+#: mod/photos.php:200
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/ostatus_subscribe.php:28
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
+#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/ostatus_subscribe.php:34
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: mod/ostatus_subscribe.php:43
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
+#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/ostatus_subscribe.php:57 mod/repair_ostatus.php:47
-msgid "Done"
-msgstr "Erledigt"
+#: mod/photos.php:335
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/ostatus_subscribe.php:71
-msgid "success"
-msgstr "Erfolg"
+#: mod/photos.php:716
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: mod/ostatus_subscribe.php:73
-msgid "failed"
-msgstr "Fehlgeschlagen"
+#: mod/photos.php:716
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/ostatus_subscribe.php:81 mod/repair_ostatus.php:53
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/photos.php:824
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/p.php:13
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/photos.php:991
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/poke.php:198
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/photos.php:1154
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: mod/poke.php:199
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/photos.php:1191
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/poke.php:200
-msgid "Recipient"
-msgstr "Empfänger"
+#: mod/photos.php:1195 mod/photos.php:1270
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/poke.php:201
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: mod/photos.php:1196
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/poke.php:204
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: mod/photos.php:1197
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/profile.php:177
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1304
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/profile_photo.php:45
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1305
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/profile_photo.php:78 mod/profile_photo.php:86 mod/profile_photo.php:94
-#: mod/profile_photo.php:323
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: mod/photos.php:1210
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/profile_photo.php:128
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+#: mod/photos.php:1211
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/profile_photo.php:137
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/photos.php:1281
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/profile_photo.php:156 mod/wall_upload.php:182 mod/photos.php:816
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+#: mod/photos.php:1286
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/profile_photo.php:165 mod/wall_upload.php:219 mod/photos.php:857
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: mod/photos.php:1288
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/profile_photo.php:254
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/photos.php:1317 mod/photos.php:1888
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/profile_photo.php:255
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/photos.php:1362
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/profile_photo.php:257
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/photos.php:1364
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/profile_photo.php:260
-msgid "or"
-msgstr "oder"
+#: mod/photos.php:1425
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/profile_photo.php:260
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/photos.php:1425
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/profile_photo.php:260
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/photos.php:1426
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/profile_photo.php:274
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/photos.php:1451
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/profile_photo.php:275
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/photos.php:1541
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/profile_photo.php:277
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/photos.php:1544
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/profile_photo.php:313
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/photos.php:1587
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/profile_photo.php:315 mod/wall_upload.php:258 mod/photos.php:886
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: mod/photos.php:1588
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/register.php:97
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: mod/photos.php:1589
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/register.php:102
-#, php-format
+#: mod/photos.php:1589
 msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/register.php:109
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
+#: mod/photos.php:1590
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/photos.php:1591
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/register.php:164
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/photos.php:1592
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/register.php:230
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."
+#: mod/photos.php:1607
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/register.php:231
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
+#: mod/photos.php:1608
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/register.php:232
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: mod/photos.php:1817
+msgid "Map"
+msgstr "Karte"
 
-#: mod/register.php:246
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/ping.php:275
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/register.php:271
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/ping.php:290
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/register.php:271
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
+#: mod/ping.php:305
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/register.php:272
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/profiles.php:43
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/register.php:273
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/profiles.php:59 mod/profiles.php:95
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/register.php:276 mod/admin.php:1155
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/profiles.php:78 mod/profiles.php:117
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/register.php:284
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
+#: mod/profiles.php:101
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/register.php:285
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/profiles.php:191
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/register.php:287 mod/settings.php:1275
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/profiles.php:331
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/register.php:287
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/profiles.php:335
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/register.php:288 mod/settings.php:1276
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/profiles.php:347
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/register.php:289
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: mod/profiles.php:350
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/register.php:290
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/profiles.php:354
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/register.php:300
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/profiles.php:358
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/regmod.php:61
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: mod/profiles.php:362
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/regmod.php:89
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: mod/profiles.php:366
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/regmod.php:101
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: mod/profiles.php:370
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/removeme.php:55 mod/removeme.php:58
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/profiles.php:374 mod/profiles.php:693
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/removeme.php:56
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: mod/profiles.php:378
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/removeme.php:57
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/profiles.php:385 mod/profiles.php:689
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/repair_ostatus.php:17
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: mod/profiles.php:470
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/repair_ostatus.php:33
-msgid "Error"
-msgstr "Fehler"
+#: mod/profiles.php:562
+msgid " and "
+msgstr " und "
 
-#: mod/subthread.php:106
+#: mod/profiles.php:571
+msgid "public profile"
+msgstr "öffentliches Profil"
+
+#: mod/profiles.php:574
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: mod/tagrm.php:46
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/profiles.php:575
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/profiles.php:577
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/profiles.php:635
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/tagrm.php:98 mod/delegate.php:139
-msgid "Remove"
-msgstr "Entfernen"
+#: mod/profiles.php:640
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/uexport.php:39
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/profiles.php:665
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/uexport.php:39
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+#: mod/profiles.php:677
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/uexport.php:40
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/profiles.php:678
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/uexport.php:40
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
+#: mod/profiles.php:680
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/uexport.php:47 mod/settings.php:98
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/profiles.php:681
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/videos.php:127
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/profiles.php:683
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/videos.php:132
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/profiles.php:684
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/videos.php:211
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/profiles.php:685
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/videos.php:312 mod/photos.php:1094
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/profiles.php:687
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/videos.php:396 mod/photos.php:1894
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/profiles.php:688
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/videos.php:405
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/profiles.php:690
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/videos.php:407
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/profiles.php:691
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/wall_upload.php:37 mod/wall_upload.php:53 mod/wall_upload.php:111
-#: mod/wall_upload.php:151 mod/wall_upload.php:154 mod/wall_attach.php:19
-#: mod/wall_attach.php:27 mod/wall_attach.php:78
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: mod/profiles.php:692
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/wallmessage.php:45 mod/wallmessage.php:109
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: mod/profiles.php:695
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/wallmessage.php:56
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: mod/profiles.php:699
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/wallmessage.php:83 mod/wallmessage.php:92
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: mod/profiles.php:700
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/wallmessage.php:130
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+#: mod/profiles.php:702
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: mod/profiles.php:707
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/delegate.php:132
+#: mod/profiles.php:709
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
-
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/profiles.php:710
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/profiles.php:711
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/profiles.php:714
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/profiles.php:715
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/display.php:491
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/profiles.php:716
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/photos.php:97 mod/photos.php:1903
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: mod/profiles.php:717
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/photos.php:100 mod/photos.php:1331 mod/photos.php:1905
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: mod/profiles.php:718
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/photos.php:115 mod/settings.php:39
-msgid "everybody"
-msgstr "jeder"
+#: mod/profiles.php:722
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/photos.php:179
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: mod/profiles.php:722
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/photos.php:200
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: mod/profiles.php:723
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/photos.php:233 mod/photos.php:245 mod/photos.php:1275
-msgid "Delete Album"
-msgstr "Album löschen"
+#: mod/profiles.php:725
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: mod/profiles.php:726
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/photos.php:326 mod/photos.php:337 mod/photos.php:1601
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: mod/profiles.php:726
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
+msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
 
-#: mod/photos.php:335
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: mod/profiles.php:727
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/photos.php:716
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: mod/profiles.php:730
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: mod/photos.php:716
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/profiles.php:731
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/photos.php:824
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/profiles.php:731
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
 
-#: mod/photos.php:991
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: mod/profiles.php:732
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/photos.php:1154
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: mod/profiles.php:732
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: mod/photos.php:1191
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: mod/profiles.php:735
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/photos.php:1195 mod/photos.php:1270
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: mod/profiles.php:736
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/photos.php:1196
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/profiles.php:737
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/photos.php:1197
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/profiles.php:738
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/photos.php:1208 mod/photos.php:1605 mod/settings.php:1304
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/profiles.php:739
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/photos.php:1209 mod/photos.php:1606 mod/settings.php:1305
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: mod/profiles.php:740
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/photos.php:1210
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/profiles.php:741
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/photos.php:1211
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/profiles.php:742
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/photos.php:1281
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/profiles.php:743
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/photos.php:1286
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/profiles.php:784
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/photos.php:1288
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/settings.php:46 mod/admin.php:1593
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/photos.php:1317 mod/photos.php:1888
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/settings.php:55 mod/admin.php:175
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/photos.php:1362
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/settings.php:63
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/photos.php:1364
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/settings.php:70 mod/settings.php:887
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/photos.php:1425
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/settings.php:77 mod/admin.php:173 mod/admin.php:1719 mod/admin.php:1782
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/photos.php:1425
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/settings.php:91
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/photos.php:1426
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/settings.php:105
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/photos.php:1451
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/settings.php:160
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/photos.php:1541
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/settings.php:163 mod/settings.php:704 mod/contacts.php:833
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/photos.php:1544
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/settings.php:269
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
 
-#: mod/photos.php:1587
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/settings.php:274
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/photos.php:1588
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/settings.php:289
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/photos.php:1589
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/settings.php:359
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/photos.php:1589
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/settings.php:378
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/photos.php:1590
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/settings.php:386
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/photos.php:1591
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/settings.php:397
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/photos.php:1592
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/settings.php:399
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/photos.php:1607
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/settings.php:479
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/photos.php:1608
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/settings.php:481
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/photos.php:1817
-msgid "Map"
-msgstr "Karte"
+#: mod/settings.php:490
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/ping.php:275
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: mod/settings.php:495
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/ping.php:290
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: mod/settings.php:501
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/ping.php:305
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: mod/settings.php:557
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
 
-#: mod/profiles.php:43
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/settings.php:561
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
 
-#: mod/profiles.php:59 mod/profiles.php:95
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/settings.php:601
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/profiles.php:78 mod/profiles.php:117
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/profiles.php:101
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/settings.php:678 mod/settings.php:789 mod/settings.php:838
+#: mod/settings.php:905 mod/settings.php:1002 mod/settings.php:1268
+#: mod/admin.php:1158 mod/admin.php:1783 mod/admin.php:2046 mod/admin.php:2120
+#: mod/admin.php:2273
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/profiles.php:191
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/profiles.php:331
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/settings.php:682 mod/settings.php:708
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/profiles.php:335
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/settings.php:683 mod/settings.php:709
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/profiles.php:347
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/profiles.php:350
-msgid "Religion"
-msgstr "Religion"
+#: mod/settings.php:695
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/profiles.php:354
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/settings.php:738
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/profiles.php:358
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/settings.php:742
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
+
+#: mod/settings.php:743
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/profiles.php:362
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/settings.php:744
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/profiles.php:366
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/settings.php:756
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/profiles.php:370
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/settings.php:765
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/profiles.php:374 mod/profiles.php:693
-msgid "Interests"
-msgstr "Interessen"
+#: mod/settings.php:779 mod/admin.php:2262 mod/admin.php:2263
+msgid "Off"
+msgstr "Aus"
 
-#: mod/profiles.php:378
-msgid "Address"
-msgstr "Adresse"
+#: mod/settings.php:779 mod/admin.php:2262 mod/admin.php:2263
+msgid "On"
+msgstr "An"
 
-#: mod/profiles.php:385 mod/profiles.php:689
-msgid "Location"
-msgstr "Wohnort"
+#: mod/settings.php:787
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/profiles.php:470
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/settings.php:797 mod/settings.php:801
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/profiles.php:562
-msgid " and "
-msgstr " und "
+#: mod/settings.php:807
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/profiles.php:571
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/settings.php:809
+msgid ""
+"Normally the system tries to find the best link to add to shortened posts. "
+"If this option is enabled then every shortened post will always point to the"
+" original friendica post."
+msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
 
-#: mod/profiles.php:574
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: mod/settings.php:815
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/profiles.php:575
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: mod/settings.php:817
+msgid ""
+"If you receive a message from an unknown OStatus user, this option decides "
+"what to do. If it is checked, a new contact will be created for every "
+"unknown user."
+msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
 
-#: mod/profiles.php:577
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: mod/settings.php:823
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/profiles.php:635
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/settings.php:831
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/profiles.php:640
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/settings.php:833
+msgid ""
+"If you enter your old GNU Social/Statusnet account name here (in the format "
+"user@domain.tld), your contacts will be added automatically. The field will "
+"be emptied when done."
+msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
 
-#: mod/profiles.php:665
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/settings.php:836
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/profiles.php:677
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/settings.php:845 mod/settings.php:846
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/profiles.php:678
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/profiles.php:680
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/settings.php:845 mod/settings.php:846
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/profiles.php:681
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/settings.php:846
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/profiles.php:683
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/settings.php:880
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/profiles.php:684
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/settings.php:892
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/profiles.php:685
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/settings.php:893
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
 
-#: mod/profiles.php:687
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/settings.php:894
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/profiles.php:688
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/settings.php:896
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/profiles.php:690
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/settings.php:897
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/profiles.php:691
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/settings.php:898
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/profiles.php:692
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/settings.php:898 mod/settings.php:903
+msgid "None"
+msgstr "Keine"
 
-#: mod/profiles.php:695
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/settings.php:899
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/profiles.php:699
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/settings.php:900
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/profiles.php:700
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/settings.php:901
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/profiles.php:702
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/settings.php:902
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/profiles.php:707
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/settings.php:903
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/profiles.php:709
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+#: mod/settings.php:903
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/profiles.php:710
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/settings.php:904
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/profiles.php:711
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/settings.php:940 mod/admin.php:1045
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/profiles.php:714
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/settings.php:1000
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/profiles.php:715
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/settings.php:1006 mod/settings.php:1029
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/profiles.php:716
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/settings.php:1007
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/profiles.php:717
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/settings.php:1008
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/profiles.php:718
-msgid "Country:"
-msgstr "Land:"
+#: mod/settings.php:1008
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
 
-#: mod/profiles.php:722
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/settings.php:1009
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/profiles.php:722
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/settings.php:1009
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
 
-#: mod/profiles.php:723
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/settings.php:1010
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/profiles.php:725
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/settings.php:1010 mod/settings.php:1011
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/profiles.php:726
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/settings.php:1011
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
 
-#: mod/profiles.php:726
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
-msgstr "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können."
+#: mod/settings.php:1012
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/profiles.php:727
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/settings.php:1013
+msgid "Calendar"
+msgstr "Kalender"
 
-#: mod/profiles.php:730
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/settings.php:1014
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
 
-#: mod/profiles.php:731
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/settings.php:1015
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/profiles.php:731
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)"
+#: mod/settings.php:1016
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/profiles.php:732
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/settings.php:1017
+msgid "Automatic updates only at the top of the network page"
+msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
 
-#: mod/profiles.php:732
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: mod/settings.php:1017
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
 
-#: mod/profiles.php:735
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/settings.php:1018
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/profiles.php:736
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/settings.php:1018
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
 
-#: mod/profiles.php:737
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/settings.php:1020
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/profiles.php:738
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/settings.php:1021
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/profiles.php:739
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/settings.php:1022
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/profiles.php:740
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/settings.php:1023 view/theme/duepuntozero/config.php:67
+#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
+#: view/theme/vier/config.php:116
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/profiles.php:741
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/settings.php:1107
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/profiles.php:742
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/settings.php:1108
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/profiles.php:743
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/settings.php:1109
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/profiles.php:784
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/settings.php:1116
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/search.php:96
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: mod/settings.php:1117
+msgid "Account for a personal profile."
+msgstr "Konto für ein persönliches Profil."
 
-#: mod/search.php:120
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: mod/settings.php:1120
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/search.php:121
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
+#: mod/settings.php:1121
+msgid ""
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/search.php:221
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: mod/settings.php:1124
+msgid "News Page"
+msgstr "Nachrichtenseite"
 
-#: mod/search.php:223 mod/contacts.php:826
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: mod/settings.php:1125
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/settings.php:46 mod/admin.php:1588
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/settings.php:1128
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
 
-#: mod/settings.php:55 mod/admin.php:175
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/settings.php:1129
+msgid "Account for community discussions."
+msgstr "Konto für Diskussionsforen. "
 
-#: mod/settings.php:63
-msgid "Display"
-msgstr "Anzeige"
+#: mod/settings.php:1132
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/settings.php:70 mod/settings.php:887
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/settings.php:1133
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
 
-#: mod/settings.php:77 mod/admin.php:173 mod/admin.php:1714 mod/admin.php:1777
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/settings.php:1136
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/settings.php:91
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/settings.php:1137
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/settings.php:105
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/settings.php:1140
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/settings.php:160
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/settings.php:1141
+msgid "Automatically approves all contact requests."
+msgstr "Bestätigt alle Kontaktanfragen automatisch."
 
-#: mod/settings.php:163 mod/settings.php:704 mod/contacts.php:833
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/settings.php:1144
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/settings.php:269
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
+#: mod/settings.php:1145
+msgid ""
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
 
-#: mod/settings.php:274
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/settings.php:1148
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/settings.php:289
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/settings.php:1149
+msgid "Requires manual approval of contact requests."
+msgstr "Kontaktanfragen müssen manuell bestätigt werden."
+
+#: mod/settings.php:1160
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/settings.php:1160
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/settings.php:1168
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/settings.php:386
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/settings.php:1168
+msgid "Your profile may be visible in public."
+msgstr "Dein Profil könnte öffentlich abrufbar sein."
 
-#: mod/settings.php:397
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/settings.php:1174
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/settings.php:1181
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/settings.php:1185
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
 
-#: mod/settings.php:481
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/settings.php:1190
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/settings.php:490
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/settings.php:1195
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/settings.php:495
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/settings.php:1200
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: mod/settings.php:1205
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/settings.php:557
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
+#: mod/settings.php:1213
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/settings.php:561
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
+#: mod/settings.php:1221
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/settings.php:601
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/settings.php:1228
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/settings.php:1228
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
 
-#: mod/settings.php:678 mod/settings.php:789 mod/settings.php:838
-#: mod/settings.php:905 mod/settings.php:1002 mod/settings.php:1268
-#: mod/admin.php:1154 mod/admin.php:1778 mod/admin.php:2041 mod/admin.php:2115
-#: mod/admin.php:2268
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/settings.php:1229
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/settings.php:1230
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/settings.php:1231
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/settings.php:1232
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/settings.php:1233
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/settings.php:695
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/settings.php:1234
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/settings.php:738
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/settings.php:1235
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/settings.php:742
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/settings.php:1266
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/settings.php:743
-msgid "No name"
-msgstr "Kein Name"
+#: mod/settings.php:1274
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/settings.php:744
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/settings.php:1276
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/settings.php:1277
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/settings.php:765
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/settings.php:1277 mod/settings.php:1278
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
-msgid "Off"
-msgstr "Aus"
+#: mod/settings.php:1278
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/settings.php:779 mod/admin.php:2257 mod/admin.php:2258
-msgid "On"
-msgstr "An"
+#: mod/settings.php:1282
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/settings.php:787
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/settings.php:1284
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/settings.php:797 mod/settings.php:801
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/settings.php:1285
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/settings.php:807
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/settings.php:1286
+msgid "Your Language:"
+msgstr "Deine Sprache:"
 
-#: mod/settings.php:809
+#: mod/settings.php:1286
 msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
-msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
+"Set the language we use to show you friendica interface and to send you "
+"emails"
+msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
 
-#: mod/settings.php:815
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/settings.php:1287
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/settings.php:817
-msgid ""
-"If you receive a message from an unknown OStatus user, this option decides "
-"what to do. If it is checked, a new contact will be created for every "
-"unknown user."
-msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
+#: mod/settings.php:1288
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/settings.php:823
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/settings.php:1291
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/settings.php:831
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/settings.php:1293
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/settings.php:833
-msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
-msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
+#: mod/settings.php:1293 mod/settings.php:1323
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/settings.php:836
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
+#: mod/settings.php:1294
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/settings.php:845 mod/settings.php:846
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: mod/settings.php:1295
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/settings.php:845 mod/settings.php:846
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/settings.php:1306
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/settings.php:845 mod/settings.php:846
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/settings.php:1307
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/settings.php:846
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/settings.php:1311
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/settings.php:880
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/settings.php:1323
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/settings.php:892
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/settings.php:1326
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/settings.php:893
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
+#: mod/settings.php:1327
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/settings.php:894
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/settings.php:1328
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/settings.php:896
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/settings.php:1329
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/settings.php:897
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/settings.php:1330
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/settings.php:898
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/settings.php:1331
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/settings.php:898 mod/settings.php:903
-msgid "None"
-msgstr "Keine"
+#: mod/settings.php:1332
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/settings.php:899
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/settings.php:1333
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/settings.php:900
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/settings.php:1334
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/settings.php:901
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/settings.php:1335
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/settings.php:902
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/settings.php:1336
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/settings.php:903
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/settings.php:1337
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/settings.php:903
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/settings.php:1338
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/settings.php:904
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/settings.php:1339
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/settings.php:940 mod/admin.php:1041
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/settings.php:1341
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1000
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/settings.php:1341
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1006 mod/settings.php:1029
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/settings.php:1343
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/settings.php:1007
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/settings.php:1345
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/settings.php:1008
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/settings.php:1347
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/settings.php:1008
-msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
-msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
+#: mod/settings.php:1348
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/settings.php:1009
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/settings.php:1351
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/settings.php:1009
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
+#: mod/settings.php:1352
+msgid ""
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
 
-#: mod/settings.php:1010
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/settings.php:1353
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/settings.php:1010 mod/settings.php:1011
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/suggest.php:30
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
 
-#: mod/settings.php:1011
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: mod/settings.php:1012
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: mod/settings.php:1013
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/wall_attach.php:96
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: mod/settings.php:1014
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/wall_attach.php:96
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: mod/settings.php:1015
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/wall_attach.php:107
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/settings.php:1016
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/wall_attach.php:151 mod/wall_attach.php:167
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/settings.php:1017
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
+#: mod/admin.php:99
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/settings.php:1017
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
+#: mod/admin.php:171 mod/admin.php:1157
+msgid "Site"
+msgstr "Seite"
 
-#: mod/settings.php:1018
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/admin.php:172 mod/admin.php:1091 mod/admin.php:1601 mod/admin.php:1617
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/settings.php:1018
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
+#: mod/admin.php:174 mod/admin.php:1995 mod/admin.php:2045
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/settings.php:1020
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+#: mod/admin.php:176
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/settings.php:1021
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/admin.php:177 mod/admin.php:584
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/settings.php:1022
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/admin.php:178 mod/admin.php:298
+msgid "Server Blocklist"
+msgstr "Server Blockliste"
 
-#: mod/settings.php:1023 view/theme/duepuntozero/config.php:67
-#: view/theme/frio/config.php:70 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:116
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/admin.php:179 mod/admin.php:550
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/settings.php:1107
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/admin.php:180 mod/admin.php:375
+msgid "Delete Item"
+msgstr "Eintrag löschen"
 
-#: mod/settings.php:1108
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2119
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/settings.php:1109
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/admin.php:195 mod/admin.php:2187
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/settings.php:1116
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/admin.php:196
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/settings.php:1117
-msgid "Account for a personal profile."
-msgstr "Konto für ein persönliches Profil."
+#: mod/admin.php:197
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/settings.php:1120
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/admin.php:204
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/settings.php:1121
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+#: mod/admin.php:206
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/settings.php:1124
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/admin.php:207
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/settings.php:1125
-msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+#: mod/admin.php:289
+msgid "The blocked domain"
+msgstr "Die blockierte Domain"
 
-#: mod/settings.php:1128
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+#: mod/admin.php:290 mod/admin.php:308 mod/friendica.php:116
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
 
-#: mod/settings.php:1129
-msgid "Account for community discussions."
-msgstr "Konto für Diskussionsforen. "
+#: mod/admin.php:290 mod/admin.php:303
+msgid "The reason why you blocked this domain."
+msgstr "Die Begründung warum du diese Domain blockiert hast."
 
-#: mod/settings.php:1132
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/admin.php:291
+msgid "Delete domain"
+msgstr "Domain löschen"
 
-#: mod/settings.php:1133
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
+#: mod/admin.php:291
+msgid "Check to delete this entry from the blocklist"
+msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
 
-#: mod/settings.php:1136
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
+#: mod/admin.php:671 mod/admin.php:1156 mod/admin.php:1600 mod/admin.php:1718
+#: mod/admin.php:1781 mod/admin.php:1994 mod/admin.php:2044 mod/admin.php:2118
+#: mod/admin.php:2186
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/settings.php:1137
+#: mod/admin.php:299
 msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
 
-#: mod/settings.php:1140
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
+#: mod/admin.php:300
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
 
-#: mod/settings.php:1141
-msgid "Automatically approves all contact requests."
-msgstr "Bestätigt alle Kontaktanfragen automatisch."
+#: mod/admin.php:301
+msgid "Add new entry to block list"
+msgstr "Neuen Eintrag in die Blockliste"
 
-#: mod/settings.php:1144
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/admin.php:302
+msgid "Server Domain"
+msgstr "Domain des Servers"
 
-#: mod/settings.php:1145
+#: mod/admin.php:302
 msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
 
-#: mod/settings.php:1148
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/admin.php:303
+msgid "Block reason"
+msgstr "Begründung der Blockierung"
 
-#: mod/settings.php:1149
-msgid "Requires manual approval of contact requests."
-msgstr "Kontaktanfragen müssen manuell bestätigt werden."
+#: mod/admin.php:304
+msgid "Add Entry"
+msgstr "Eintrag hinzufügen"
 
-#: mod/settings.php:1160
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:305
+msgid "Save changes to the blocklist"
+msgstr "Änderungen der Blockliste speichern"
 
-#: mod/settings.php:1160
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: mod/admin.php:306
+msgid "Current Entries in the Blocklist"
+msgstr "Aktuelle Einträge der Blockliste"
 
-#: mod/settings.php:1168
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: mod/admin.php:309
+msgid "Delete entry from blocklist"
+msgstr "Eintrag von der Blockliste entfernen"
 
-#: mod/settings.php:1168
-msgid "Your profile may be visible in public."
-msgstr "Dein Profil könnte öffentlich abrufbar sein."
+#: mod/admin.php:312
+msgid "Delete entry from blocklist?"
+msgstr "Eintrag von der Blockliste entfernen?"
 
-#: mod/settings.php:1174
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: mod/admin.php:337
+msgid "Server added to blocklist."
+msgstr "Server zur Blockliste hinzugefügt."
 
-#: mod/settings.php:1181
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: mod/admin.php:353
+msgid "Site blocklist updated."
+msgstr "Blockliste aktualisiert."
 
-#: mod/settings.php:1185
+#: mod/admin.php:376
+msgid "Delete this Item"
+msgstr "Diesen Eintrag löschen"
+
+#: mod/admin.php:377
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
 
-#: mod/settings.php:1190
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/admin.php:378
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
 
-#: mod/settings.php:1195
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/admin.php:379
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/settings.php:1200
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: mod/admin.php:379
+msgid "The GUID of the item you want to delete."
+msgstr "Die GUID des zu löschenden Eintrags"
 
-#: mod/settings.php:1205
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/admin.php:416
+msgid "Item marked for deletion."
+msgstr "Eintrag wurden zur Löschung markiert"
 
-#: mod/settings.php:1213
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/admin.php:480
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/settings.php:1221
+#: mod/admin.php:543
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+
+#: mod/admin.php:544
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
+
+#: mod/admin.php:556
 #, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
 
-#: mod/settings.php:1228
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/admin.php:586
+msgid "ID"
+msgstr "ID"
 
-#: mod/settings.php:1228
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
+#: mod/admin.php:587
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/settings.php:1229
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/admin.php:588
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
+
+#: mod/admin.php:590
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/settings.php:1230
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/admin.php:591
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/settings.php:1231
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/admin.php:592
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
 
-#: mod/settings.php:1232
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/admin.php:616
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
 
-#: mod/settings.php:1233
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/admin.php:625
+msgid ""
+"The database update failed. Please run \"php include/dbstructure.php "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
 
-#: mod/settings.php:1234
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/admin.php:631
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur."
 
-#: mod/settings.php:1235
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/admin.php:634
+#, php-format
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen."
 
-#: mod/settings.php:1266
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/admin.php:639 mod/admin.php:1550
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/settings.php:1274
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/admin.php:640 mod/admin.php:1551
+msgid "Automatic Follower Account"
+msgstr "Automatisc Folgender Account"
 
-#: mod/settings.php:1276
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: mod/admin.php:641 mod/admin.php:1552
+msgid "Public Forum Account"
+msgstr "Öffentliche Gemeinschaftsforen Accoun"
 
-#: mod/settings.php:1277
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/admin.php:642 mod/admin.php:1553
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/settings.php:1277 mod/settings.php:1278
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: mod/admin.php:643
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/settings.php:1278
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/admin.php:644
+msgid "Private Forum Account"
+msgstr "Private Gemeinschaftsforen Accoun"
 
-#: mod/settings.php:1282
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/admin.php:666
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/settings.php:1284
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/admin.php:672
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/settings.php:1285
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/admin.php:674
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/settings.php:1286
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/admin.php:676
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/settings.php:1286
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
+#: mod/admin.php:677
+msgid "Version"
+msgstr "Version"
 
-#: mod/settings.php:1287
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: mod/admin.php:682
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/settings.php:1288
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/admin.php:712
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: mod/settings.php:1291
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/admin.php:1017
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/settings.php:1293
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/admin.php:1074
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/settings.php:1293 mod/settings.php:1323
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/admin.php:1075
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/settings.php:1294
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/admin.php:1076
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/settings.php:1295
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: mod/admin.php:1081 mod/contacts.php:551
+msgid "Never"
+msgstr "Niemals"
 
-#: mod/settings.php:1306
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/admin.php:1082
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/settings.php:1307
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/admin.php:1090 mod/contacts.php:578
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/settings.php:1311
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/admin.php:1092
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/settings.php:1323
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/admin.php:1093
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/settings.php:1326
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/admin.php:1097
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/settings.php:1327
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/admin.php:1098
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/settings.php:1328
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/admin.php:1099
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/settings.php:1329
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/admin.php:1100
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/settings.php:1330
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
+#: mod/admin.php:1105
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/settings.php:1331
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/admin.php:1128
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/settings.php:1332
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/admin.php:1129
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/settings.php:1333
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/admin.php:1130
+msgid "Open"
+msgstr "Offen"
 
-#: mod/settings.php:1334
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/admin.php:1134
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/settings.php:1335
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/admin.php:1135
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/settings.php:1336
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/admin.php:1136
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: mod/settings.php:1337
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/admin.php:1159
+msgid "Republish users to directory"
+msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen."
 
-#: mod/settings.php:1338
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/admin.php:1161
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/settings.php:1339
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/admin.php:1162
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/settings.php:1341
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1164
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/settings.php:1341
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1165
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/settings.php:1343
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/admin.php:1166
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/settings.php:1345
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: mod/admin.php:1167
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/settings.php:1347
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/admin.php:1170
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/settings.php:1348
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/admin.php:1171
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/settings.php:1351
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/admin.php:1172
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/settings.php:1352
+#: mod/admin.php:1172
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."
+"The email address your server shall use to send notification emails from."
+msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
 
-#: mod/settings.php:1353
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/admin.php:1173
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/suggest.php:30
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: mod/admin.php:1174
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+#: mod/admin.php:1174
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: mod/admin.php:1175
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/wall_attach.php:96
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: mod/admin.php:1175
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
 
-#: mod/wall_attach.php:96
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: mod/admin.php:1176
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/wall_attach.php:107
+#: mod/admin.php:1176
 #, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
-
-#: mod/wall_attach.php:151 mod/wall_attach.php:167
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
 
-#: mod/admin.php:99
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/admin.php:1177
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/admin.php:171 mod/admin.php:1153
-msgid "Site"
-msgstr "Seite"
+#: mod/admin.php:1178
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/admin.php:172 mod/admin.php:1087 mod/admin.php:1596 mod/admin.php:1612
-msgid "Users"
-msgstr "Nutzer"
+#: mod/admin.php:1178
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: mod/admin.php:174 mod/admin.php:1990 mod/admin.php:2040
-msgid "Themes"
-msgstr "Themen"
+#: mod/admin.php:1179
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/admin.php:176
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/admin.php:1179
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/admin.php:177 mod/admin.php:584
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/admin.php:1180
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/admin.php:178 mod/admin.php:298
-msgid "Server Blocklist"
-msgstr "Server Blockliste"
+#: mod/admin.php:1180
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/admin.php:179 mod/admin.php:550
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/admin.php:1181
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/admin.php:180 mod/admin.php:375
-msgid "Delete Item"
-msgstr "Eintrag löschen"
+#: mod/admin.php:1181
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: mod/admin.php:194 mod/admin.php:205 mod/admin.php:2114
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/admin.php:1182
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/admin.php:195 mod/admin.php:2182
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/admin.php:1182
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: mod/admin.php:196
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/admin.php:1183
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/admin.php:197
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/admin.php:1183
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: mod/admin.php:204
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/admin.php:1184
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/admin.php:206
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/admin.php:1184
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: mod/admin.php:207
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/admin.php:1185
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/admin.php:289
-msgid "The blocked domain"
-msgstr "Die blockierte Domain"
+#: mod/admin.php:1185
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: mod/admin.php:290 mod/admin.php:303
-msgid "The reason why you blocked this domain."
-msgstr "Die Begründung warum du diese Domain blockiert hast."
+#: mod/admin.php:1186
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/admin.php:291
-msgid "Delete domain"
-msgstr "Domain löschen"
+#: mod/admin.php:1186
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: mod/admin.php:291
-msgid "Check to delete this entry from the blocklist"
-msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
+#: mod/admin.php:1188
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/admin.php:297 mod/admin.php:374 mod/admin.php:549 mod/admin.php:583
-#: mod/admin.php:672 mod/admin.php:1152 mod/admin.php:1595 mod/admin.php:1713
-#: mod/admin.php:1776 mod/admin.php:1989 mod/admin.php:2039 mod/admin.php:2113
-#: mod/admin.php:2181
-msgid "Administration"
-msgstr "Administration"
+#: mod/admin.php:1189
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/admin.php:299
+#: mod/admin.php:1189
 msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: mod/admin.php:300
+#: mod/admin.php:1190
+msgid "Register text"
+msgstr "Registrierungstext"
+
+#: mod/admin.php:1190
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+
+#: mod/admin.php:1191
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+
+#: mod/admin.php:1191
 msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: mod/admin.php:301
-msgid "Add new entry to block list"
-msgstr "Neuen Eintrag in die Blockliste"
+#: mod/admin.php:1192
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/admin.php:302
-msgid "Server Domain"
-msgstr "Domain des Servers"
+#: mod/admin.php:1192
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:302
+#: mod/admin.php:1193
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
+
+#: mod/admin.php:1193
 msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/admin.php:303
-msgid "Block reason"
-msgstr "Begründung der Blockierung"
+#: mod/admin.php:1194
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/admin.php:304
-msgid "Add Entry"
-msgstr "Eintrag hinzufügen"
+#: mod/admin.php:1194
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: mod/admin.php:305
-msgid "Save changes to the blocklist"
-msgstr "Änderungen der Blockliste speichern"
+#: mod/admin.php:1195
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/admin.php:306
-msgid "Current Entries in the Blocklist"
-msgstr "Aktuelle Einträge der Blockliste"
+#: mod/admin.php:1195
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: mod/admin.php:309
-msgid "Delete entry from blocklist"
-msgstr "Eintrag von der Blockliste entfernen"
+#: mod/admin.php:1196
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/admin.php:312
-msgid "Delete entry from blocklist?"
-msgstr "Eintrag von der Blockliste entfernen?"
+#: mod/admin.php:1196
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
 
-#: mod/admin.php:337
-msgid "Server added to blocklist."
-msgstr "Server zur Blockliste hinzugefügt."
+#: mod/admin.php:1197
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/admin.php:353
-msgid "Site blocklist updated."
-msgstr "Blockliste aktualisiert."
+#: mod/admin.php:1197
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/admin.php:376
-msgid "Delete this Item"
-msgstr "Diesen Eintrag löschen"
+#: mod/admin.php:1198
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/admin.php:377
+#: mod/admin.php:1198
 msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: mod/admin.php:378
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
+#: mod/admin.php:1199
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/admin.php:379
-msgid "GUID"
-msgstr "GUID"
+#: mod/admin.php:1199
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: mod/admin.php:379
-msgid "The GUID of the item you want to delete."
-msgstr "Die GUID des zu löschenden Eintrags"
+#: mod/admin.php:1200
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/admin.php:416
-msgid "Item marked for deletion."
-msgstr "Eintrag wurden zur Löschung markiert"
+#: mod/admin.php:1200
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: mod/admin.php:480
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/admin.php:1201
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/admin.php:543
+#: mod/admin.php:1201
 msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: mod/admin.php:544
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
+#: mod/admin.php:1202
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/admin.php:556
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
+#: mod/admin.php:1202
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: mod/admin.php:586
-msgid "ID"
-msgstr "ID"
+#: mod/admin.php:1203
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/admin.php:587
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/admin.php:1203
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/admin.php:588
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/admin.php:1204
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/admin.php:590
-msgid "Created"
-msgstr "Erstellt"
+#: mod/admin.php:1204
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/admin.php:591
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/admin.php:1205
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/admin.php:592
+#: mod/admin.php:1205
 msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: mod/admin.php:617
-#, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
+#: mod/admin.php:1206
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: mod/admin.php:626
+#: mod/admin.php:1206
 msgid ""
-"The database update failed. Please run \"php include/dbstructure.php "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php include/dbstructure.php update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: mod/admin.php:632
-msgid "The worker was never executed. Please check your database structure!"
-msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur."
+#: mod/admin.php:1207
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/admin.php:635
-#, php-format
+#: mod/admin.php:1207
 msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please"
-" check your crontab settings."
-msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab Einstellungen."
-
-#: mod/admin.php:640 mod/admin.php:1545
-msgid "Normal Account"
-msgstr "Normales Konto"
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
 
-#: mod/admin.php:641 mod/admin.php:1546
-msgid "Automatic Follower Account"
-msgstr "Automatisc Folgender Account"
+#: mod/admin.php:1208
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/admin.php:642 mod/admin.php:1547
-msgid "Public Forum Account"
-msgstr "Öffentliche Gemeinschaftsforen Accoun"
+#: mod/admin.php:1208
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: mod/admin.php:643 mod/admin.php:1548
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/admin.php:1209
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/admin.php:644
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/admin.php:1209
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
 
-#: mod/admin.php:645
-msgid "Private Forum Account"
-msgstr "Private Gemeinschaftsforen Accoun"
+#: mod/admin.php:1210
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/admin.php:667
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/admin.php:1212
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
 
-#: mod/admin.php:673
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/admin.php:1213
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/admin.php:675
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/admin.php:1213
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/admin.php:677
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/admin.php:1214
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/admin.php:678
-msgid "Version"
-msgstr "Version"
+#: mod/admin.php:1214
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: mod/admin.php:683
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/admin.php:1215
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: mod/admin.php:708
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
+#: mod/admin.php:1215
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: mod/admin.php:1013
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/admin.php:1216
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/admin.php:1070
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/admin.php:1217
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/admin.php:1071
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/admin.php:1218
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/admin.php:1072
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/admin.php:1218
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: mod/admin.php:1077 mod/contacts.php:551
-msgid "Never"
-msgstr "Niemals"
+#: mod/admin.php:1219
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: mod/admin.php:1078
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/admin.php:1219
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/admin.php:1086 mod/contacts.php:578
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/admin.php:1220
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: mod/admin.php:1088
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/admin.php:1220
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/admin.php:1089
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/admin.php:1221
+msgid "Minimal Memory"
+msgstr "Minimaler Speicher"
 
-#: mod/admin.php:1093
-msgid "One month"
-msgstr "ein Monat"
+#: mod/admin.php:1221
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
 
-#: mod/admin.php:1094
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/admin.php:1222
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/admin.php:1095
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/admin.php:1222
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
 
-#: mod/admin.php:1096
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/admin.php:1223
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/admin.php:1101
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/admin.php:1223
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
 
-#: mod/admin.php:1124
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/admin.php:1225
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/admin.php:1125
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/admin.php:1225
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
 
-#: mod/admin.php:1126
-msgid "Open"
-msgstr "Offen"
+#: mod/admin.php:1226
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/admin.php:1130
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/admin.php:1226
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
 
-#: mod/admin.php:1131
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/admin.php:1227
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/admin.php:1132
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+#: mod/admin.php:1227
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
 
-#: mod/admin.php:1156
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/admin.php:1228
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/admin.php:1157
-msgid "Policies"
-msgstr "Regeln"
+#: mod/admin.php:1228
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
 
-#: mod/admin.php:1159
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/admin.php:1229
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/admin.php:1160
-msgid "Performance"
-msgstr "Performance"
+#: mod/admin.php:1229
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
 
-#: mod/admin.php:1161
-msgid "Worker"
-msgstr "Worker"
+#: mod/admin.php:1231
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/admin.php:1162
+#: mod/admin.php:1231
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
-
-#: mod/admin.php:1165
-msgid "Site name"
-msgstr "Seitenname"
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
 
-#: mod/admin.php:1166
-msgid "Host name"
-msgstr "Host Name"
+#: mod/admin.php:1233
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/admin.php:1167
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/admin.php:1233
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: mod/admin.php:1167
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
+#: mod/admin.php:1234
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/admin.php:1168
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/admin.php:1234
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
 
-#: mod/admin.php:1169
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/admin.php:1235
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/admin.php:1169
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/admin.php:1235
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: mod/admin.php:1170
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/admin.php:1236
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/admin.php:1170
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
+#: mod/admin.php:1236
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: mod/admin.php:1171
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/admin.php:1237
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/admin.php:1171
-#, php-format
+#: mod/admin.php:1237
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
-
-#: mod/admin.php:1172
-msgid "System language"
-msgstr "Systemsprache"
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
 
-#: mod/admin.php:1173
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/admin.php:1238
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/admin.php:1173
+#: mod/admin.php:1238
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
 
-#: mod/admin.php:1174
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/admin.php:1239
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/admin.php:1174
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/admin.php:1239
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: mod/admin.php:1175
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/admin.php:1240
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/admin.php:1175
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/admin.php:1240
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
 
-#: mod/admin.php:1176
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/admin.php:1242
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/admin.php:1176
+#: mod/admin.php:1242
 msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
 
-#: mod/admin.php:1177
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/admin.php:1244
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
 
-#: mod/admin.php:1177
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
+#: mod/admin.php:1244
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/admin.php:1178
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: mod/admin.php:1246
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/admin.php:1178
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
+#: mod/admin.php:1246
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
 
-#: mod/admin.php:1179
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/admin.php:1247
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: mod/admin.php:1179
+#: mod/admin.php:1247
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
 
-#: mod/admin.php:1180
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/admin.php:1248
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
 
-#: mod/admin.php:1180
+#: mod/admin.php:1248
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
 
-#: mod/admin.php:1181
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/admin.php:1249
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
 
-#: mod/admin.php:1181
+#: mod/admin.php:1249
+#, php-format
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
+"When enabled the Worker process is triggered when backend access is "
+"performed (e.g. messages being delivered). On smaller sites you might want "
+"to call %s/worker on a regular basis via an external cron job. You should "
+"only enable this option if you cannot utilize cron/scheduled jobs on your "
+"server."
+msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
 
-#: mod/admin.php:1183
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/admin.php:1279
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/admin.php:1184
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/admin.php:1287
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/admin.php:1184
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
+#: mod/admin.php:1290
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: mod/admin.php:1185
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/admin.php:1304
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/admin.php:1185
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/admin.php:1307
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: mod/admin.php:1186
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/admin.php:1310
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: mod/admin.php:1186
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+#: mod/admin.php:1313
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: mod/admin.php:1187
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/admin.php:1333
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/admin.php:1187
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/admin.php:1334
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/admin.php:1188
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/admin.php:1339
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: mod/admin.php:1188
+#: mod/admin.php:1340
 msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: mod/admin.php:1189
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/admin.php:1341
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/admin.php:1189
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
+#: mod/admin.php:1342
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/admin.php:1190
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/admin.php:1376
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
 
-#: mod/admin.php:1190
+#: mod/admin.php:1379
+#, php-format
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/admin.php:1191
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/admin.php:1423
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: mod/admin.php:1191
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
+#: mod/admin.php:1430
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/admin.php:1192
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: mod/admin.php:1477
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/admin.php:1192
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: mod/admin.php:1485
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/admin.php:1193
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/admin.php:1485
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/admin.php:1193
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
+#: mod/admin.php:1593 mod/admin.php:1619
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/admin.php:1194
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/admin.php:1593 mod/admin.php:1619
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/admin.php:1194
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
+#: mod/admin.php:1593 mod/admin.php:1619
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/admin.php:1195
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/admin.php:1602
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/admin.php:1195
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
+#: mod/admin.php:1603
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/admin.php:1196
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/admin.php:1604
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/admin.php:1196
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
+#: mod/admin.php:1605
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/admin.php:1197
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/admin.php:1606
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/admin.php:1197
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
+#: mod/admin.php:1607
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/admin.php:1198
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/admin.php:1608
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/admin.php:1198
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/admin.php:1610
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/admin.php:1199
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/admin.php:1612 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/admin.php:1199
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/admin.php:1613 mod/contacts.php:634 mod/contacts.php:834
+#: mod/contacts.php:1012
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/admin.php:1200
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/admin.php:1614
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/admin.php:1200
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
+#: mod/admin.php:1615
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/admin.php:1201
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/admin.php:1618
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/admin.php:1201
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
+#: mod/admin.php:1619
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/admin.php:1202
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/admin.php:1624
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1202
+#: mod/admin.php:1625
 msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/admin.php:1203
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/admin.php:1635
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/admin.php:1203
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+#: mod/admin.php:1636
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/admin.php:1204
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/admin.php:1636
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/admin.php:1204
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
+#: mod/admin.php:1637
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/admin.php:1205
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/admin.php:1680
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/admin.php:1207
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
+#: mod/admin.php:1684
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/admin.php:1208
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/admin.php:1695 mod/admin.php:1947
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/admin.php:1208
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/admin.php:1697 mod/admin.php:1949
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/admin.php:1209
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/admin.php:1720 mod/admin.php:1996
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/admin.php:1209
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
+#: mod/admin.php:1728 mod/admin.php:2005
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/admin.php:1210
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: mod/admin.php:1729 mod/admin.php:2006
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/admin.php:1210
+#: mod/admin.php:1784
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
+
+#: mod/admin.php:1789
+#, php-format
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
 
-#: mod/admin.php:1211
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/admin.php:1908
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/admin.php:1212
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/admin.php:1987
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/admin.php:1213
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/admin.php:2047
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/admin.php:1213
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
+#: mod/admin.php:2052
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
 
-#: mod/admin.php:1214
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/admin.php:2053
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/admin.php:1214
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+#: mod/admin.php:2054
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/admin.php:1215
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/admin.php:2078
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/admin.php:1215
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/admin.php:2110
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/admin.php:1216
-msgid "Minimal Memory"
-msgstr "Minimaler Speicher"
+#: mod/admin.php:2112
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/admin.php:1216
-msgid ""
-"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
+#: mod/admin.php:2121
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/admin.php:1217
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/admin.php:2126
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/admin.php:1217
+#: mod/admin.php:2127
+msgid "Log file"
+msgstr "Protokolldatei"
+
+#: mod/admin.php:2127
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/admin.php:1218
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/admin.php:2128
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/admin.php:1218
+#: mod/admin.php:2131
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
+
+#: mod/admin.php:2132
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
 
-#: mod/admin.php:1220
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
+#: mod/admin.php:2263
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/admin.php:1220
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+#: mod/admin.php:2271
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
-#: mod/admin.php:1221
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+#: mod/contacts.php:138
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: mod/admin.php:1221
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
+#: mod/contacts.php:173 mod/contacts.php:391
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: mod/admin.php:1222
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/contacts.php:187
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: mod/admin.php:1222
-msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
+#: mod/contacts.php:220
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: mod/admin.php:1223
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/contacts.php:412
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: mod/admin.php:1223
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+#: mod/contacts.php:412
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: mod/admin.php:1224
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/contacts.php:423
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: mod/admin.php:1224
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+#: mod/contacts.php:423
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: mod/admin.php:1226
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/contacts.php:435
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: mod/admin.php:1226
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+#: mod/contacts.php:435
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: mod/admin.php:1228
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/contacts.php:460
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: mod/admin.php:1228
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
+#: mod/contacts.php:463 mod/contacts.php:830
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: mod/admin.php:1229
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/contacts.php:482
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: mod/admin.php:1229
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: mod/admin.php:1230
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: mod/admin.php:1230
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
+#: mod/contacts.php:528
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: mod/admin.php:1231
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/contacts.php:548
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/admin.php:1231
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
+#: mod/contacts.php:555
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: mod/admin.php:1232
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/contacts.php:555
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: mod/admin.php:1232
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
+#: mod/contacts.php:557 mod/contacts.php:993
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:1233
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/contacts.php:561
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: mod/admin.php:1233
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
+#: mod/contacts.php:574
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: mod/admin.php:1234
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/contacts.php:577
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/admin.php:1234
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: mod/contacts.php:578
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: mod/admin.php:1235
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/contacts.php:578
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: mod/admin.php:1235
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
+#: mod/contacts.php:592 mod/unfollow.php:100
+msgid "Disconnect/Unfollow"
+msgstr "Verbindung lösen/Nicht mehr folgen"
+
+#: mod/contacts.php:602
+msgid "Contact"
+msgstr "Kontakt"
 
-#: mod/admin.php:1237
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/contacts.php:605
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: mod/admin.php:1237
+#: mod/contacts.php:606
+#, php-format
 msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
 
-#: mod/admin.php:1239
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/contacts.php:607
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: mod/admin.php:1239
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/contacts.php:608
+msgid "Their personal note"
+msgstr "Die persönliche Mitteilung"
 
-#: mod/admin.php:1241
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/contacts.php:610
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: mod/admin.php:1241
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
+#: mod/contacts.php:616
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: mod/admin.php:1242
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/contacts.php:617
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: mod/admin.php:1242
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
+#: mod/contacts.php:618
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: mod/admin.php:1243
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/contacts.php:619
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: mod/admin.php:1243
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
+#: mod/contacts.php:625
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: mod/admin.php:1244
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/contacts.php:627
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/admin.php:1244
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed (e.g. messages being delivered). On smaller sites you might want "
-"to call %s/worker on a regular basis via an external cron job. You should "
-"only enable this option if you cannot utilize cron/scheduled jobs on your "
-"server."
-msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
+#: mod/contacts.php:629 mod/contacts.php:1003
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/admin.php:1274
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/admin.php:1282
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/contacts.php:639
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/admin.php:1285
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
+#: mod/contacts.php:640
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/admin.php:1299
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/contacts.php:641
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/admin.php:1302
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/contacts.php:642
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: mod/admin.php:1305
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+#: mod/contacts.php:643
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: mod/admin.php:1308
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
+#: mod/contacts.php:643
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: mod/admin.php:1328
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/contacts.php:646
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/admin.php:1329
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/contacts.php:646
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: mod/admin.php:1334
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/contacts.php:664
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/admin.php:1335
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
+#: mod/contacts.php:667
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/admin.php:1336
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/contacts.php:713
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/admin.php:1337
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/contacts.php:716
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:1371
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt."
+#: mod/contacts.php:724
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:1374
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
+#: mod/contacts.php:729
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/admin.php:1418
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Benutzer geblockt/freigegeben"
-msgstr[1] "%s Benutzer geblockt/freigegeben"
+#: mod/contacts.php:732
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/admin.php:1425
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: mod/contacts.php:738
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/admin.php:1472
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/contacts.php:741
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/admin.php:1480
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/contacts.php:747
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/admin.php:1480
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: mod/contacts.php:750
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/admin.php:1588 mod/admin.php:1614
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/contacts.php:756
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/admin.php:1588 mod/admin.php:1614
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/contacts.php:759
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/admin.php:1588 mod/admin.php:1614
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/contacts.php:765
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/admin.php:1597
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/contacts.php:768
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/admin.php:1598
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/contacts.php:825
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/admin.php:1599
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/contacts.php:826 mod/search.php:223
+#, php-format
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
-#: mod/admin.php:1600
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/admin.php:1601
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/contacts.php:836 mod/contacts.php:1028
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/admin.php:1602
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/contacts.php:839
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/admin.php:1603
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/contacts.php:885
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:1605
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/contacts.php:895
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:1607 mod/contacts.php:634 mod/contacts.php:834
-#: mod/contacts.php:1012
-msgid "Block"
-msgstr "Sperren"
+#: mod/contacts.php:902
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/admin.php:1608 mod/contacts.php:634 mod/contacts.php:834
-#: mod/contacts.php:1012
-msgid "Unblock"
-msgstr "Entsperren"
+#: mod/contacts.php:936
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/admin.php:1609
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/contacts.php:940
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/admin.php:1610
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/contacts.php:944
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/admin.php:1613
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/contacts.php:1014
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/admin.php:1614
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/contacts.php:1022
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/admin.php:1619
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
+#: mod/contacts.php:1030
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/admin.php:1620
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
+#: mod/contacts.php:1038
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/admin.php:1630
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/directory.php:193 view/theme/vier/theme.php:194
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/admin.php:1631
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/directory.php:195
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/admin.php:1631
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/directory.php:197
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/admin.php:1632
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/directory.php:199
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/admin.php:1675
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: mod/directory.php:206
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/admin.php:1679
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: mod/display.php:468
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: mod/admin.php:1690 mod/admin.php:1942
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/fbrowser.php:136
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/admin.php:1692 mod/admin.php:1944
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/friendica.php:70
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/admin.php:1715 mod/admin.php:1991
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/friendica.php:71
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: mod/admin.php:1723 mod/admin.php:2000
-msgid "Author: "
-msgstr "Autor:"
+#: mod/friendica.php:75
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren."
 
-#: mod/admin.php:1724 mod/admin.php:2001
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/friendica.php:79
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/admin.php:1779
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/friendica.php:79
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/admin.php:1784
-#, php-format
+#: mod/friendica.php:82
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
-
-#: mod/admin.php:1903
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
 
-#: mod/admin.php:1982
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/friendica.php:96
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps:"
 
-#: mod/admin.php:2042
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/friendica.php:110
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/admin.php:2047
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+#: mod/friendica.php:115
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
 
-#: mod/admin.php:2048
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/install.php:107
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/admin.php:2049
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/install.php:113
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/admin.php:2073
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/install.php:117
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/admin.php:2105
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/install.php:123
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/admin.php:2107
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/install.php:128
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: mod/admin.php:2116
-msgid "Clear"
-msgstr "löschen"
+#: mod/install.php:129 mod/install.php:201 mod/install.php:548
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/admin.php:2121
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/install.php:141
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/admin.php:2122
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/install.php:198
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/admin.php:2122
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+#: mod/install.php:203
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/admin.php:2123
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/install.php:222
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/admin.php:2126
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/install.php:223
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
 
-#: mod/admin.php:2127
+#: mod/install.php:224
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
 
-#: mod/admin.php:2258
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/install.php:225
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
 
-#: mod/admin.php:2266
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/install.php:229
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/contacts.php:138
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: mod/install.php:230
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/contacts.php:173 mod/contacts.php:391
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/install.php:231
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/contacts.php:187
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/install.php:231
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
 
-#: mod/contacts.php:220
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/install.php:232
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/contacts.php:412
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/install.php:233 mod/install.php:274
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/contacts.php:412
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/install.php:233 mod/install.php:274
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
 
-#: mod/contacts.php:423
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/install.php:237 mod/install.php:277
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/contacts.php:423
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/install.php:264
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/contacts.php:435
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/install.php:278
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/contacts.php:435
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/install.php:278
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
 
-#: mod/contacts.php:460
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: mod/install.php:318
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: mod/contacts.php:463 mod/contacts.php:830
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/install.php:319
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
 
-#: mod/contacts.php:482
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/install.php:323
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/install.php:323
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/install.php:328
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/contacts.php:528
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: mod/install.php:337
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: mod/contacts.php:548
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: mod/install.php:338
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/contacts.php:555
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/install.php:340
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/contacts.php:555
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/install.php:351
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: mod/contacts.php:557 mod/contacts.php:993
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/install.php:352
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/contacts.php:561
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: mod/install.php:354
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/contacts.php:574
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/install.php:377
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: mod/contacts.php:577
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/install.php:378
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: mod/contacts.php:578
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/install.php:380
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/contacts.php:578
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/install.php:387
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/contacts.php:592 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Verbindung lösen/Nicht mehr folgen"
+#: mod/install.php:388
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/contacts.php:602
-msgid "Contact"
-msgstr "Kontakt"
+#: mod/install.php:389
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/contacts.php:605
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/install.php:390
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
 
-#: mod/contacts.php:606
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
+#: mod/install.php:391
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/contacts.php:607
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/install.php:392
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: mod/contacts.php:608
-msgid "Their personal note"
-msgstr "Die persönliche Mitteilung"
+#: mod/install.php:393
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/contacts.php:610
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/install.php:397 mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/contacts.php:616
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: mod/contacts.php:617
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/contacts.php:618
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: mod/contacts.php:619
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/contacts.php:625
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/install.php:417
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
 
-#: mod/contacts.php:627
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/install.php:421
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
 
-#: mod/contacts.php:629 mod/contacts.php:1003
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: mod/install.php:425
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: mod/contacts.php:635 mod/contacts.php:835 mod/contacts.php:1020
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/install.php:429
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/contacts.php:639
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/install.php:439
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/contacts.php:640
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/install.php:451
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: mod/contacts.php:641
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/install.php:452
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+
+#: mod/install.php:453
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: mod/contacts.php:642
+#: mod/install.php:454
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
 
-#: mod/contacts.php:643
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/install.php:457
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/contacts.php:643
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/install.php:467
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: mod/contacts.php:646
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/install.php:468
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: mod/contacts.php:646
+#: mod/install.php:469
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: mod/contacts.php:664
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/install.php:470
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: mod/contacts.php:667
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/install.php:473
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/contacts.php:713
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/install.php:489
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: mod/contacts.php:716
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/install.php:491
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/contacts.php:724
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/install.php:510
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/contacts.php:729
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/install.php:512
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/contacts.php:732
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/install.php:514
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/contacts.php:738
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/install.php:521
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
 
-#: mod/contacts.php:741
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/install.php:546
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/contacts.php:747
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/install.php:547
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: mod/contacts.php:750
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/network.php:187 mod/search.php:28
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/contacts.php:756
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/network.php:561
+#, php-format
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
 
-#: mod/contacts.php:759
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/network.php:564
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
 
-#: mod/contacts.php:765
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/network.php:684
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: mod/contacts.php:768
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/network.php:688
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/contacts.php:825
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/network.php:893
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/contacts.php:836 mod/contacts.php:1028
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/network.php:896
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/contacts.php:836 mod/contacts.php:1028
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/network.php:901
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/contacts.php:839
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/network.php:904
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/contacts.php:885
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/network.php:915
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/contacts.php:895
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/network.php:923
+msgid "New"
+msgstr "Neue"
 
-#: mod/contacts.php:902
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/network.php:926
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/contacts.php:936
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/network.php:934
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/contacts.php:940
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/network.php:937
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/contacts.php:944
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/network.php:945
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/contacts.php:1014
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/network.php:948
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/contacts.php:1022
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/search.php:96
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
 
-#: mod/contacts.php:1030
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/search.php:120
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
 
-#: mod/contacts.php:1038
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/search.php:121
+msgid "Only one search per minute is permitted for not logged in users."
+msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."
 
-#: mod/fbrowser.php:136
-msgid "Files"
-msgstr "Dateien"
+#: mod/search.php:221
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
 
 #: mod/unfollow.php:33
 msgid "Contact wasn't found or can't be unfollowed."
@@ -8970,6 +8974,30 @@ msgstr "Schriftgröße in Beiträgen"
 msgid "Textareas font size"
 msgstr "Schriftgröße in Eingabefeldern"
 
+#: view/theme/vier/theme.php:144 view/theme/vier/config.php:119
+msgid "Community Profiles"
+msgstr "Community-Profile"
+
+#: view/theme/vier/theme.php:174 view/theme/vier/config.php:123
+msgid "Last users"
+msgstr "Letzte Nutzer"
+
+#: view/theme/vier/theme.php:192 view/theme/vier/config.php:122
+msgid "Find Friends"
+msgstr "Kontakte finden"
+
+#: view/theme/vier/theme.php:193
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
+
+#: view/theme/vier/theme.php:285
+msgid "Quick Start"
+msgstr "Schnell-Start"
+
+#: view/theme/vier/theme.php:385 view/theme/vier/config.php:121
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
+
 #: view/theme/vier/config.php:71
 msgid "Comma separated list of helper forums"
 msgstr "Komma-Separierte Liste der Helfer-Foren"
@@ -8982,34 +9010,10 @@ msgstr "Stil auswählen"
 msgid "Community Pages"
 msgstr "Foren"
 
-#: view/theme/vier/config.php:119 view/theme/vier/theme.php:144
-msgid "Community Profiles"
-msgstr "Community-Profile"
-
 #: view/theme/vier/config.php:120
 msgid "Help or @NewHere ?"
 msgstr "Hilfe oder @NewHere"
 
-#: view/theme/vier/config.php:121 view/theme/vier/theme.php:385
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
-
-#: view/theme/vier/config.php:122 view/theme/vier/theme.php:192
-msgid "Find Friends"
-msgstr "Kontakte finden"
-
-#: view/theme/vier/config.php:123 view/theme/vier/theme.php:174
-msgid "Last users"
-msgstr "Letzte Nutzer"
-
-#: view/theme/vier/theme.php:193
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
-
-#: view/theme/vier/theme.php:285
-msgid "Quick Start"
-msgstr "Schnell-Start"
-
 #: src/App.php:523
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
@@ -9018,47 +9022,47 @@ msgstr "Diesen Beitrag löschen?"
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:733
+#: boot.php:738
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:845
+#: boot.php:850
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:873
+#: boot.php:878
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:874
+#: boot.php:879
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:877
+#: boot.php:882
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:883
+#: boot.php:888
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:886
+#: boot.php:891
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:887
+#: boot.php:892
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:889
+#: boot.php:894
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:890
+#: boot.php:895
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
 
-#: index.php:437
+#: index.php:439
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
index 4757a35d58dbad12c2db4d6273a564b29f3b8ff2..4e863701fff830d7406c3edb2fddffdbba592b3e 100644 (file)
@@ -353,13 +353,6 @@ $a->strings["Not Attending"] = array(
        0 => "Nicht teilnehmend ",
        1 => "Nicht teilnehmend",
 );
-$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
-$a->strings[": Database update"] = ": Datenbank Update";
-$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
 $a->strings["(no subject)"] = "(kein Betreff)";
 $a->strings["noreply"] = "noreply";
 $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
@@ -532,6 +525,78 @@ $a->strings["Contacts"] = "Kontakte";
 $a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
 $a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
 $a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
+$a->strings["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["default"] = "Standard";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
+$a->strings[": Database update"] = ": Datenbank Update";
+$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Blocked domain"] = "Blockierte Daimain";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
 $a->strings["Nothing new here"] = "Keine Neuigkeiten";
 $a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
 $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
@@ -589,15 +654,11 @@ $a->strings["Admin"] = "Administration";
 $a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
 $a->strings["Navigation"] = "Navigation";
 $a->strings["Site map"] = "Sitemap";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["%s is now following %s."] = "%s folgt nun %s";
+$a->strings["following"] = "folgen";
+$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["first"] = "erste";
@@ -668,67 +729,6 @@ $a->strings["%d contact not imported"] = array(
        1 => "%d Kontakte nicht importiert",
 );
 $a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["default"] = "Standard";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
-$a->strings["Registration at %s"] = "Registrierung als %s";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Blocked domain"] = "Blockierte Daimain";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["%s is now following %s."] = "%s folgt nun %s";
-$a->strings["following"] = "folgen";
-$a->strings["%s stopped following %s."] = "%s hat aufgehört %s zu folgen";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
 $a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
 $a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
 $a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
@@ -952,11 +952,6 @@ $a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"
 $a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
 $a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
 $a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Results for:"] = "Ergebnisse für:";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
 $a->strings["People Search - %s"] = "Personensuche - %s";
 $a->strings["Forum Search - %s"] = "Forensuche - %s";
 $a->strings["No matches"] = "Keine Übereinstimmungen";
@@ -984,16 +979,6 @@ $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspo
 $a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
 $a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden.";
 $a->strings["Profile URL"] = "Profil URL";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
-$a->strings["Reason for the block"] = "Begründung für die Blockierung";
 $a->strings["Group created."] = "Gruppe erstellt.";
 $a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
 $a->strings["Group not found."] = "Gruppe nicht gefunden.";
@@ -1013,79 +998,6 @@ $a->strings["No profile"] = "Kein Profil";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["System Language:"] = "Systemsprache:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["XML PHP module"] = "XML PHP Modul";
-$a->strings["iconv module"] = "iconv module";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
 $a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
 $a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
 $a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
@@ -1174,25 +1086,6 @@ $a->strings["%d message"] = array(
 );
 $a->strings["Mood"] = "Stimmung";
 $a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
-);
-$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
 $a->strings["Invalid request identifier."] = "Invalid request identifier.";
 $a->strings["Discard"] = "Verwerfen";
 $a->strings["Ignore"] = "Ignorieren";
@@ -1317,7 +1210,6 @@ $a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die S
 $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
 $a->strings["Add"] = "Hinzufügen";
 $a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
 $a->strings["Recent Photos"] = "Neueste Fotos";
 $a->strings["Upload New Photos"] = "Neue Fotos hochladen";
 $a->strings["everybody"] = "jeder";
@@ -1438,11 +1330,6 @@ $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
-$a->strings["Too Many Requests"] = "Zu viele Abfragen";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
-$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
-$a->strings["Results for: %s"] = "Ergebnisse für: %s";
 $a->strings["Account"] = "Nutzerkonto";
 $a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display"] = "Anzeige";
@@ -1648,6 +1535,7 @@ $a->strings["Plugin Features"] = "Plugin Features";
 $a->strings["diagnostics"] = "Diagnose";
 $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["The blocked domain"] = "Die blockierte Domain";
+$a->strings["Reason for the block"] = "Begründung für die Blockierung";
 $a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
 $a->strings["Delete domain"] = "Domain löschen";
 $a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen";
@@ -1718,6 +1606,7 @@ $a->strings["Open"] = "Offen";
 $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
 $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["Republish users to directory"] = "Nutzer erneut im globalen Verzeichnis veröffentlichen.";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
@@ -2002,6 +1891,7 @@ $a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"
 $a->strings["Hidden"] = "Verborgen";
 $a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
 $a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Results for: %s"] = "Ergebnisse für: %s";
 $a->strings["Archive"] = "Archivieren";
 $a->strings["Unarchive"] = "Aus Archiv zurückholen";
 $a->strings["Batch Actions"] = "Stapelverarbeitung";
@@ -2015,7 +1905,118 @@ $a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
 $a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
 $a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
 $a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Results for:"] = "Ergebnisse für:";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
 $a->strings["Files"] = "Dateien";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["System Language:"] = "Systemsprache:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["XML PHP module"] = "XML PHP Modul";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
+);
+$a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
+$a->strings["Too Many Requests"] = "Zu viele Abfragen";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
+$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
 $a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
 $a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
 $a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
@@ -2054,16 +2055,16 @@ $a->strings["Center"] = "Mitte";
 $a->strings["Color scheme"] = "Farbschema";
 $a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
 $a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["Community Pages"] = "Foren";
 $a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Kontakte finden";
 $a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Find Friends"] = "Kontakte finden";
 $a->strings["Local Directory"] = "Lokales Verzeichnis";
 $a->strings["Quick Start"] = "Schnell-Start";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
+$a->strings["Set style"] = "Stil auswählen";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
 $a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
 $a->strings["show fewer"] = "weniger anzeigen";
 $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
index a3d48d9ffb8db46bb8a24622ab910db00375fe39..987a64eef0d16d8300498b36eb6801964dd273db 100644 (file)
@@ -1130,6 +1130,9 @@ aside .vcard #wallmessage-link {
     padding-right: 20px;
     margin-left: -14px;
 }
+#nav-short-info .contact-photo-wrapper.media-left {
+    float: left;
+}
 #vcard-short-photo-wrapper img,
 #nav-short-info .contact-wrapper img {
     height: 34px;