]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'develop' into improvement/frio-action-links-to-buttons
authorHypolite Petovan <ben.lort@gmail.com>
Tue, 14 Mar 2017 14:45:17 +0000 (10:45 -0400)
committerHypolite Petovan <ben.lort@gmail.com>
Tue, 14 Mar 2017 14:45:17 +0000 (10:45 -0400)
# Conflicts:
# view/theme/frio/templates/search_item.tpl
# view/theme/frio/templates/wall_thread.tpl

55 files changed:
CHANGELOG
VERSION [new file with mode: 0644]
boot.php
database.sql
doc/Developers-Intro.md
include/Contact.php
include/ParseUrl.php
include/Probe.php
include/api.php
include/bb2diaspora.php
include/bbcode.php
include/conversation.php
include/dbstructure.php
include/delivery.php
include/dfrn.php
include/discover_poco.php
include/feed.php
include/like.php
include/network.php
include/onepoll.php
include/poller.php
include/queue.php
include/socgraph.php
include/text.php
mod/admin.php
mod/community.php
mod/network.php
mod/nodeinfo.php
mod/notifications.php
mod/profile.php
mod/share.php
object/Item.php
update.php
util/messages.po
view/lang/de/messages.po
view/lang/de/strings.php
view/templates/admin_site.tpl
view/templates/netfriend.tpl
view/templates/paginate.tpl
view/theme/duepuntozero/style.css
view/theme/frio/css/style.css
view/theme/frio/js/mod_display.js
view/theme/frio/js/textedit.js
view/theme/frio/js/theme.js
view/theme/frio/php/Colors.php [deleted file]
view/theme/frio/templates/paginate.tpl [new file with mode: 0644]
view/theme/frio/templates/search_item.tpl
view/theme/frio/templates/wall_thread.tpl
view/theme/frost-mobile/style.css
view/theme/frost/style.css
view/theme/quattro/green/style.css
view/theme/quattro/lilac/style.css
view/theme/quattro/quattro.less
view/theme/smoothly/style.css
view/theme/vier/style.css

index 096d27f37c66198bd83790d51238e0c962098fc4..a3a974eb6210f13cc23f7b67566f561475ef1247 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-Version 3.5.1
+Version 3.5.1 (2017-03-12)
   Friendica Core:
     Updates to the translations (BG, CA, CS, DE, EO, ES, FR, IS, IT, NL, PL, PT-BR, RU, SV) [translation teams]
     Fix for a potential XSS vector [heluecht, thanks to Vít Šesták 'v6ak' for reporting the problem]
@@ -33,13 +33,13 @@ Version 3.5.1
     ping now works with JSON as well [Hypolite]
     On pending registrations, an email is now send to inform the user about it [tobiasd]
     On systems where the registration needs approval, a note for the admin can now be written [tobiasd]
-    Theme developers can now announce if their theme does support the RichText editor or not [heluecht, rabuzarus]
     Meta Information for HTML descriptions is now limited to 160 character [rabuzarus]
     Removed very old deprecated themes from the repository [silke]
     Marked frost and frost mobile as deprecated [silke]
     When creating new postings in the UI, focus is automatically put into the Title field [Hypolite]
     We are now shipping config files for "tx" (the Transifex client) and the "EditorConfig" addon for many common editors [fabrixxm, tobiasd]
     The TinyMCE richtext editor was removed [Hypolite]
+    We defined a coding style, PSR-2 with some adjustments
     Various bugfixes
 
   Friendica Addons:
@@ -58,11 +58,12 @@ Version 3.5.1
     Twitter-bridge now supports quotes and long posts when importing tweets [heluecht]
 
   Closed Issues
-    1019, 1163, 1612, 1613, 2177, 2252, 2260, 2403, 2991, 2614, 2751,
-    2752, 2772, 2791, 2800, 2804, 2813, 2814, 2816, 2817, 2823, 2850, 
-    2858, 2865, 2892, 2894, 2895, 2907, 2908, 2914, 2015, 2926, 2948,
-    2955, 2958, 2963, 2964, 2968, 2987, 2993, 3020, 3052, 3062, 3066,
-    3091, 3108, 3116, 3117, 3118, 3126, 3130, 3135, 3155, 3163
+    1019, 1163, 1612, 1613, 2103, 2177, 2252, 2260, 2403, 2991, 2614, 
+    2751, 2752, 2772, 2791, 2800, 2804, 2813, 2814, 2816, 2817, 2823, 
+    2850, 2858, 2865, 2892, 2894, 2895, 2907, 2908, 2914, 2015, 2926,
+    2948, 2955, 2958, 2963, 2964, 2968, 2987, 2993, 3020, 3052, 3062,
+    3066, 3091, 3108, 3113, 3116, 3117, 3118, 3126, 3130, 3135, 3155,
+    3160, 3163, 3187, 3196
 
 Version 3.5 (2016-09-13)
   Friendica Core:
diff --git a/VERSION b/VERSION
new file mode 100644 (file)
index 0000000..ded27b0
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+3.5.2-dev
index b8e92670708836c6d5b9c376185120031e914161..56279f4ec8a0dd2af84ff3bf15cb18576ad36b15 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -38,9 +38,9 @@ require_once('include/dbstructure.php');
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
-define ( 'FRIENDICA_VERSION',      '3.5.1-dev' );
+define ( 'FRIENDICA_VERSION',      '3.5.2-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1214      );
+define ( 'DB_UPDATE_VERSION',      1215      );
 
 /**
  * @brief Constant with a HTML line break.
@@ -1889,11 +1889,35 @@ function goaway($s) {
  * @return int|bool user id or false
  */
 function local_user() {
-       if((x($_SESSION,'authenticated')) && (x($_SESSION,'uid')))
+       if (x($_SESSION, 'authenticated') && x($_SESSION, 'uid')) {
                return intval($_SESSION['uid']);
+       }
        return false;
 }
 
+/**
+ * @brief Returns the public contact id of logged in user or false.
+ *
+ * @return int|bool public contact id or false
+ */
+function public_contact() {
+       static $public_contact_id = false;
+
+       if (!$public_contact_id && x($_SESSION, 'authenticated')) {
+               if (x($_SESSION, 'my_address')) {
+                       // Local user
+                       $public_contact_id = intval(get_contact($_SESSION['my_address'], 0));
+               } else if (x($_SESSION, 'visitor_home')) {
+                       // Remote user
+                       $public_contact_id = intval(get_contact($_SESSION['visitor_home'], 0));
+               }
+       } else if (!x($_SESSION, 'authenticated')) {
+               $public_contact_id = false;
+       }
+
+       return $public_contact_id;
+}
+
 /**
  * @brief Returns contact id of authenticated site visitor or false
  *
index 64d8d9f7d0cd605d3e5cc69a164241ca30e24b8b..b133489e4e3e6b8cf224b045914d5f1fdbe297c7 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1213
+-- Friendica 3.5.1-rc (Asparagus)
+-- DB_UPDATE_VERSION 1215
 -- ------------------------------------------
 
 
@@ -532,6 +532,7 @@ CREATE TABLE IF NOT EXISTS `item` (
         INDEX `parent-uri` (`parent-uri`),
         INDEX `extid` (`extid`),
         INDEX `uid_id` (`uid`,`id`),
+        INDEX `uid_contactid_id` (`uid`,`contact-id`,`id`),
         INDEX `uid_created` (`uid`,`created`),
         INDEX `uid_unseen_contactid` (`uid`,`unseen`,`contact-id`),
         INDEX `uid_network_received` (`uid`,`network`,`received`),
@@ -1016,7 +1017,8 @@ CREATE TABLE IF NOT EXISTS `thread` (
         INDEX `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
         INDEX `uid_contactid_created` (`uid`,`contact-id`,`created`),
         INDEX `uid_created` (`uid`,`created`),
-        INDEX `uid_commented` (`uid`,`commented`)
+        INDEX `uid_commented` (`uid`,`commented`),
+        INDEX `uid_wall_created` (`uid`,`wall`,`created`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
index 9cc5301631e8ee9c23949623962818eadf0a954a..61b300b0cc2f5c876f53e6dd51d7b7b613bcfabd 100644 (file)
@@ -61,6 +61,8 @@ Here's a few primers if you are new to Friendica or to the PSR-2 coding standard
 Don't worry, you don't have to know by heart the PSR-2 coding standards to start contributing to Friendica.
 There are a few tools you can use to check or fix your files before you commit.
 
+For documentation we use the standard of *one sentence per line* for the `md` files in the `/doc` and `/doc/$lng` subdirectories.
+
 ####Check with [PHP Code Sniffer](https://github.com/squizlabs/PHP_CodeSniffer)
 
 This tool checks your files against a variety of coding standards, including PSR-2, and ouputs a report of all the standard violations.
index 2aab828f8aaf2d8cc169251f05f2af7cb6b722b3..9fd61f8d5e959aba3891e7de2dc0d8395eb91d1c 100644 (file)
@@ -1,7 +1,5 @@
 <?php
 
-require_once('include/Probe.php');
-
 // Included here for completeness, but this is a very dangerous operation.
 // It is the caller's responsibility to confirm the requestor's intent and
 // authorisation to do this.
@@ -355,6 +353,7 @@ function get_contact_details_by_addr($addr, $uid = -1) {
                                dbesc($addr));
 
        if (!dbm::is_result($r)) {
+               require_once('include/Probe.php');
                $data = Probe::uri($addr);
 
                $profile = get_contact_details_by_url($data['url'], $uid);
@@ -508,72 +507,96 @@ function contacts_not_grouped($uid,$start = 0,$count = 0) {
 /**
  * @brief Fetch the contact id for a given url and user
  *
+ * First lookup in the contact table to find a record matching either `url`, `nurl`,
+ * `addr` or `alias`.
+ *
+ * If there's no record and we aren't looking for a public contact, we quit.
+ * If there's one, we check that it isn't time to update the picture else we
+ * directly return the found contact id.
+ *
+ * Second, we probe the provided $url wether it's http://server.tld/profile or
+ * nick@server.tld. We quit if we can't get any info back.
+ *
+ * Third, we create the contact record if it doesn't exist
+ *
+ * Fourth, we update the existing record with the new data (avatar, alias, nick)
+ * if there's any updates
+ *
  * @param string $url Contact URL
- * @param integer $uid The user id for the contact
+ * @param integer $uid The user id for the contact (0 = public contact)
  * @param boolean $no_update Don't update the contact
  *
  * @return integer Contact ID
  */
 function get_contact($url, $uid = 0, $no_update = false) {
-       require_once("include/Scrape.php");
-
        logger("Get contact data for url ".$url." and user ".$uid." - ".App::callstack(), LOGGER_DEBUG);;
 
        $data = array();
-       $contactid = 0;
-
-       // is it an address in the format user@server.tld?
-       /// @todo use gcontact and/or the addr field for a lookup
-       if (!strstr($url, "http") OR strstr($url, "@")) {
-               $data = probe_url($url);
-               $url = $data["url"];
-               if ($url == "")
-                       return 0;
-       }
+       $contact_id = 0;
 
-       $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
+       // We first try the nurl (http://server.tld/nick), most common case
+       $contacts = q("SELECT `id`, `avatar-date` FROM `contact`
+                                       WHERE `nurl` = '%s'
+                                       AND `uid` = %d",
                        dbesc(normalise_link($url)),
                        intval($uid));
 
-       if (!$contact)
-               $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d ORDER BY `id` LIMIT 1",
-                               dbesc($url),
-                               dbesc(normalise_link($url)),
-                               intval($uid));
 
-       if ($contact) {
-               $contactid = $contact[0]["id"];
+       // Then the addr (nick@server.tld)
+       if (! dbm::is_result($contacts)) {
+               $contacts = q("SELECT `id`, `avatar-date` FROM `contact`
+                                       WHERE `addr` = '%s'
+                                       AND `uid` = %d",
+                       dbesc($url),
+                       intval($uid));
+       }
+
+       // Then the alias (which could be anything)
+       if (! dbm::is_result($contacts)) {
+               $contacts = q("SELECT `id`, `avatar-date` FROM `contact`
+                                       WHERE `alias` IN ('%s', '%s')
+                                       AND `uid` = %d",
+                       dbesc($url),
+                       dbesc(normalise_link($url)),
+                       intval($uid));
+       }
+
+       if (dbm::is_result($contacts)) {
+               $contact_id = $contacts[0]["id"];
 
                // Update the contact every 7 days
-               $update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days'));
-               //$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
+               $update_photo = ($contacts[0]['avatar-date'] < datetime_convert('','','now -7 days'));
 
                if (!$update_photo OR $no_update) {
-                       return($contactid);
+                       return $contact_id;
                }
-       } elseif ($uid != 0)
+       } elseif ($uid != 0) {
+               // Non-existing user-specific contact, exiting
                return 0;
+       }
 
-       if (!count($data))
-               $data = probe_url($url);
+       require_once('include/Probe.php');
+       $data = Probe::uri($url);
 
-       // Does this address belongs to a valid network?
-       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
-               if ($uid != 0)
+       // Last try in gcontact for unsupported networks
+       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA, NETWORK_PUMPIO))) {
+               if ($uid != 0) {
                        return 0;
+               }
 
                // Get data from the gcontact table
-               $r = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
+               $gcontacts = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
                         dbesc(normalise_link($url)));
-               if (!$r)
+               if (!$gcontacts) {
                        return 0;
+               }
 
-               $data = $r[0];
+               $data = $gcontacts[0];
        }
 
        $url = $data["url"];
 
-       if ($contactid == 0) {
+       if (!$contact_id) {
                q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
                                        `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
                                        `batch`, `request`, `confirm`, `poco`, `name-date`, `uri-date`,
@@ -602,45 +625,48 @@ function get_contact($url, $uid = 0, $no_update = false) {
                        dbesc(datetime_convert())
                );
 
-               $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
+               $contacts = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
                                dbesc(normalise_link($data["url"])),
                                intval($uid));
-               if (!$contact)
+               if (!dbm::is_result($contacts)) {
                        return 0;
+               }
 
-               $contactid = $contact[0]["id"];
+               $contact_id = $contacts[0]["id"];
 
                // Update the newly created contact from data in the gcontact table
-               $r = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
+               $gcontacts = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
                         dbesc(normalise_link($data["url"])));
-               if ($r) {
-                       logger("Update contact ".$data["url"]);
+               if (dbm::is_result($gcontacts)) {
+                       logger("Update contact " . $data["url"] . ' from gcontact');
                        q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d",
-                               dbesc($r["location"]), dbesc($r["about"]), dbesc($r["keywords"]),
-                               dbesc($r["gender"]), intval($contactid));
+                               dbesc($gcontacts[0]["location"]), dbesc($gcontacts[0]["about"]), dbesc($gcontacts[0]["keywords"]),
+                               dbesc($gcontacts[0]["gender"]), intval($contact_id));
                }
        }
 
-       if ((count($contact) > 1) AND ($uid == 0) AND ($contactid != 0) AND ($url != ""))
+       if (count($contacts) > 1 AND $uid == 0 AND $contact_id != 0 AND $url != "") {
                q("DELETE FROM `contact` WHERE `nurl` = '%s' AND `id` != %d AND NOT `self`",
                        dbesc(normalise_link($url)),
-                       intval($contactid));
+                       intval($contact_id));
+       }
 
-       require_once("Photo.php");
+       require_once "Photo.php";
 
-       update_contact_avatar($data["photo"],$uid,$contactid);
+       update_contact_avatar($data["photo"], $uid, $contact_id);
 
-       $r = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact`  WHERE `id` = %d", intval($contactid));
+       $contacts = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact` WHERE `id` = %d", intval($contact_id));
 
        // This condition should always be true
-       if (!dbm::is_result($r))
-               return $contactid;
+       if (!dbm::is_result($contacts)) {
+               return $contact_id;
+       }
 
        // Only update if there had something been changed
-       if (($data["addr"] != $r[0]["addr"]) OR
-               ($data["alias"] != $r[0]["alias"]) OR
-               ($data["name"] != $r[0]["name"]) OR
-               ($data["nick"] != $r[0]["nick"]))
+       if ($data["addr"] != $contacts[0]["addr"] OR
+               $data["alias"] != $contacts[0]["alias"] OR
+               $data["name"] != $contacts[0]["name"] OR
+               $data["nick"] != $contacts[0]["nick"]) {
                q("UPDATE `contact` SET `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
                        `name-date` = '%s', `uri-date` = '%s' WHERE `id` = %d",
                        dbesc($data["addr"]),
@@ -649,10 +675,11 @@ function get_contact($url, $uid = 0, $no_update = false) {
                        dbesc($data["nick"]),
                        dbesc(datetime_convert()),
                        dbesc(datetime_convert()),
-                       intval($contactid)
+                       intval($contact_id)
                );
+       }
 
-       return $contactid;
+       return $contact_id;
 }
 
 /**
@@ -675,15 +702,6 @@ function posts_from_gcontact(App $a, $gcontact_id) {
        else
                $sql = "`item`.`uid` = %d";
 
-       if(get_config('system', 'old_pager')) {
-               $r = q("SELECT COUNT(*) AS `total` FROM `item`
-                       WHERE `gcontact-id` = %d and $sql",
-                       intval($gcontact_id),
-                       intval(local_user()));
-
-               $a->set_pager_total($r[0]['total']);
-       }
-
        $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
                        `author-name` AS `name`, `owner-avatar` AS `photo`,
                        `owner-link` AS `url`, `owner-avatar` AS `thumb`
@@ -697,13 +715,9 @@ function posts_from_gcontact(App $a, $gcontact_id) {
                intval($a->pager['itemspage'])
        );
 
-       $o = conversation($a,$r,'community',false);
+       $o = conversation($a, $r, 'community', false);
 
-       if(!get_config('system', 'old_pager')) {
-               $o .= alt_pager($a,count($r));
-       } else {
-               $o .= paginate($a);
-       }
+       $o .= alt_pager($a, count($r));
 
        return $o;
 }
@@ -736,15 +750,6 @@ function posts_from_contact_url(App $a, $contact_url) {
 
        $author_id = intval($r[0]["author-id"]);
 
-       if (get_config('system', 'old_pager')) {
-               $r = q("SELECT COUNT(*) AS `total` FROM `item`
-                       WHERE `author-id` = %d and $sql",
-                       intval($author_id),
-                       intval(local_user()));
-
-               $a->set_pager_total($r[0]['total']);
-       }
-
        $r = q(item_query()." AND `item`.`author-id` = %d AND ".$sql.
                " ORDER BY `item`.`created` DESC LIMIT %d, %d",
                intval($author_id),
@@ -753,13 +758,9 @@ function posts_from_contact_url(App $a, $contact_url) {
                intval($a->pager['itemspage'])
        );
 
-       $o = conversation($a,$r,'community',false);
+       $o = conversation($a, $r, 'community', false);
 
-       if (!get_config('system', 'old_pager')) {
-               $o .= alt_pager($a,count($r));
-       } else {
-               $o .= paginate($a);
-       }
+       $o .= alt_pager($a, count($r));
 
        return $o;
 }
index 3a2fe9d53c6b818b39613d7d4f769bd34691ab6e..e9ac527a1ad455fe8c9c29b8ba3ee1b987637b2c 100644 (file)
@@ -146,7 +146,9 @@ class ParseUrl {
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
                curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
-               curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
+               if ($check_cert) {
+                       @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
+               }
 
                $header = curl_exec($ch);
                $curl_info = @curl_getinfo($ch);
index 0b3c66412965df6fcd2bd2131863a7875baf0e16..1b6feb107f4d32cf260da732dac770b64247790d 100644 (file)
@@ -60,11 +60,20 @@ class Probe {
                $xrd_timeout = Config::get('system','xrd_timeout', 20);
                $redirects = 0;
 
-               $xml = fetch_url($ssl_url, false, $redirects, $xrd_timeout, "application/xrd+xml");
+               $ret = z_fetch_url($ssl_url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return false;
+               }
+               $xml = $ret['body'];
+
                $xrd = parse_xml_string($xml, false);
 
                if (!is_object($xrd)) {
-                       $xml = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
+                       $ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
+                       if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                               return false;
+                       }
+                       $xml = $ret['body'];
                        $xrd = parse_xml_string($xml, false);
                }
                if (!is_object($xrd))
@@ -430,7 +439,12 @@ class Probe {
                $xrd_timeout = Config::get('system','xrd_timeout', 20);
                $redirects = 0;
 
-               $data = fetch_url($url, false, $redirects, $xrd_timeout, "application/xrd+xml");
+               $ret = z_fetch_url($url, false, $redirects, array('timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml'));
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return false;
+               }
+               $data = $ret['body'];
+
                $xrd = parse_xml_string($data, false);
 
                if (!is_object($xrd)) {
@@ -482,9 +496,14 @@ class Probe {
         * @return array noscrape data
         */
        private function poll_noscrape($noscrape, $data) {
-               $content = fetch_url($noscrape);
-               if (!$content)
+               $ret = z_fetch_url($noscrape);
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return false;
+               }
+               $content = $ret['body'];
+               if (!$content) {
                        return false;
+               }
 
                $json = json_decode($content, true);
                if (!is_array($json))
@@ -663,10 +682,14 @@ class Probe {
         * @return array hcard data
         */
        private function poll_hcard($hcard, $data, $dfrn = false) {
-
-               $content = fetch_url($hcard);
-               if (!$content)
+               $ret = z_fetch_url($hcard);
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
+               }
+               $content = $ret['body'];
+               if (!$content) {
+                       return false;
+               }
 
                $doc = new DOMDocument();
                if (!@$doc->loadHTML($content))
@@ -859,8 +882,13 @@ class Probe {
                                                $pubkey = substr($pubkey, strpos($pubkey, ',') + 1);
                                        else
                                                $pubkey = substr($pubkey, 5);
-                               } elseif (normalise_link($pubkey) == 'http://')
-                                       $pubkey = fetch_url($pubkey);
+                               } elseif (normalise_link($pubkey) == 'http://') {
+                                       $ret = z_fetch_url($pubkey);
+                                       if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                                               return false;
+                                       }
+                                       $pubkey = $ret['body'];
+                               }
 
                                $key = explode(".", $pubkey);
 
@@ -880,7 +908,11 @@ class Probe {
                        return false;
 
                // Fetch all additional data from the feed
-               $feed = fetch_url($data["poll"]);
+               $ret = z_fetch_url($data["poll"]);
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return false;
+               }
+               $feed = $ret['body'];
                $feed_data = feed_import($feed,$dummy1,$dummy2, $dummy3, true);
                if (!$feed_data)
                        return false;
@@ -1035,7 +1067,11 @@ class Probe {
         * @return array feed data
         */
        private function feed($url, $probe = true) {
-               $feed = fetch_url($url);
+               $ret = z_fetch_url($url);
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return false;
+               }
+               $feed = $ret['body'];
                $feed_data = feed_import($feed, $dummy1, $dummy2, $dummy3, true);
 
                if (!$feed_data) {
index d7fa1d587547f399da085f5861a1f6942d12454e..701e527cc8236ad86b43aaf04b0d38f500f7f5b4 100644 (file)
@@ -1686,20 +1686,16 @@ use \Friendica\Core\Config;
                );
 
                if ($r[0]['body'] != "") {
-                       if (!intval(get_config('system','old_share'))) {
-                               if (strpos($r[0]['body'], "[/share]") !== false) {
-                                       $pos = strpos($r[0]['body'], "[share");
-                                       $post = substr($r[0]['body'], $pos);
-                               } else {
-                                       $post = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
-
-                                       $post .= $r[0]['body'];
-                                       $post .= "[/share]";
-                               }
-                               $_REQUEST['body'] = $post;
-                       } else
-                               $_REQUEST['body'] = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8')."[url=".$r[0]['reply_url']."]".$r[0]['reply_author']."[/url] \n".$r[0]['body'];
+                       if (strpos($r[0]['body'], "[/share]") !== false) {
+                               $pos = strpos($r[0]['body'], "[share");
+                               $post = substr($r[0]['body'], $pos);
+                       } else {
+                               $post = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
 
+                               $post .= $r[0]['body'];
+                               $post .= "[/share]";
+                       }
+                       $_REQUEST['body'] = $post;
                        $_REQUEST['profile_uid'] = api_user();
                        $_REQUEST['type'] = 'wall';
                        $_REQUEST['api_source'] = true;
index f18a0f3c276399cea0910a0e80df320577b85b03..e5099992366558b722c8c27fb635713bc24a4f6c 100644 (file)
@@ -39,9 +39,9 @@ function diaspora2bb($s) {
        $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
 
        // Handles single newlines
-       $s = str_replace("\r", '<br>', $s);
-
+       $s = str_replace("\r\n", "\n", $s);
        $s = str_replace("\n", " \n", $s);
+       $s = str_replace("\r", " \n", $s);
 
        // Replace lonely stars in lines not starting with it with literal stars
        $s = preg_replace('/^([^\*]+)\*([^\*]*)$/im', '$1\*$2', $s);
index 74dde2fdf431ee0f488ab11804a1698058719255..489ef8b2e38e0b7680a701538dad49533305663e 100644 (file)
@@ -1163,8 +1163,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        // fix any escaped ampersands that may have been converted into links
        $Text = preg_replace('/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism', '<$1$2=$3&$4>', $Text);
 
-       // sanitizes src attributes (only relative redir URIs or http URLs)
-       $Text = preg_replace('#<([^>]*?)(src)="(?!http|redir)(.*?)"(.*?)>#ism', '<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
+       // sanitizes src attributes (http and redir URLs for displaying in a web page, cid used for inline images in emails)
+       static $allowed_src_protocols = array('http', 'redir', 'cid');
+       $Text = preg_replace('#<([^>]*?)(src)="(?!' . implode('|', $allowed_src_protocols) . ')(.*?)"(.*?)>#ism',
+                            '<$1$2=""$4 class="invalid-src" title="' . t('Invalid source protocol') . '">', $Text);
 
        // sanitize href attributes (only whitelisted protocols URLs)
        // default value for backward compatibility
index a1d086cb9d7c41f772b1d4e2797532d63c523866..93c42cd7b183eed4d6003feaf53ae934f99b0229 100644 (file)
@@ -416,8 +416,8 @@ These Fields are not added below (yet). They are here to for bug search.
 `item`.`shadow`,
 */
 
-       return "`item`.`author-link`, `item`.`author-name`, `item`.`author-avatar`,
-               `item`.`owner-link`, `item`.`owner-name`, `item`.`owner-avatar`,
+       return "`item`.`author-id`, `item`.`author-link`, `item`.`author-name`, `item`.`author-avatar`,
+               `item`.`owner-id`, `item`.`owner-link`, `item`.`owner-name`, `item`.`owner-avatar`,
                `item`.`contact-id`, `item`.`uid`, `item`.`id`, `item`.`parent`,
                `item`.`uri`, `item`.`thr-parent`, `item`.`parent-uri`,
                `item`.`commented`, `item`.`created`, `item`.`edited`,
@@ -1066,8 +1066,9 @@ function builtin_activity_puller($item, &$conv_responses) {
                        else
                                $conv_responses[$mode][$item['thr-parent']] ++;
 
-                       if((local_user()) && (local_user() == $item['uid']) && ($item['self']))
+                       if (public_contact() == $item['author-id']) {
                                $conv_responses[$mode][$item['thr-parent'] . '-self'] = 1;
+                       }
 
                        $conv_responses[$mode][$item['thr-parent'] . '-l'][] = $url;
 
index f8d084437b16ed18342855b693a3dcc15573a585..4ad54e6ba2485ba5b53afb2a77c1a2868b66f09c 100644 (file)
@@ -242,7 +242,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                                if (!isset($database[$name]["fields"][$fieldname])) {
                                        $sql2=db_add_table_field($fieldname, $parameters);
                                        if ($sql3 == "") {
-                                               $sql3 = "ALTER TABLE `".$temp_name."` ".$sql2;
+                                               $sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
                                        } else {
                                                $sql3 .= ", ".$sql2;
                                        }
@@ -253,7 +253,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                                        if ($current_field_definition != $new_field_definition) {
                                                $sql2=db_modify_table_field($fieldname, $parameters);
                                                if ($sql3 == "") {
-                                                       $sql3 = "ALTER TABLE `".$temp_name."` ".$sql2;
+                                                       $sql3 = "ALTER" . $ignore . " TABLE `".$temp_name."` ".$sql2;
                                                } else {
                                                        $sql3 .= ", ".$sql2;
                                                }
@@ -1526,6 +1526,7 @@ function db_definition($charset) {
                                        "uid_contactid_created" => array("uid","contact-id","created"),
                                        "uid_created" => array("uid","created"),
                                        "uid_commented" => array("uid","commented"),
+                                       "uid_wall_created" => array("uid","wall","created"),
                                        )
                        );
        $database["tokens"] = array(
index 5000a1edb908a77e9fbcc6053cbb8921c40ba4c2..8ccb19cedc187842e156d4efb919af46ead5cfae 100644 (file)
@@ -398,7 +398,7 @@ function delivery_run(&$argv, &$argc){
 
                                logger('notifier: dfrn_delivery to '.$contact["url"].' with guid '.$target_item["guid"].' returns '.$deliver_status);
 
-                               if ($deliver_status == (-1)) {
+                               if ($deliver_status < 0) {
                                        logger('notifier: delivery failed: queuing message');
                                        add_to_queue($contact['id'],NETWORK_DFRN,$atom);
 
index 702fbb15fe0f31a19c5eb831f4a0cb8d91b17f03..39372aef14e603d3d3486c9d8d15a83a9d2f14a4 100644 (file)
@@ -391,7 +391,7 @@ class dfrn {
         *
         * @return object XML root object
         */
-       private function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
+       private static function add_header($doc, $owner, $authorelement, $alternatelink = "", $public = false) {
 
                if ($alternatelink == "")
                        $alternatelink = $owner['url'];
@@ -462,7 +462,7 @@ class dfrn {
         *
         * @return object XML author object
         */
-       private function add_author($doc, $owner, $authorelement, $public) {
+       private static function add_author($doc, $owner, $authorelement, $public) {
 
                // Is the profile hidden or shouldn't be published in the net? Then add the "hide" element
                $r = q("SELECT `id` FROM `profile` INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
@@ -591,7 +591,7 @@ class dfrn {
         *
         * @return object XML author object
         */
-       private function add_entry_author($doc, $element, $contact_url, $item) {
+       private static function add_entry_author($doc, $element, $contact_url, $item) {
 
                $contact = get_contact_details_by_url($contact_url, $item["uid"]);
 
@@ -631,7 +631,7 @@ class dfrn {
         *
         * @return object XML activity object
         */
-       private function create_activity($doc, $element, $activity) {
+       private static function create_activity($doc, $element, $activity) {
 
                if($activity) {
                        $entry = $doc->createElement($element);
@@ -685,7 +685,7 @@ class dfrn {
         *
         * @return object XML attachment object
         */
-       private function get_attachment($doc, $root, $item) {
+       private static function get_attachment($doc, $root, $item) {
                $arr = explode('[/attach],',$item['attach']);
                if(count($arr)) {
                        foreach($arr as $r) {
@@ -720,7 +720,7 @@ class dfrn {
         *
         * @return object XML entry object
         */
-       private function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
+       private static function entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
 
                $mentioned = array();
 
@@ -913,11 +913,18 @@ class dfrn {
 
                logger('dfrn_deliver: ' . $url);
 
-               $xml = fetch_url($url);
+               $ret = z_fetch_url($url);
+
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return -2; // timed out
+               }
+
+               $xml = $ret['body'];
 
                $curl_stat = $a->get_curl_code();
-               if(! $curl_stat)
-                       return(-1); // timed out
+               if (!$curl_stat) {
+                       return -3; // timed out
+               }
 
                logger('dfrn_deliver: ' . $xml, LOGGER_DATA);
 
@@ -1017,24 +1024,24 @@ class dfrn {
                                                $key = Crypto::createNewRandomKey();
                                        } catch (CryptoTestFailed $ex) {
                                                logger('Cannot safely create a key');
-                                               return -1;
+                                               return -4;
                                        } catch (CannotPerformOperation $ex) {
                                                logger('Cannot safely create a key');
-                                               return -1;
+                                               return -5;
                                        }
                                        try {
                                                $data = Crypto::encrypt($postvars['data'], $key);
                                        } catch (CryptoTestFailed $ex) {
                                                logger('Cannot safely perform encryption');
-                                               return -1;
+                                               return -6;
                                        } catch (CannotPerformOperation $ex) {
                                                logger('Cannot safely perform encryption');
-                                               return -1;
+                                               return -7;
                                        }
                                        break;
                                default:
                                        logger("rino: invalid requested verision '$rino_remote_version'");
-                                       return -1;
+                                       return -8;
                        }
 
                        $postvars['rino'] = $rino_remote_version;
@@ -1068,16 +1075,18 @@ class dfrn {
 
                logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars,true), LOGGER_DATA);
 
-               $xml = post_url($contact['notify'],$postvars);
+               $xml = post_url($contact['notify'], $postvars);
 
                logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
 
                $curl_stat = $a->get_curl_code();
-               if((! $curl_stat) || (! strlen($xml)))
-                       return(-1); // timed out
+               if ((!$curl_stat) || (!strlen($xml))) {
+                       return -9; // timed out
+               }
 
-               if(($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after')))
-                       return(-1);
+               if (($curl_stat == 503) && (stristr($a->get_curl_headers(),'retry-after'))) {
+                       return -10;
+               }
 
                if(strpos($xml,'<?xml') === false) {
                        logger('dfrn_deliver: phase 2: no valid XML returned');
@@ -1103,7 +1112,7 @@ class dfrn {
         * @param string $birthday Birthday of the contact
         *
         */
-       private function birthday_event($contact, $birthday) {
+       private static function birthday_event($contact, $birthday) {
 
                // Check for duplicates
                $r = q("SELECT `id` FROM `event` WHERE `uid` = %d AND `cid` = %d AND `start` = '%s' AND `type` = '%s' LIMIT 1",
@@ -1146,7 +1155,7 @@ class dfrn {
         *
         * @return Returns an array with relevant data of the author
         */
-       private function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "") {
+       private static function fetchauthor($xpath, $context, $importer, $element, $onlyfetch, $xml = "") {
 
                $author = array();
                $author["name"] = $xpath->evaluate($element."/atom:name/text()", $context)->item(0)->nodeValue;
@@ -1358,7 +1367,7 @@ class dfrn {
         *
         * @return string XML string
         */
-       private function transform_activity($xpath, $activity, $element) {
+       private static function transform_activity($xpath, $activity, $element) {
                if (!is_object($activity))
                        return "";
 
@@ -1403,7 +1412,7 @@ class dfrn {
         * @param object $mail mail elements
         * @param array $importer Record of the importer user mixed with contact of the content
         */
-       private function process_mail($xpath, $mail, $importer) {
+       private static function process_mail($xpath, $mail, $importer) {
 
                logger("Processing mails");
 
@@ -1454,7 +1463,7 @@ class dfrn {
         * @param object $suggestion suggestion elements
         * @param array $importer Record of the importer user mixed with contact of the content
         */
-       private function process_suggestion($xpath, $suggestion, $importer) {
+       private static function process_suggestion($xpath, $suggestion, $importer) {
                $a = get_app();
 
                logger("Processing suggestions");
@@ -1556,7 +1565,7 @@ class dfrn {
         * @param object $relocation relocation elements
         * @param array $importer Record of the importer user mixed with contact of the content
         */
-       private function process_relocation($xpath, $relocation, $importer) {
+       private static function process_relocation($xpath, $relocation, $importer) {
 
                logger("Processing relocations");
 
@@ -1685,7 +1694,7 @@ class dfrn {
         * @param array $importer Record of the importer user mixed with contact of the content
         * @param int $entrytype Is it a toplevel entry, a comment or a relayed comment?
         */
-       private function update_content($current, $item, $importer, $entrytype) {
+       private static function update_content($current, $item, $importer, $entrytype) {
                $changed = false;
 
                if (edited_timestamp_is_newer($current, $item)) {
@@ -1737,7 +1746,7 @@ class dfrn {
         *
         * @return int Is it a toplevel entry, a comment or a relayed comment?
         */
-       private function get_entry_type($importer, $item) {
+       private static function get_entry_type($importer, $item) {
                if ($item["parent-uri"] != $item["uri"]) {
                        $community = false;
 
@@ -1803,7 +1812,7 @@ class dfrn {
         * @param array $importer Record of the importer user mixed with contact of the content
         * @param int $posted_id The record number of item record that was just posted
         */
-       private function do_poke($item, $importer, $posted_id) {
+       private static function do_poke($item, $importer, $posted_id) {
                $verb = urldecode(substr($item["verb"],strpos($item["verb"], "#")+1));
                if(!$verb)
                        return;
@@ -1858,7 +1867,7 @@ class dfrn {
         *
         * @return bool Should the processing of the entries be continued?
         */
-       private function process_verbs($entrytype, $importer, &$item, &$is_like) {
+       private static function process_verbs($entrytype, $importer, &$item, &$is_like) {
 
                logger("Process verb ".$item["verb"]." and object-type ".$item["object-type"]." for entrytype ".$entrytype, LOGGER_DEBUG);
 
@@ -1958,7 +1967,7 @@ class dfrn {
         * @param object $links link elements
         * @param array $item the item record
         */
-       private function parse_links($links, &$item) {
+       private static function parse_links($links, &$item) {
                $rel = "";
                $href = "";
                $type = "";
@@ -2001,7 +2010,7 @@ class dfrn {
         * @param object $entry entry elements
         * @param array $importer Record of the importer user mixed with contact of the content
         */
-       private function process_entry($header, $xpath, $entry, $importer) {
+       private static function process_entry($header, $xpath, $entry, $importer) {
 
                logger("Processing entries");
 
@@ -2010,6 +2019,20 @@ class dfrn {
                // Get the uri
                $item["uri"] = $xpath->query("atom:id/text()", $entry)->item(0)->nodeValue;
 
+               $item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
+
+               $current = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
+                       dbesc($item["uri"]),
+                       intval($importer["importer_uid"])
+               );
+
+               // Is there an existing item?
+               if (dbm::is_result($current) AND edited_timestamp_is_newer($current[0], $item) AND
+                       (datetime_convert("UTC","UTC",$item["edited"]) < $current[0]["edited"])) {
+                       logger("Item ".$item["uri"]." already existed.", LOGGER_DEBUG);
+                       return;
+               }
+
                // Fetch the owner
                $owner = self::fetchauthor($xpath, $entry, $importer, "dfrn:owner", true);
 
@@ -2027,7 +2050,6 @@ class dfrn {
                $item["title"] = $xpath->query("atom:title/text()", $entry)->item(0)->nodeValue;
 
                $item["created"] = $xpath->query("atom:published/text()", $entry)->item(0)->nodeValue;
-               $item["edited"] = $xpath->query("atom:updated/text()", $entry)->item(0)->nodeValue;
 
                $item["body"] = $xpath->query("dfrn:env/text()", $entry)->item(0)->nodeValue;
                $item["body"] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$item["body"]);
@@ -2215,18 +2237,13 @@ class dfrn {
                        }
                }
 
-               $r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
-                       dbesc($item["uri"]),
-                       intval($importer["importer_uid"])
-               );
-
                if (!self::process_verbs($entrytype, $importer, $item, $is_like)) {
                        logger("Exiting because 'process_verbs' told us so", LOGGER_DEBUG);
                        return;
                }
 
                // Update content if 'updated' changes
-               if (dbm::is_result($r)) {
+               if (dbm::is_result($current)) {
                        if (self::update_content($r[0], $item, $importer, $entrytype))
                                logger("Item ".$item["uri"]." was updated.", LOGGER_DEBUG);
                        else
@@ -2311,7 +2328,7 @@ class dfrn {
         * @param object $deletion deletion elements
         * @param array $importer Record of the importer user mixed with contact of the content
         */
-       private function process_deletion($xpath, $deletion, $importer) {
+       private static function process_deletion($xpath, $deletion, $importer) {
 
                logger("Processing deletions");
 
index 8146368784cb4691aef3711510eb8ebf59434a13..10c741ae5f10aa78b0510ecdc9d2bdfe9567bc14 100644 (file)
@@ -186,6 +186,10 @@ function discover_directory($search) {
  */
 function gs_search_user($search) {
 
+       // Currently disabled, since the service isn't available anymore.
+       // It is not removed since I hope that there will be a successor.
+       return false;
+
        $a = get_app();
 
        $url = "http://gstools.org/api/users_search/".urlencode($search);
index 579ff7caae3652cce6c9fcb714720886bd32334f..e0fef50dbbc6f7ed832e11451bf6bed47df3c9f6 100644 (file)
@@ -177,18 +177,6 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
        foreach (array_reverse($entrylist) AS $entry) {
                $item = array_merge($header, $author);
 
-               $item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue;
-
-               if ($item["title"] == "")
-                       $item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue;
-
-               if ($item["title"] == "")
-                       $item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
-
-               $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
-               if (!is_object($alternate))
-                       $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
-
                if (is_object($alternate))
                        foreach($alternate AS $attributes)
                                if ($attributes->name == "href")
@@ -212,6 +200,27 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
 
                $item["parent-uri"] = $item["uri"];
 
+               if (!$simulate) {
+                       $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
+                               intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
+                       if ($r) {
+                               logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
+                               continue;
+                       }
+               }
+
+               $item["title"] = $xpath->evaluate('atom:title/text()', $entry)->item(0)->nodeValue;
+
+               if ($item["title"] == "")
+                       $item["title"] = $xpath->evaluate('title/text()', $entry)->item(0)->nodeValue;
+
+               if ($item["title"] == "")
+                       $item["title"] = $xpath->evaluate('rss:title/text()', $entry)->item(0)->nodeValue;
+
+               $alternate = $xpath->query("atom:link[@rel='alternate']", $entry)->item(0)->attributes;
+               if (!is_object($alternate))
+                       $alternate = $xpath->query("atom:link", $entry)->item(0)->attributes;
+
                $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
 
                if ($published == "")
@@ -250,15 +259,6 @@ function feed_import($xml,$importer,&$contact, &$hub, $simulate = false) {
                if ($creator != "")
                        $item["author-name"] = $creator;
 
-               if (!$simulate) {
-                       $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` IN ('%s', '%s')",
-                               intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED), dbesc(NETWORK_DFRN));
-                       if ($r) {
-                               logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG);
-                               continue;
-                       }
-               }
-
                /// @TODO ?
                // <category>Ausland</category>
                // <media:thumbnail width="152" height="76" url="http://www.taz.de/picture/667875/192/14388767.jpg"/>
index 210bde690656e84e777c0b6771dc6ee57f867939..a53b90c0398ce11f215ad1b9d660eb6fbf0c2c01 100644 (file)
@@ -18,155 +18,169 @@ require_once("include/diaspora.php");
 function do_like($item_id, $verb) {
        $a = get_app();
 
-       if(! local_user() && ! remote_user()) {
+       if (! local_user() && ! remote_user()) {
                return false;
        }
 
-       switch($verb) {
+       switch ($verb) {
                case 'like':
+                       $bodyverb = t('%1$s likes %2$s\'s %3$s');
+                       $activity = ACTIVITY_LIKE;
+                       break;
                case 'unlike':
+                       $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
                        $activity = ACTIVITY_LIKE;
                        break;
                case 'dislike':
                case 'undislike':
+                       $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
                        $activity = ACTIVITY_DISLIKE;
                        break;
                case 'attendyes':
                case 'unattendyes':
+                       $bodyverb = t('%1$s is attending %2$s\'s %3$s');
                        $activity = ACTIVITY_ATTEND;
                        break;
                case 'attendno':
                case 'unattendno':
+                       $bodyverb = t('%1$s is not attending %2$s\'s %3$s');
                        $activity = ACTIVITY_ATTENDNO;
                        break;
                case 'attendmaybe':
                case 'unattendmaybe':
+                       $bodyverb = t('%1$s may attend %2$s\'s %3$s');
                        $activity = ACTIVITY_ATTENDMAYBE;
                        break;
                default:
+                       logger('like: unknown verb ' . $verb . ' for item ' . $item_id);
                        return false;
-                       break;
        }
 
+       // Enable activity toggling instead of on/off
+       $event_verb_flag = $activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE;
+
        logger('like: verb ' . $verb . ' item ' . $item_id);
 
-       $r = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
+       // Retrieve item
+       $items = q("SELECT * FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
                dbesc($item_id),
                dbesc($item_id)
        );
 
-       if(! $item_id || (! dbm::is_result($r))) {
-               logger('like: no item ' . $item_id);
+       if (! $item_id || ! dbm::is_result($items)) {
+               logger('like: unknown item ' . $item_id);
                return false;
        }
 
-       $item = $r[0];
-
-       $owner_uid = $item['uid'];
+       $item = $items[0];
 
-       if (! can_write_wall($a,$owner_uid)) {
+       if (! can_write_wall($a, $item['uid'])) {
+               logger('like: unable to write on wall ' . $item['uid']);
                return false;
        }
 
-       $remote_owner = null;
-
-       if(! $item['wall']) {
-               // The top level post may have been written by somebody on another system
-               $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
-                       intval($item['contact-id']),
-                       intval($item['uid'])
-               );
-               if (! dbm::is_result($r)) {
-                       return false;
-               }
-               if (! $r[0]['self']) {
-                       $remote_owner = $r[0];
-               }
+       // Retrieves the local post owner
+       $owners = q("SELECT `contact`.* FROM `contact`
+               WHERE `contact`.`self` = 1
+               AND `contact`.`uid` = %d",
+               intval($item['uid'])
+       );
+       if (dbm::is_result($owners)) {
+               $owner_self_contact = $owners[0];
+       } else {
+               logger('like: unknown owner ' . $item['uid']);
+               return false;
        }
 
-       // this represents the post owner on this system.
+       // Retrieve the current logged in user's public contact
+       $author_id = public_contact();
 
-       $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
-               WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1",
-               intval($owner_uid)
+       $contacts = q("SELECT * FROM `contact` WHERE `id` = %d",
+               intval($author_id)
        );
-       if (dbm::is_result($r)) {
-               $owner = $r[0];
-       }
-
-       if (! $owner) {
-               logger('like: no owner');
+       if (dbm::is_result($contacts)) {
+               $author_contact = $contacts[0];
+       } else {
+               logger('like: unknown author ' . $author_id);
                return false;
        }
 
-       if (! $remote_owner) {
-               $remote_owner = $owner;
-       }
-
-       // This represents the person posting
-
-       if ((local_user()) && (local_user() == $owner_uid)) {
-               $contact = $owner;
+       // Contact-id is the uid-dependant author contact
+       if (local_user() == $item['uid']) {
+               $item_contact_id = $owner_self_contact['id'];
+               $item_contact = $owner_self_contact;
        } else {
-               $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
-                       intval($_SESSION['visitor_id']),
-                       intval($owner_uid)
+               $item_contact_id = get_contact($author_contact['url'], $item['uid']);
+
+               $contacts = q("SELECT * FROM `contact` WHERE `id` = %d",
+                       intval($item_contact_id)
                );
-               if (dbm::is_result($r)) {
-                       $contact = $r[0];
+               if (dbm::is_result($contacts)) {
+                       $item_contact = $contacts[0];
+               } else {
+                       logger('like: unknown item contact ' . $item_contact_id);
+                       return false;
                }
        }
-       if (! $contact) {
-               return false;
-       }
-
-
-       $verbs = " '".dbesc($activity)."' ";
 
+       // Look for an existing verb row
        // event participation are essentially radio toggles. If you make a subsequent choice,
        // we need to eradicate your first choice.
-       if ($activity === ACTIVITY_ATTEND || $activity === ACTIVITY_ATTENDNO || $activity === ACTIVITY_ATTENDMAYBE) {
-               $verbs = " '" . dbesc(ACTIVITY_ATTEND) . "','" . dbesc(ACTIVITY_ATTENDNO) . "','" . dbesc(ACTIVITY_ATTENDMAYBE) . "' ";
-       }
-
-       $r = q("SELECT `id`, `guid` FROM `item` WHERE `verb` IN ( $verbs ) AND `deleted` = 0
-               AND `contact-id` = %d AND `uid` = %d
-               AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s') LIMIT 1",
-               intval($contact['id']), intval($owner_uid),
+       if ($event_verb_flag) {
+               $verbs = "'" . dbesc(ACTIVITY_ATTEND) . "', '" . dbesc(ACTIVITY_ATTENDNO) . "', '" . dbesc(ACTIVITY_ATTENDMAYBE) . "'";
+       } else {
+               $verbs = "'".dbesc($activity)."'";
+       }
+
+       $existing_like = q("SELECT `id`, `guid`, `verb` FROM `item`
+               WHERE `verb` IN ($verbs)
+               AND `deleted` = 0
+               AND `author-id` = %d
+               AND `uid` = %d
+               AND (`parent` = '%s' OR `parent-uri` = '%s' OR `thr-parent` = '%s')
+               LIMIT 1",
+               intval($author_contact['id']),
+               intval($item['uid']),
                dbesc($item_id), dbesc($item_id), dbesc($item['uri'])
        );
 
-       if (dbm::is_result($r)) {
-               $like_item = $r[0];
+       // If it exists, mark it as deleted
+       if (dbm::is_result($existing_like)) {
+               $like_item = $existing_like[0];
 
                // Already voted, undo it
-               $r = q("UPDATE `item` SET `deleted` = 1, `unseen` = 1, `changed` = '%s' WHERE `id` = %d",
+               q("UPDATE `item` SET `deleted` = 1, `unseen` = 1, `changed` = '%s' WHERE `id` = %d",
                        dbesc(datetime_convert()),
                        intval($like_item['id'])
                );
 
-
                // Clean up the Diaspora signatures for this like
                // Go ahead and do it even if Diaspora support is disabled. We still want to clean up
                // if it had been enabled in the past
-               $r = q("DELETE FROM `sign` WHERE `iid` = %d",
+               q("DELETE FROM `sign` WHERE `iid` = %d",
                        intval($like_item['id'])
                );
 
                $like_item_id = $like_item['id'];
                proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $like_item_id);
 
-               return true;
+               if (!$event_verb_flag || $like_item['verb'] == $activity) {
+                       return true;
+               }
        }
 
-       $uri = item_new_uri($a->get_hostname(),$owner_uid);
+       // Verb is "un-something", just trying to delete existing entries
+       if (strpos($verb, 'un') === 0) {
+               return true;
+       }
 
+       // Else or if event verb different from existing row, create a new item row
        $post_type = (($item['resource-id']) ? t('photo') : t('status'));
        if ($item['object-type'] === ACTIVITY_OBJ_EVENT) {
                $post_type = t('event');
        }
-       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
-       $link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
+       $objtype = $item['resource-id'] ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ;
+       $link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . '" />' . "\n") ;
        $body = $item['body'];
 
        $obj = <<< EOT
@@ -180,80 +194,62 @@ function do_like($item_id, $verb) {
                <content>$body</content>
        </object>
 EOT;
-       if ($verb === 'like') {
-               $bodyverb = t('%1$s likes %2$s\'s %3$s');
-       }
-       if ($verb === 'dislike') {
-               $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s');
-       }
-       if ($verb === 'attendyes') {
-               $bodyverb = t('%1$s is attending %2$s\'s %3$s');
-       }
-       if ($verb === 'attendno') {
-               $bodyverb = t('%1$s is not attending %2$s\'s %3$s');
-       }
-       if ($verb === 'attendmaybe') {
-               $bodyverb = t('%1$s may attend %2$s\'s %3$s');
-       }
 
-       if (! isset($bodyverb)) {
-               return false;
-       }
-
-       $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]';
+       $ulink = '[url=' . $author_contact['url'] . ']' . $author_contact['name'] . '[/url]';
        $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]';
-       $plink = '[url=' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
-
-       /// @TODO Or rewrite this to multi-line initialization of the array?
-       $arr = array();
-
-       $arr['guid'] = get_guid(32);
-       $arr['uri'] = $uri;
-       $arr['uid'] = $owner_uid;
-       $arr['contact-id'] = $contact['id'];
-       $arr['type'] = 'activity';
-       $arr['wall'] = $item['wall'];
-       $arr['origin'] = 1;
-       $arr['gravity'] = GRAVITY_LIKE;
-       $arr['parent'] = $item['id'];
-       $arr['parent-uri'] = $item['uri'];
-       $arr['thr-parent'] = $item['uri'];
-       $arr['owner-name'] = $remote_owner['name'];
-       $arr['owner-link'] = $remote_owner['url'];
-       $arr['owner-avatar'] = $remote_owner['thumb'];
-       $arr['author-name'] = $contact['name'];
-       $arr['author-link'] = $contact['url'];
-       $arr['author-avatar'] = $contact['thumb'];
-       $arr['body'] =  sprintf( $bodyverb, $ulink, $alink, $plink );
-       $arr['verb'] = $activity;
-       $arr['object-type'] = $objtype;
-       $arr['object'] = $obj;
-       $arr['allow_cid'] = $item['allow_cid'];
-       $arr['allow_gid'] = $item['allow_gid'];
-       $arr['deny_cid'] = $item['deny_cid'];
-       $arr['deny_gid'] = $item['deny_gid'];
-       $arr['visible'] = 1;
-       $arr['unseen'] = 1;
-       $arr['last-child'] = 0;
-
-       $post_id = item_store($arr);
+       $plink = '[url=' . App::get_baseurl() . '/display/' . $owner_self_contact['nick'] . '/' . $item['id'] . ']' . $post_type . '[/url]';
+
+       $new_item = array(
+               'guid'          => get_guid(32),
+               'uri'           => item_new_uri($a->get_hostname(), $item['uid']),
+               'uid'           => $item['uid'],
+               'contact-id'    => $item_contact_id,
+               'type'          => 'activity',
+               'wall'          => $item['wall'],
+               'origin'        => 1,
+               'gravity'       => GRAVITY_LIKE,
+               'parent'        => $item['id'],
+               'parent-uri'    => $item['uri'],
+               'thr-parent'    => $item['uri'],
+               'owner-id'      => $item['owner-id'],
+               'owner-name'    => $item['owner-name'],
+               'owner-link'    => $item['owner-link'],
+               'owner-avatar'  => $item['owner-avatar'],
+               'author-id'     => $author_contact['id'],
+               'author-name'   => $author_contact['name'],
+               'author-link'   => $author_contact['url'],
+               'author-avatar' => $author_contact['thumb'],
+               'body'          => sprintf($bodyverb, $ulink, $alink, $plink),
+               'verb'          => $activity,
+               'object-type'   => $objtype,
+               'object'        => $obj,
+               'allow_cid'     => $item['allow_cid'],
+               'allow_gid'     => $item['allow_gid'],
+               'deny_cid'      => $item['deny_cid'],
+               'deny_gid'      => $item['deny_gid'],
+               'visible'       => 1,
+               'unseen'        => 1,
+               'last-child'    => 0
+       );
+
+       $new_item_id = item_store($new_item);
 
+       // @todo: Explain this block
        if (! $item['visible']) {
-               $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
+               q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d",
                        intval($item['id']),
-                       intval($owner_uid)
+                       intval($item['uid'])
                );
        }
 
-
        // Save the author information for the like in case we need to relay to Diaspora
-       Diaspora::store_like_signature($contact, $post_id);
+       Diaspora::store_like_signature($item_contact, $new_item_id);
 
-       $arr['id'] = $post_id;
+       $new_item['id'] = $new_item_id;
 
-       call_hooks('post_local_end', $arr);
+       call_hooks('post_local_end', $new_item);
 
-       proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $post_id);
+       proc_run(PRIORITY_HIGH, "include/notifier.php", "like", $new_item_id);
 
        return true;
 }
index 03f65a5190a08182d11939f30b0eb031ab955a94..b0e71fab7f8b93ecbc520c9af4e14e05c713992d 100644 (file)
@@ -118,7 +118,9 @@ function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) {
 
        $check_cert = get_config('system','verifyssl');
        @curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
-       @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
+       if ($check_cert) {
+               @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
+       }
 
        $prx = get_config('system','proxy');
        if(strlen($prx)) {
@@ -141,6 +143,8 @@ function z_fetch_url($url,$binary = false, &$redirects = 0, $opts=array()) {
                logger('fetch_url error fetching '.$url.': '.curl_error($ch), LOGGER_NORMAL);
        }
 
+       $ret['errno'] = curl_errno($ch);
+
        $base = $s;
        $curl_info = @curl_getinfo($ch);
 
@@ -265,7 +269,9 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
 
        $check_cert = get_config('system','verifyssl');
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, (($check_cert) ? true : false));
-       curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, (($check_cert) ? 2 : false));
+       if ($check_cert) {
+               @curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
+       }
        $prx = get_config('system','proxy');
        if(strlen($prx)) {
                curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
index 5219d9f3bd5f291ec52c8fa8dd7e81814bf12fbb..552fea36fa9bd9c7d9d7dc15734e41a77953a63a 100644 (file)
@@ -15,11 +15,11 @@ function RemoveReply($subject) {
 function onepoll_run(&$argv, &$argc){
        global $a, $db;
 
-       if(is_null($a)) {
+       if (is_null($a)) {
                $a = new App;
        }
 
-       if(is_null($db)) {
+       if (is_null($db)) {
                @include(".htconfig.php");
                require_once("include/dba.php");
                $db = new dba($db_host, $db_user, $db_pass, $db_data);
@@ -48,21 +48,25 @@ function onepoll_run(&$argv, &$argc){
        $force      = false;
        $restart    = false;
 
-       if(($argc > 1) && (intval($argv[1])))
+       if (($argc > 1) && (intval($argv[1]))) {
                $contact_id = intval($argv[1]);
+       }
 
-       if(($argc > 2) && ($argv[2] == "force"))
+       if (($argc > 2) && ($argv[2] == "force")) {
                $force = true;
+       }
 
-       if(! $contact_id) {
+       if (! $contact_id) {
                logger('onepoll: no contact');
                return;
        }
 
        // Don't check this stuff if the function is called by the poller
-       if (App::callstack() != "poller_run")
-               if (App::is_already_running('onepoll'.$contact_id, '', 540))
+       if (App::callstack() != "poller_run") {
+               if (App::is_already_running('onepoll'.$contact_id, '', 540)) {
                        return;
+               }
+       }
 
        $d = datetime_convert();
 
@@ -83,8 +87,9 @@ function onepoll_run(&$argv, &$argc){
                intval($contact_id)
        );
 
-       if(! count($contacts))
+       if (! count($contacts)) {
                return;
+       }
 
        $contact = $contacts[0];
 
@@ -94,9 +99,11 @@ function onepoll_run(&$argv, &$argc){
                        where `cid` = %d and updated > UTC_TIMESTAMP() - INTERVAL 1 DAY",
                        intval($contact['id'])
                );
-               if (dbm::is_result($r))
-                       if (!$r[0]['total'])
+               if (dbm::is_result($r)) {
+                       if (!$r[0]['total']) {
                                poco_load($contact['id'],$importer_uid,0,$contact['poco']);
+                       }
+               }
        }
 
        /// @TODO Check why we don't poll the Diaspora feed at the moment (some guid problem in the items?)
@@ -127,24 +134,24 @@ function onepoll_run(&$argv, &$argc){
 
        $t = $contact['last-update'];
 
-       if($contact['subhub']) {
+       if ($contact['subhub']) {
                $poll_interval = get_config('system','pushpoll_frequency');
                $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
                $hub_update = false;
 
-               if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
-                               $hub_update = true;
-       }
-       else
+               if (datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) {
+                       $hub_update = true;
+               }
+       } else {
                $hub_update = false;
-
+       }
 
        $importer_uid = $contact['uid'];
 
        $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `contact`.`uid` = `user`.`uid` WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
                intval($importer_uid)
        );
-       if (! dbm::is_result($r)) {
+       if (!dbm::is_result($r)) {
                return;
        }
 
@@ -158,7 +165,7 @@ function onepoll_run(&$argv, &$argc){
        );
 
        // Update the contact entry
-       if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) {
+       if (($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) {
                if (!poco_reachable($contact['url'])) {
                        logger("Skipping probably dead contact ".$contact['url']);
                        return;
@@ -167,40 +174,50 @@ function onepoll_run(&$argv, &$argc){
                if (!update_contact($contact["id"])) {
                        mark_for_death($contact);
                        return;
-               } else
+               } else {
                        unmark_for_death($contact);
+               }
        }
 
-       if($contact['network'] === NETWORK_DFRN) {
+       if ($contact['network'] === NETWORK_DFRN) {
 
 
                $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
-               if(intval($contact['duplex']) && $contact['dfrn-id'])
+               if (intval($contact['duplex']) && $contact['dfrn-id']) {
                        $idtosend = '0:' . $orig_id;
-               if(intval($contact['duplex']) && $contact['issued-id'])
+               }
+               if (intval($contact['duplex']) && $contact['issued-id']) {
                        $idtosend = '1:' . $orig_id;
+               }
 
                // they have permission to write to us. We already filtered this in the contact query.
                $perm = 'rw';
 
                // But this may be our first communication, so set the writable flag if it isn't set already.
 
-               if(! intval($contact['writable']))
+               if (! intval($contact['writable'])) {
                        q("update contact set writable = 1 where id = %d", intval($contact['id']));
-
+               }
 
                $url = $contact['poll'] . '?dfrn_id=' . $idtosend
                        . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
                        . '&type=data&last_update=' . $last_update
                        . '&perm=' . $perm ;
 
-               $handshake_xml = fetch_url($url);
+               $ret = z_fetch_url($url);
+
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return;
+               }
+
+               $handshake_xml = $ret['body'];
+
                $html_code = $a->get_curl_code();
 
                logger('onepoll: handshake with url ' . $url . ' returns xml: ' . $handshake_xml, LOGGER_DATA);
 
 
-               if((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
+               if ((! strlen($handshake_xml)) || ($html_code >= 400) || (! $html_code)) {
                        logger("poller: $url appears to be dead - marking for death ");
 
                        // dead connection - might be a transient event, or this might
@@ -219,7 +236,7 @@ function onepoll_run(&$argv, &$argc){
                        return;
                }
 
-               if(! strstr($handshake_xml,'<')) {
+               if (! strstr($handshake_xml,'<')) {
                        logger('poller: response from ' . $url . ' did not contain XML.');
 
                        mark_for_death($contact);
@@ -235,7 +252,7 @@ function onepoll_run(&$argv, &$argc){
 
                $res = parse_xml_string($handshake_xml);
 
-               if(intval($res->status) == 1) {
+               if (intval($res->status) == 1) {
                        logger("poller: $url replied status 1 - marking for death ");
 
                        // we may not be friends anymore. Will keep trying for one month.
@@ -248,18 +265,16 @@ function onepoll_run(&$argv, &$argc){
                                intval($contact['id'])
                        );
                        mark_for_death($contact);
-               }
-               else {
-                       if($contact['term-date'] != '0000-00-00 00:00:00') {
-                               logger("poller: $url back from the dead - removing mark for death");
-                               unmark_for_death($contact);
-                       }
+               } elseif ($contact['term-date'] != '0000-00-00 00:00:00') {
+                       logger("poller: $url back from the dead - removing mark for death");
+                       unmark_for_death($contact);
                }
 
-               if((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id)))
+               if ((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
                        return;
+               }
 
-               if(((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
+               if (((float) $res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
                        q("update contact set poco = '%s' where id = %d",
                                dbesc(str_replace('/profile/','/poco/', $contact['url'])),
                                intval($contact['id'])
@@ -273,21 +288,21 @@ function onepoll_run(&$argv, &$argc){
 
                $final_dfrn_id = '';
 
-               if(($contact['duplex']) && strlen($contact['prvkey'])) {
+               if (($contact['duplex']) && strlen($contact['prvkey'])) {
                        openssl_private_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['prvkey']);
                        openssl_private_decrypt($challenge,$postvars['challenge'],$contact['prvkey']);
-               }
-               else {
+               } else {
                        openssl_public_decrypt($sent_dfrn_id,$final_dfrn_id,$contact['pubkey']);
                        openssl_public_decrypt($challenge,$postvars['challenge'],$contact['pubkey']);
                }
 
                $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
 
-               if(strpos($final_dfrn_id,':') == 1)
+               if (strpos($final_dfrn_id,':') == 1) {
                        $final_dfrn_id = substr($final_dfrn_id,2);
+               }
 
-               if($final_dfrn_id != $orig_id) {
+               if ($final_dfrn_id != $orig_id) {
                        logger('poller: ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
                        // did not decode properly - cannot trust this site
                        return;
@@ -299,10 +314,9 @@ function onepoll_run(&$argv, &$argc){
 
                $xml = post_url($contact['poll'],$postvars);
 
-       }
-       elseif(($contact['network'] === NETWORK_OSTATUS)
+       } elseif (($contact['network'] === NETWORK_OSTATUS)
                || ($contact['network'] === NETWORK_DIASPORA)
-               || ($contact['network'] === NETWORK_FEED) ) {
+               || ($contact['network'] === NETWORK_FEED)) {
 
                // Upgrading DB fields from an older Friendica version
                // Will only do this once per notify-enabled OStatus contact
@@ -311,10 +325,11 @@ function onepoll_run(&$argv, &$argc){
                $stat_writeable = ((($contact['notify']) && ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['rel'] == CONTACT_IS_FRIEND)) ? 1 : 0);
 
                // Contacts from OStatus are always writable
-               if($contact['network'] === NETWORK_OSTATUS)
+               if ($contact['network'] === NETWORK_OSTATUS) {
                        $stat_writeable = 1;
+               }
 
-               if($stat_writeable != $contact['writable']) {
+               if ($stat_writeable != $contact['writable']) {
                        q("UPDATE `contact` SET `writable` = %d WHERE `id` = %d",
                                intval($stat_writeable),
                                intval($contact['id'])
@@ -323,19 +338,26 @@ function onepoll_run(&$argv, &$argc){
 
                // Are we allowed to import from this person?
 
-               if($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly'])
+               if ($contact['rel'] == CONTACT_IS_FOLLOWER || $contact['blocked'] || $contact['readonly']) {
                        return;
+               }
 
                $cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
-               $xml = fetch_url($contact['poll'], false, $redirects, 0, Null, $cookiejar);
+               $ret = z_fetch_url($contact['poll'], false, $redirects, array('cookiejar' => $cookiejar));
+
+               if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       return;
+               }
+
+               $xml = $ret['body'];
+
                unlink($cookiejar);
-       }
-       elseif($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
+       } elseif ($contact['network'] === NETWORK_MAIL || $contact['network'] === NETWORK_MAIL2) {
 
                logger("Mail: Fetching", LOGGER_DEBUG);
 
                $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
-               if($mail_disabled)
+               if ($mail_disabled)
                        return;
 
                logger("Mail: Enabled", LOGGER_DEBUG);
@@ -347,38 +369,38 @@ function onepoll_run(&$argv, &$argc){
                $mailconf = q("SELECT * FROM `mailacct` WHERE `server` != '' AND `uid` = %d LIMIT 1",
                        intval($importer_uid)
                );
-               if(count($x) && count($mailconf)) {
+               if (count($x) && count($mailconf)) {
                    $mailbox = construct_mailbox_name($mailconf[0]);
                        $password = '';
                        openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']);
                        $mbox = email_connect($mailbox,$mailconf[0]['user'],$password);
                        unset($password);
                        logger("Mail: Connect to " . $mailconf[0]['user']);
-                       if($mbox) {
+                       if ($mbox) {
                                q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d",
                                        dbesc(datetime_convert()),
                                        intval($mailconf[0]['id']),
                                        intval($importer_uid)
                                );
                                logger("Mail: Connected to " . $mailconf[0]['user']);
-                       } else
+                       } else {
                                logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors(), true));
+                       }
                }
-               if($mbox) {
+               if ($mbox) {
 
                        $msgs = email_poll($mbox,$contact['addr']);
 
-                       if(count($msgs)) {
+                       if (count($msgs)) {
                                logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG);
 
                                $metas = email_msg_meta($mbox,implode(',',$msgs));
-                               if(count($metas) != count($msgs)) {
+                               if (count($metas) != count($msgs)) {
                                        logger("onepoll: for " . $mailconf[0]['user'] . " there are ". count($msgs) . " messages but received " . count($metas) . " metas", LOGGER_DEBUG);
-                               }
-                               else {
+                               } else {
                                        $msgs = array_combine($msgs, $metas);
 
-                                       foreach($msgs as $msg_uid => $meta) {
+                                       foreach ($msgs as $msg_uid => $meta) {
                                                logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA);
 
                                                $datarray = array();
@@ -400,7 +422,7 @@ function onepoll_run(&$argv, &$argc){
 
                                                        // Only delete when mails aren't automatically moved or deleted
                                                        if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
-                                                               if($meta->deleted && ! $r[0]['deleted']) {
+                                                               if ($meta->deleted && ! $r[0]['deleted']) {
                                                                        q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d",
                                                                                dbesc(datetime_convert()),
                                                                                intval($r[0]['id'])
@@ -434,13 +456,13 @@ function onepoll_run(&$argv, &$argc){
 
        //                                      $raw_refs = ((x($headers,'references')) ? str_replace("\t",'',$headers['references']) : '');
                                                $raw_refs = ((property_exists($meta,'references')) ? str_replace("\t",'',$meta->references) : '');
-                                               if(! trim($raw_refs))
+                                               if (! trim($raw_refs))
                                                        $raw_refs = ((property_exists($meta,'in_reply_to')) ? str_replace("\t",'',$meta->in_reply_to) : '');
                                                $raw_refs = trim($raw_refs);  // Don't allow a blank reference in $refs_arr
 
-                                               if($raw_refs) {
+                                               if ($raw_refs) {
                                                        $refs_arr = explode(' ', $raw_refs);
-                                                       if(count($refs_arr)) {
+                                                       if (count($refs_arr)) {
                                                                for($x = 0; $x < count($refs_arr); $x ++)
                                                                        $refs_arr[$x] = "'" . msgid2iri(str_replace(array('<','>',' '),array('','',''),dbesc($refs_arr[$x]))) . "'";
                                                        }
@@ -456,12 +478,13 @@ function onepoll_run(&$argv, &$argc){
                                                // Decoding the header
                                                $subject = imap_mime_header_decode($meta->subject);
                                                $datarray['title'] = "";
-                                               foreach($subject as $subpart)
-                                                       if ($subpart->charset != "default")
+                                               foreach ($subject as $subpart) {
+                                                       if ($subpart->charset != "default") {
                                                                $datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
-                                                       else
+                                                       } else {
                                                                $datarray['title'] .= $subpart->text;
-
+                                                       }
+                                               }
                                                $datarray['title'] = notags(trim($datarray['title']));
 
                                                //$datarray['title'] = notags(trim($meta->subject));
@@ -476,7 +499,7 @@ function onepoll_run(&$argv, &$argc){
                                                $datarray['title'] = RemoveReply($datarray['title']);
 
                                                // If it seems to be a reply but a header couldn't be found take the last message with matching subject
-                                               if(!x($datarray,'parent-uri') and $reply) {
+                                               if (!x($datarray,'parent-uri') and $reply) {
                                                        $r = q("SELECT `uri` , `parent-uri` FROM `item` WHERE `title` = \"%s\" AND `uid` = %d AND `network` = '%s' ORDER BY `created` DESC LIMIT 1",
                                                                dbesc(protect_sprintf($datarray['title'])),
                                                                intval($importer_uid),
@@ -485,12 +508,12 @@ function onepoll_run(&$argv, &$argc){
                                                                $datarray['parent-uri'] = $r[0]['parent-uri'];
                                                }
 
-                                               if(! x($datarray,'parent-uri'))
+                                               if (! x($datarray,'parent-uri'))
                                                        $datarray['parent-uri'] = $datarray['uri'];
 
 
                                                $r = email_get_msg($mbox,$msg_uid, $reply);
-                                               if(! $r) {
+                                               if (! $r) {
                                                        logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']);
                                                        continue;
                                                }
@@ -502,23 +525,26 @@ function onepoll_run(&$argv, &$argc){
                                                // some mailing lists have the original author as 'from' - add this sender info to msg body.
                                                /// @TODO Adding a gravatar for the original author would be cool
 
-                                               if(! stristr($meta->from,$contact['addr'])) {
+                                               if (! stristr($meta->from,$contact['addr'])) {
                                                        $from = imap_mime_header_decode($meta->from);
                                                        $fromdecoded = "";
-                                                       foreach($from as $frompart)
-                                                               if ($frompart->charset != "default")
+                                                       foreach ($from as $frompart) {
+                                                               if ($frompart->charset != "default") {
                                                                        $fromdecoded .= iconv($frompart->charset, 'UTF-8//IGNORE', $frompart->text);
-                                                               else
+                                                               } else {
                                                                        $fromdecoded .= $frompart->text;
+                                                               }
+                                                       }
 
                                                        $fromarr = imap_rfc822_parse_adrlist($fromdecoded, $a->get_hostname());
 
                                                        $frommail = $fromarr[0]->mailbox."@".$fromarr[0]->host;
 
-                                                       if (isset($fromarr[0]->personal))
+                                                       if (isset($fromarr[0]->personal)) {
                                                                $fromname = $fromarr[0]->personal;
-                                                       else
+                                                       } else {
                                                                $fromname = $frommail;
+                                                       }
 
                                                        //$datarray['body'] = "[b]".t('From: ') . escape_tags($fromdecoded) . "[/b]\n\n" . $datarray['body'];
 
@@ -538,9 +564,9 @@ function onepoll_run(&$argv, &$argc){
 
                                                $datarray['uid'] = $importer_uid;
                                                $datarray['contact-id'] = $contact['id'];
-                                               if($datarray['parent-uri'] === $datarray['uri'])
+                                               if ($datarray['parent-uri'] === $datarray['uri'])
                                                        $datarray['private'] = 1;
-                                               if(($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
+                                               if (($contact['network'] === NETWORK_MAIL) && (! get_pconfig($importer_uid,'system','allow_public_email_replies'))) {
                                                        $datarray['private'] = 1;
                                                        $datarray['allow_cid'] = '<' . $contact['id'] . '>';
                                                }
@@ -574,24 +600,24 @@ function onepoll_run(&$argv, &$argc){
                                                }
                                        }
                                }
-                       } else
+                       } else {
                                logger("Mail: no mails for ".$mailconf[0]['user']);
+                       }
 
                        logger("Mail: closing connection for ".$mailconf[0]['user']);
                        imap_close($mbox);
                }
-       }
-       elseif($contact['network'] === NETWORK_FACEBOOK) {
+       } elseif ($contact['network'] === NETWORK_FACEBOOK) {
                // This is picked up by the Facebook plugin on a cron hook.
                // Ignored here.
-       } elseif($contact['network'] === NETWORK_PUMPIO) {
+       } elseif ($contact['network'] === NETWORK_PUMPIO) {
                // This is picked up by the pump.io plugin on a cron hook.
                // Ignored here.
        }
 
-       if($xml) {
+       if ($xml) {
                logger('poller: received xml : ' . $xml, LOGGER_DATA);
-               if(! strstr($xml,'<')) {
+               if (! strstr($xml,'<')) {
                        logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
                        $r = q("UPDATE `contact` SET `last-update` = '%s',  `failure_update` = '%s' WHERE `id` = %d",
                                dbesc(datetime_convert()),
@@ -611,10 +637,10 @@ function onepoll_run(&$argv, &$argc){
                consume_feed($xml,$importer,$contact,$hub,1,2);
 
                $hubmode = 'subscribe';
-               if($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
+               if ($contact['network'] === NETWORK_DFRN || $contact['blocked'] || $contact['readonly'])
                        $hubmode = 'unsubscribe';
 
-               if(($contact['network'] === NETWORK_OSTATUS ||  $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
+               if (($contact['network'] === NETWORK_OSTATUS ||  $contact['network'] == NETWORK_FEED) && (! $contact['hub-verify']))
                        $hub_update = true;
 
                if ($force)
@@ -622,14 +648,15 @@ function onepoll_run(&$argv, &$argc){
 
                logger("Contact ".$contact['id']." returned hub: ".$hub." Network: ".$contact['network']." Relation: ".$contact['rel']." Update: ".$hub_update);
 
-               if((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
+               if ((strlen($hub)) && ($hub_update) && (($contact['rel'] != CONTACT_IS_FOLLOWER) || $contact['network'] == NETWORK_FEED) ) {
                        logger('poller: hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
                        $hubs = explode(',', $hub);
-                       if(count($hubs)) {
-                               foreach($hubs as $h) {
+                       if (count($hubs)) {
+                               foreach ($hubs as $h) {
                                        $h = trim($h);
-                                       if(! strlen($h))
+                                       if (! strlen($h)) {
                                                continue;
+                                       }
                                        subscribe_to_hub($h,$importer,$contact,$hubmode);
                                }
                        }
@@ -671,7 +698,7 @@ function onepoll_run(&$argv, &$argc){
        return;
 }
 
-if (array_search(__file__,get_included_files())===0){
+if (array_search(__file__,get_included_files())===0) {
        onepoll_run($_SERVER["argv"],$_SERVER["argc"]);
        killme();
 }
index e8bfb88389aebcb08355d5792df373f89b6a9d07..82befae51842dc4bd1dd49c2f5f3dabeaa144216 100644 (file)
@@ -11,7 +11,6 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
 }
 
 use \Friendica\Core\Config;
-use \Friendica\Core\PConfig;
 
 require_once("boot.php");
 
@@ -29,6 +28,8 @@ function poller_run($argv, $argc){
                unset($db_host, $db_user, $db_pass, $db_data);
        };
 
+       Config::load();
+
        // Quit when in maintenance
        if (Config::get('system', 'maintenance', true)) {
                return;
@@ -206,6 +207,16 @@ function poller_exec_function($queue, $funcname, $argv) {
 
        $duration = number_format(microtime(true) - $stamp, 3);
 
+       if ($duration > 3600) {
+               logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 1 hour (".round($duration/60, 3).")", LOGGER_DEBUG);
+       } elseif ($duration > 600) {
+               logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 10 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
+       } elseif ($duration > 300) {
+               logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 5 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
+       } elseif ($duration > 120) {
+               logger("Prio ".$queue["priority"].": ".$queue["parameter"]." - longer than 2 minutes (".round($duration/60, 3).")", LOGGER_DEBUG);
+       }
+
        logger("Process ".$mypid." - Prio ".$queue["priority"]." - ID ".$queue["id"].": ".$funcname." - done in ".$duration." seconds.");
 
        // Write down the performance values into the log
index bcd32985db890d2ea1d36f3e495e2a9278f66ea5..7e2657fa54e88784c112c12c798c713b0865e864 100644 (file)
@@ -5,15 +5,16 @@ use \Friendica\Core\Config;
 require_once("boot.php");
 require_once('include/queue_fn.php');
 require_once('include/dfrn.php');
+require_once('include/cache.php');
 
 function queue_run(&$argv, &$argc){
        global $a, $db;
 
-       if(is_null($a)){
+       if (is_null($a)){
                $a = new App;
        }
 
-       if(is_null($db)){
+       if (is_null($db)){
                @include(".htconfig.php");
                require_once("include/dba.php");
                $db = new dba($db_host, $db_user, $db_pass, $db_data);
@@ -37,14 +38,14 @@ function queue_run(&$argv, &$argc){
 
        load_hooks();
 
-       if($argc > 1)
+       if ($argc > 1) {
                $queue_id = intval($argv[1]);
-       else
+       } else {
                $queue_id = 0;
+       }
 
-       $deadguys = array();
-       $deadservers = array();
-       $serverlist = array();
+       $cachekey_deadguy = 'queue_run:deadguy:';
+       $cachekey_server = 'queue_run:server:';
 
        if (!$queue_id) {
 
@@ -64,7 +65,7 @@ function queue_run(&$argv, &$argc){
                        foreach ($r as $rr) {
                                logger('queue: deliverq');
                                proc_run(PRIORITY_HIGH,'include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
-                               if($interval) {
+                               if ($interval) {
                                        time_sleep_until(microtime(true) + (float) $interval);
                                }
                        }
@@ -111,10 +112,10 @@ function queue_run(&$argv, &$argc){
                // queue_predeliver hooks may have changed the queue db details,
                // so check again if this entry still needs processing
 
-               if($queue_id)
+               if ($queue_id) {
                        $qi = q("SELECT * FROM `queue` WHERE `id` = %d LIMIT 1",
                                intval($queue_id));
-               elseif (get_config("system", "worker")) {
+               elseif (get_config("system", "worker")) {
                        logger('Call queue for id '.$q_item['id']);
                        proc_run(PRIORITY_LOW, "include/queue.php", $q_item['id']);
                        continue;
@@ -122,8 +123,9 @@ function queue_run(&$argv, &$argc){
                        $qi = q("SELECT * FROM `queue` WHERE `id` = %d AND `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ",
                                intval($q_item['id']));
 
-               if(! count($qi))
+               if (!dbm::is_result($qi)) {
                        continue;
+               }
 
 
                $c = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
@@ -133,26 +135,32 @@ function queue_run(&$argv, &$argc){
                        remove_queue_item($q_item['id']);
                        continue;
                }
-               if(in_array($c[0]['notify'],$deadguys)) {
-                       logger('queue: skipping known dead url: ' . $c[0]['notify']);
+
+               $dead = Cache::get($cachekey_deadguy.$c[0]['notify']);
+
+               if (!is_null($dead) AND $dead) {
+                       logger('queue: skipping known dead url: '.$c[0]['notify']);
                        update_queue_time($q_item['id']);
                        continue;
                }
 
                $server = poco_detect_server($c[0]['url']);
 
-               if (($server != "") AND !in_array($server, $serverlist)) {
-                       logger("Check server ".$server." (".$c[0]["network"].")");
-                       if (!poco_check_server($server, $c[0]["network"], true))
-                               $deadservers[] = $server;
+               if ($server != "") {
+                       $vital = Cache::get($cachekey_server.$server);
 
-                       $serverlist[] = $server;
-               }
+                       if (is_null($vital)) {
+                               logger("Check server ".$server." (".$c[0]["network"].")");
 
-               if (($server != "") AND in_array($server, $deadservers)) {
-                       logger('queue: skipping known dead server: '.$server);
-                       update_queue_time($q_item['id']);
-                       continue;
+                               $vital = poco_check_server($server, $c[0]["network"], true);
+                               Cache::set($cachekey_server.$server, $vital, CACHE_QUARTER_HOUR);
+                       }
+
+                       if (!is_null($vital) AND !$vital) {
+                               logger('queue: skipping dead server: '.$server);
+                               update_queue_time($q_item['id']);
+                               continue;
+                       }
                }
 
                $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`
@@ -176,36 +184,37 @@ function queue_run(&$argv, &$argc){
                                logger('queue: dfrndelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
                                $deliver_status = dfrn::deliver($owner,$contact,$data);
 
-                               if($deliver_status == (-1)) {
+                               if ($deliver_status < 0) {
                                        update_queue_time($q_item['id']);
-                                       $deadguys[] = $contact['notify'];
-                               } else
+                                       Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
+                               } else {
                                        remove_queue_item($q_item['id']);
-
+                               }
                                break;
                        case NETWORK_OSTATUS:
-                               if($contact['notify']) {
+                               if ($contact['notify']) {
                                        logger('queue: slapdelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
                                        $deliver_status = slapper($owner,$contact['notify'],$data);
 
-                                       if($deliver_status == (-1)) {
+                                       if ($deliver_status == (-1)) {
                                                update_queue_time($q_item['id']);
-                                               $deadguys[] = $contact['notify'];
-                                       } else
+                                               Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
+                                       } else {
                                                remove_queue_item($q_item['id']);
+                                       }
                                }
                                break;
                        case NETWORK_DIASPORA:
-                               if($contact['notify']) {
+                               if ($contact['notify']) {
                                        logger('queue: diaspora_delivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
                                        $deliver_status = Diaspora::transmit($owner,$contact,$data,$public,true);
 
-                                       if($deliver_status == (-1)) {
+                                       if ($deliver_status == (-1)) {
                                                update_queue_time($q_item['id']);
-                                               $deadguys[] = $contact['notify'];
-                                       } else
+                                               Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
+                                       } else {
                                                remove_queue_item($q_item['id']);
-
+                                       }
                                }
                                break;
 
@@ -213,15 +222,15 @@ function queue_run(&$argv, &$argc){
                                $params = array('owner' => $owner, 'contact' => $contact, 'queue' => $q_item, 'result' => false);
                                call_hooks('queue_deliver', $a, $params);
 
-                               if($params['result'])
+                               if ($params['result']) {
                                        remove_queue_item($q_item['id']);
-                               else
+                               } else {
                                        update_queue_time($q_item['id']);
-
+                               }
                                break;
 
                }
-               logger('Deliver status '.$deliver_status.' for item '.$q_item['id'].' to '.$contact['name'].' <'.$contact['url'].'>');
+               logger('Deliver status '.(int)$deliver_status.' for item '.$q_item['id'].' to '.$contact['name'].' <'.$contact['url'].'>');
        }
 
        return;
index a0dd88df2d5d2b50d118509d4fed626ba0be6a4b..01d2cff019f34cbf0e859b19f1284d4b5c96a6be 100644 (file)
@@ -690,7 +690,7 @@ function poco_check_server($server_url, $network = "", $force = false) {
                return false;
 
        $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
-       if ($servers) {
+       if (dbm::is_result($servers)) {
 
                if ($servers[0]["created"] == "0000-00-00 00:00:00")
                        q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'",
@@ -732,21 +732,40 @@ function poco_check_server($server_url, $network = "", $force = false) {
        $orig_last_failure = $last_failure;
 
        // Check if the page is accessible via SSL.
+       $orig_server_url = $server_url;
        $server_url = str_replace("http://", "https://", $server_url);
-       $serverret = z_fetch_url($server_url."/.well-known/host-meta");
+
+       // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
+       $serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
+
+       // Quit if there is a timeout.
+       // But we want to make sure to only quit if we are mostly sure that this server url fits.
+       if (dbm::is_result($servers) AND ($orig_server_url == $server_url) AND
+               ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT)) {
+               logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
+               return false;
+       }
 
        // Maybe the page is unencrypted only?
        $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
        if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
                $server_url = str_replace("https://", "http://", $server_url);
-               $serverret = z_fetch_url($server_url."/.well-known/host-meta");
+
+               // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
+               $serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
+
+               // Quit if there is a timeout
+               if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
+                       logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
+                       return false;
+               }
 
                $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
        }
 
        if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
                // Workaround for bad configured servers (known nginx problem)
-               if ($serverret["debug"]["http_code"] != "403") {
+               if (!in_array($serverret["debug"]["http_code"], array("403", "404"))) {
                        $last_failure = datetime_convert();
                        $failure = true;
                }
@@ -1244,18 +1263,20 @@ function poco_discover_federation() {
                        poco_check_server("https://".$server->host);
        }
 
-       // Discover GNU Social Servers
-       if (!get_config('system','ostatus_disabled')) {
-               $serverdata = "http://gstools.org/api/get_open_instances/";
+       // Currently disabled, since the service isn't available anymore.
+       // It is not removed since I hope that there will be a successor.
+       // Discover GNU Social Servers.
+       //if (!get_config('system','ostatus_disabled')) {
+       //      $serverdata = "http://gstools.org/api/get_open_instances/";
 
-               $result = z_fetch_url($serverdata);
-               if ($result["success"]) {
-                       $servers = json_decode($result["body"]);
+       //      $result = z_fetch_url($serverdata);
+       //      if ($result["success"]) {
+       //              $servers = json_decode($result["body"]);
 
-                       foreach($servers->data AS $server)
-                               poco_check_server($server->instance_address);
-               }
-       }
+       //              foreach($servers->data AS $server)
+       //                      poco_check_server($server->instance_address);
+       //      }
+       //}
 
        set_config('poco','last_federation_discovery', time());
 }
index 11248902ba0c7a6840a18485b20adc85e2af8df2..580bd95fc75c81343dd3e8466cc09bba9574fd35 100644 (file)
@@ -268,90 +268,89 @@ function hex2bin($s) {
 }}
 
 
-if(! function_exists('paginate_data')) {
 /**
- * Automatica pagination data.
+ * @brief Paginator function. Pushes relevant links in a pager array structure.
+ *
+ * Links are generated depending on the current page and the total number of items.
+ * Inactive links (like "first" and "prev" on page 1) are given the "disabled" class.
+ * Current page link is given the "active" CSS class
  *
  * @param App $a App instance
- * @param int $count [optional] item count (used with alt pager)
+ * @param int $count [optional] item count (used with minimal pager)
  * @return Array data for pagination template
  */
-function paginate_data(App $a, $count=null) {
-       $stripped = preg_replace('/([&?]page=[0-9]*)/','',$a->query_string);
+function paginate_data(App $a, $count = null) {
+       $stripped = preg_replace('/([&?]page=[0-9]*)/', '', $a->query_string);
 
-       $stripped = str_replace('q=','',$stripped);
-       $stripped = trim($stripped,'/');
+       $stripped = str_replace('q=', '', $stripped);
+       $stripped = trim($stripped, '/');
        $pagenum = $a->pager['page'];
 
-       if (($a->page_offset != "") AND !preg_match('/[?&].offset=/', $stripped))
-               $stripped .= "&offset=".urlencode($a->page_offset);
+       if (($a->page_offset != '') AND !preg_match('/[?&].offset=/', $stripped)) {
+               $stripped .= '&offset=' . urlencode($a->page_offset);
+       }
 
        $url = $stripped;
 
        $data = array();
-       function _l(&$d, $name, $url, $text, $class="") {
-               if (!strpos($url, "?")) {
-                       if ($pos = strpos($url, "&"))
-                               $url = substr($url, 0, $pos)."?".substr($url, $pos + 1);
+       function _l(&$d, $name, $url, $text, $class = '') {
+               if (strpos($url, '?') === false && ($pos = strpos($url, '&')) !== false) {
+                       $url = substr($url, 0, $pos) . '?' . substr($url, $pos + 1);
                }
 
-               $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class);
+               $d[$name] = array('url' => $url, 'text' => $text, 'class' => $class);
        }
 
-       if (!is_null($count)){
-               // alt pager
-               if($a->pager['page']>1)
-                       _l($data,  "prev", $url.'&page='.($a->pager['page'] - 1), t('newer'));
-               if($count>0)
-                       _l($data,  "next", $url.'&page='.($a->pager['page'] + 1), t('older'));
+       if (!is_null($count)) {
+               // minimal pager (newer / older)
+               $data['class'] = 'pager';
+               _l($data, 'prev', $url . '&page=' . ($a->pager['page'] - 1), t('newer'), 'previous' . ($a->pager['page'] == 1 ? ' disabled' : ''));
+               _l($data, 'next', $url . '&page=' . ($a->pager['page'] + 1), t('older'), 'next' . ($count <= 0 ? ' disabled' : ''));
        } else {
-               // full pager
-               if($a->pager['total'] > $a->pager['itemspage']) {
-                       if($a->pager['page'] != 1)
-                               _l($data,  "prev", $url.'&page='.($a->pager['page'] - 1), t('prev'));
-
-                       _l($data, "first", $url."&page=1",  t('first'));
-
+               // full pager (first / prev / 1 / 2 / ... / 14 / 15 / next / last)
+               $data['class'] = 'pagination';
+               if ($a->pager['total'] > $a->pager['itemspage']) {
+                       _l($data, 'first', $url . '&page=1',  t('first'), $a->pager['page'] == 1 ? 'disabled' : '');
+                       _l($data, 'prev', $url . '&page=' . ($a->pager['page'] - 1), t('prev'), $a->pager['page'] == 1 ? 'disabled' : '');
 
                        $numpages = $a->pager['total'] / $a->pager['itemspage'];
 
                        $numstart = 1;
                        $numstop = $numpages;
 
-                       if($numpages > 14) {
+                       if ($numpages > 14) {
                                $numstart = (($pagenum > 7) ? ($pagenum - 7) : 1);
                                $numstop = (($pagenum > ($numpages - 7)) ? $numpages : ($numstart + 14));
                        }
 
                        $pages = array();
 
-                       for($i = $numstart; $i <= $numstop; $i++){
-                               if($i == $a->pager['page'])
-                                       _l($pages, $i, "#",  $i, "current");
-                               else
-                                       _l($pages, $i, $url."&page=$i", $i, "n");
+                       for ($i = $numstart; $i <= $numstop; $i++) {
+                               if ($i == $a->pager['page']) {
+                                       _l($pages, $i, '#',  $i, 'current active');
+                               } else {
+                                       _l($pages, $i, $url . '&page='. $i, $i, 'n');
+                               }
                        }
 
-                       if(($a->pager['total'] % $a->pager['itemspage']) != 0) {
-                               if($i == $a->pager['page'])
-                                       _l($pages, $i, "#",  $i, "current");
-                               else
-                                       _l($pages, $i, $url."&page=$i", $i, "n");
+                       if (($a->pager['total'] % $a->pager['itemspage']) != 0) {
+                               if ($i == $a->pager['page']) {
+                                       _l($pages, $i, '#',  $i, 'current active');
+                               } else {
+                                       _l($pages, $i, $url . '&page=' . $i, $i, 'n');
+                               }
                        }
 
                        $data['pages'] = $pages;
 
                        $lastpage = (($numpages > intval($numpages)) ? intval($numpages)+1 : $numpages);
-                       _l($data, "last", $url."&page=$lastpage", t('last'));
-
-                       if(($a->pager['total'] - ($a->pager['itemspage'] * $a->pager['page'])) > 0)
-                               _l($data, "next", $url."&page=".($a->pager['page'] + 1), t('next'));
-
+                       _l($data, 'next', $url . '&page=' . ($a->pager['page'] + 1), t('next'), $a->pager['page'] == $lastpage ? 'disabled' : '');
+                       _l($data, 'last', $url . '&page=' . $lastpage, t('last'), $a->pager['page'] == $lastpage ? 'disabled' : '');
                }
        }
-       return $data;
 
-}}
+       return $data;
+}
 
 if(! function_exists('paginate')) {
 /**
index 14751308344f39fc233566aaffa717ea6f871c41..e8c071113d097d9b8cc2d8bd0b6fe93cfc03ed3e 100644 (file)
@@ -649,9 +649,7 @@ function admin_page_site_post(App $a) {
        $diaspora_enabled       =       ((x($_POST,'diaspora_enabled'))         ? True                                          : False);
        $ssl_policy             =       ((x($_POST,'ssl_policy'))               ? intval($_POST['ssl_policy'])                  : 0);
        $force_ssl              =       ((x($_POST,'force_ssl'))                ? True                                          : False);
-       $old_share              =       ((x($_POST,'old_share'))                ? True                                          : False);
        $hide_help              =       ((x($_POST,'hide_help'))                ? True                                          : False);
-       $suppress_language      =       ((x($_POST,'suppress_language'))        ? True                                          : False);
        $suppress_tags          =       ((x($_POST,'suppress_tags'))            ? True                                          : False);
        $use_fulltext_engine    =       ((x($_POST,'use_fulltext_engine'))      ? True                                          : False);
        $itemcache              =       ((x($_POST,'itemcache'))                ? notags(trim($_POST['itemcache']))             : '');
@@ -662,7 +660,6 @@ function admin_page_site_post(App $a) {
        $basepath               =       ((x($_POST,'basepath'))                 ? notags(trim($_POST['basepath']))              : '');
        $singleuser             =       ((x($_POST,'singleuser'))               ? notags(trim($_POST['singleuser']))            : '');
        $proxy_disabled         =       ((x($_POST,'proxy_disabled'))           ? True                                          : False);
-       $old_pager              =       ((x($_POST,'old_pager'))                ? True                                          : False);
        $only_tag_search        =       ((x($_POST,'only_tag_search'))          ? True                                          : False);
        $rino                   =       ((x($_POST,'rino'))                     ? intval($_POST['rino'])                        : 0);
        $embedly                =       ((x($_POST,'embedly'))                  ? notags(trim($_POST['embedly']))               : '');
@@ -734,7 +731,6 @@ function admin_page_site_post(App $a) {
        set_config('config','sitename',$sitename);
        set_config('config','hostname',$hostname);
        set_config('config','sender_email', $sender_email);
-       set_config('system','suppress_language',$suppress_language);
        set_config('system','suppress_tags',$suppress_tags);
        set_config('system','shortcut_icon',$shortcut_icon);
        set_config('system','touch_icon',$touch_icon);
@@ -805,7 +801,6 @@ function admin_page_site_post(App $a) {
        set_config('config','private_addons', $private_addons);
 
        set_config('system','force_ssl', $force_ssl);
-       set_config('system','old_share', $old_share);
        set_config('system','hide_help', $hide_help);
        set_config('system','use_fulltext_engine', $use_fulltext_engine);
        set_config('system','itemcache', $itemcache);
@@ -815,7 +810,6 @@ function admin_page_site_post(App $a) {
        set_config('system','temppath', $temppath);
        set_config('system','basepath', $basepath);
        set_config('system','proxy_disabled', $proxy_disabled);
-       set_config('system','old_pager', $old_pager);
        set_config('system','only_tag_search', $only_tag_search);
        set_config('system','worker', $worker);
        set_config('system','worker_queues', $worker_queues);
@@ -996,7 +990,6 @@ function admin_page_site(App $a) {
                '$theme_mobile'         => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
                '$ssl_policy'           => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
                '$force_ssl'            => array('force_ssl', t("Force SSL"), get_config('system','force_ssl'), t("Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.")),
-               '$old_share'            => array('old_share', t("Old style 'Share'"), get_config('system','old_share'), t("Deactivates the bbcode element 'share' for repeating items.")),
                '$hide_help'            => array('hide_help', t("Hide help entry from navigation menu"), get_config('system','hide_help'), t("Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.")),
                '$singleuser'           => array('singleuser', t("Single user instance"), get_config('system','singleuser'), t("Make this instance multi-user or single-user for the named user"), $user_names),
                '$maximagesize'         => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
@@ -1052,7 +1045,6 @@ function admin_page_site(App $a) {
                '$nodeinfo'             => array('nodeinfo', t("Publish server information"), get_config('system','nodeinfo'), t("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.")),
 
                '$use_fulltext_engine'  => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")),
-               '$suppress_language'    => array('suppress_language', t("Suppress Language"), get_config('system','suppress_language'), t("Suppress language information in meta information about a posting.")),
                '$suppress_tags'        => array('suppress_tags', t("Suppress Tags"), get_config('system','suppress_tags'), t("Suppress showing a list of hashtags at the end of the posting.")),
                '$itemcache'            => array('itemcache', t("Path to item cache"), get_config('system','itemcache'), t("The item caches buffers generated bbcode and external images.")),
                '$itemcache_duration'   => array('itemcache_duration', t("Cache duration in seconds"), get_config('system','itemcache_duration'), t("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.")),
@@ -1061,7 +1053,6 @@ function admin_page_site(App $a) {
                '$temppath'             => array('temppath', t("Temp path"), get_config('system','temppath'), t("If you have a restricted system where the webserver can't access the system temp path, enter another path here.")),
                '$basepath'             => array('basepath', t("Base path to installation"), get_config('system','basepath'), t("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.")),
                '$proxy_disabled'       => array('proxy_disabled', t("Disable picture proxy"), get_config('system','proxy_disabled'), t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.")),
-               '$old_pager'            => array('old_pager', t("Enable old style pager"), get_config('system','old_pager'), t("The old style pager has page numbers but slows down massively the page speed.")),
                '$only_tag_search'      => array('only_tag_search', t("Only search in tags"), get_config('system','only_tag_search'), t("On large systems the text search can slow down the system extremely.")),
 
                '$relocate_url'         => array('relocate_url', t("New base url"), App::get_baseurl(), t("Change base url for this server. Sends relocate message to all DFRN contacts of all users.")),
index 7c92ff462f65aeda743ffa3dcb4636aa376c56f3..174330401019dd544af812de5101bdb42bc1bbfe 100644 (file)
@@ -48,27 +48,6 @@ function community_content(App $a, $update = 0) {
        // Only public posts can be shown
        // OR your own posts if you are a logged in member
 
-       if(get_config('system', 'old_pager')) {
-               $r = qu("SELECT COUNT(distinct(`item`.`uri`)) AS `total`
-                       FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
-                       INNER JOIN `user` ON `user`.`uid` = `item`.`uid` AND `user`.`hidewall` = 0
-                       WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
-                       AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
-                       AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
-                       AND `item`.`private` = 0 AND `item`.`wall` = 1"
-               );
-
-               if (dbm::is_result($r))
-                       $a->set_pager_total($r[0]['total']);
-
-               if(! $r[0]['total']) {
-                       info( t('No results.') . EOL);
-                       return $o;
-               }
-
-       }
-
        $r = community_getitems($a->pager['start'], $a->pager['itemspage']);
 
        if (! dbm::is_result($r)) {
@@ -105,13 +84,9 @@ function community_content(App $a, $update = 0) {
 
        // we behave the same in message lists as the search module
 
-       $o .= conversation($a,$s,'community',$update);
+       $o .= conversation($a, $s, 'community', $update);
 
-       if(!get_config('system', 'old_pager')) {
-               $o .= alt_pager($a,count($r));
-       } else {
-               $o .= paginate($a);
-       }
+        $o .= alt_pager($a, count($r));
 
        return $o;
 }
index 23cf098b65b25913ad3bc95bd0ec2f3ac6d3411d..a1181a74cb3a295777c42e54d5262c8630aa00f1 100644 (file)
@@ -599,21 +599,6 @@ function network_content(App $a, $update = 0) {
                $pager_sql = '';
 
        } else {
-               if(get_config('system', 'old_pager')) {
-                       $r = qu("SELECT COUNT(*) AS `total`
-                               FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
-                               AND (NOT `contact`.`blocked` OR `contact`.`pending`)
-                               WHERE $sql_table.`uid` = %d AND $sql_table.`visible` AND NOT $sql_table.`deleted`
-                               $sql_extra2 $sql_extra3
-                               $sql_extra $sql_nets ",
-                               intval($_SESSION['uid'])
-                       );
-
-                       if (dbm::is_result($r)) {
-                               $a->set_pager_total($r[0]['total']);
-                       }
-               }
-
                //  check if we serve a mobile device and get the user settings
                //  accordingly
                if ($a->is_mobile) {
@@ -788,15 +773,13 @@ function network_content(App $a, $update = 0) {
 
        $mode = (($nouveau) ? 'network-new' : 'network');
 
-       $o .= conversation($a,$items,$mode,$update);
+       $o .= conversation($a, $items, $mode, $update);
 
        if (!$update) {
-               if (get_pconfig(local_user(),'system','infinite_scroll')) {
+               if (get_pconfig(local_user(), 'system', 'infinite_scroll')) {
                        $o .= scroll_loader();
-               } elseif (!get_config('system', 'old_pager')) {
-                       $o .= alt_pager($a,count($items));
                } else {
-                       $o .= paginate($a);
+                       $o .= alt_pager($a, count($items));
                }
        }
 
index e084b25da3ed9dafac9345d6ee8e9c643da51f8d..6f204947579bfafd263019709422f62e1ef40add 100644 (file)
@@ -228,9 +228,10 @@ function nodeinfo_cron() {
 
         logger("local_posts: ".$local_posts, LOGGER_DEBUG);
 
-       $posts = qu("SELECT COUNT(*) AS `local_comments` FROM `item`
-                       INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                       WHERE `contact`.`self` and `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')",
+       $posts = qu("SELECT COUNT(*) FROM `contact`
+                       INNER JOIN `item` ON `item`.`contact-id` = `contact`.`id` AND `item`.`uid` = `contact`.`uid` AND
+                               `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')
+                       WHERE `contact`.`self`",
                        dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
 
        if (!is_array($posts))
index 8cd1b29ea426edc9b98413096f4465b948c074da..0c08b66ce0459d9b83fbb8bea5a3b760221f79ad 100644 (file)
@@ -194,10 +194,14 @@ function notifications_content(App $a) {
                                                if($it['network'] === NETWORK_DFRN) {
                                                        $lbl_knowyou = t('Claims to be known to you: ');
                                                        $knowyou = (($it['knowyou']) ? t('yes') : t('no'));
-                                                       $helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Fan/Admirer" means that you allow to read but you do not want to read theirs. Approve as: ');
+                                                       $helptext = t('Shall your connection be bidirectional or not?');
+                                                       $helptext2 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
+                                                       $helptext3 = sprintf(t('Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
                                                } else {
                                                        $knowyou = '';
-                                                       $helptext = t('Shall your connection be bidirectional or not? "Friend" implies that you allow to read and you subscribe to their posts. "Sharer" means that you allow to read but you do not want to read theirs. Approve as: ');
+                                                       $helptext = t('Shall your connection be bidirectional or not?');
+                                                       $helptext2 = sprintf(t('Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed.'), $it['name'], $it['name']);
+                                                       $helptext3 = sprintf(t('Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed.'), $it['name']);
                                                }
                                        }
 
@@ -205,9 +209,11 @@ function notifications_content(App $a) {
                                                '$intro_id' => $it['intro_id'],
                                                '$friend_selected' => $friend_selected,
                                                '$fan_selected' => $fan_selected,
-                                               '$approve_as' => $helptext,
+                                               '$approve_as1' => $helptext,
+                                               '$approve_as2' => $helptext2,
+                                               '$approve_as3' => $helptext3,
                                                '$as_friend' => t('Friend'),
-                                               '$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Fan/Admirer'))
+                                               '$as_fan' => (($it['network'] == NETWORK_DIASPORA) ? t('Sharer') : t('Subscriber'))
                                        ));
 
                                        $header = $it["name"];
index 5dd8293c7fd0613d083f6b93dfcbb5a5f4df502e..fbce509d29634e4f6a2402b1636c8360190366fc 100644 (file)
@@ -240,21 +240,15 @@ function profile_content(App $a, $update = 0) {
                        $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
                }
 
-               if(get_config('system', 'old_pager')) {
-                   $r = q("SELECT COUNT(*) AS `total`
-                           FROM `thread` INNER JOIN `item` ON `item`.`id` = `thread`.`iid`
-                           $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
-                           AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
-                           WHERE `thread`.`uid` = %d AND `thread`.`visible` = 1 AND `thread`.`deleted` = 0
-                           and `thread`.`moderated` = 0
-                           AND `thread`.`wall` = 1
-                           $sql_extra $sql_extra2 ",
-                           intval($a->profile['profile_uid'])
-                       );
-
-                       if (dbm::is_result($r)) {
-                               $a->set_pager_total($r[0]['total']);
-                       }
+               // Belongs the profile page to a forum?
+               // If not then we can improve the performance with an additional condition
+               $r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `page-flags` IN (%d, %d)",
+                       intval($a->profile['profile_uid']),
+                       intval(PAGE_COMMUNITY),
+                       intval(PAGE_PRVGROUP));
+
+               if (!dbm::is_result($r)) {
+                       $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
                }
 
                //  check if we serve a mobile device and get the user settings
@@ -282,14 +276,12 @@ function profile_content(App $a, $update = 0) {
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
                                AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
                        WHERE `thread`.`uid` = %d AND `thread`.`visible`
-                               AND `thread`.`contact-id` = %d
                                AND NOT `thread`.`deleted`
                                AND NOT `thread`.`moderated`
                                AND `thread`.`wall`
-                               $sql_extra $sql_extra2
+                               $sql_extra3 $sql_extra $sql_extra2
                        ORDER BY `thread`.`created` DESC $pager_sql",
-                       intval($a->profile['profile_uid']),
-                       intval($a->profile['contact_id'])
+                       intval($a->profile['profile_uid'])
                );
        }
 
@@ -326,14 +318,10 @@ function profile_content(App $a, $update = 0) {
                );
        }
 
-       $o .= conversation($a,$items,'profile',$update);
+       $o .= conversation($a, $items, 'profile', $update);
 
-       if(! $update) {
-               if(!get_config('system', 'old_pager')) {
-                       $o .= alt_pager($a,count($items));
-               } else {
-                       $o .= paginate($a);
-               }
+       if (!$update) {
+               $o .= alt_pager($a, count($items));
        }
 
        return $o;
index 928ccdef263efc45b7f24f66c6c8c123f945888a..36a4d5945fcb4cc7b7bb07d8e862324104fa083b 100644 (file)
@@ -15,28 +15,18 @@ function share_init(App $a) {
        if(! dbm::is_result($r) || ($r[0]['private'] == 1))
                killme();
 
-       if (!intval(get_config('system','old_share'))) {
-               if (strpos($r[0]['body'], "[/share]") !== false) {
-                       $pos = strpos($r[0]['body'], "[share");
-                       $o = substr($r[0]['body'], $pos);
-               } else {
-                       $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
-
-                       if($r[0]['title'])
-                               $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
-                       $o .= $r[0]['body'];
-                       $o.= "[/share]";
-               }
+       if (strpos($r[0]['body'], "[/share]") !== false) {
+               $pos = strpos($r[0]['body'], "[share");
+               $o = substr($r[0]['body'], $pos);
        } else {
-               $o = '';
+               $o = share_header($r[0]['author-name'], $r[0]['author-link'], $r[0]['author-avatar'], $r[0]['guid'], $r[0]['created'], $r[0]['plink']);
 
-               $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]' . "\n";
                if($r[0]['title'])
-                       $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n";
-               $o .= $r[0]['body'] . "\n" ;
-
-               $o .= (($r[0]['plink']) ? '[url=' . $r[0]['plink'] . ']' . t('link') . '[/url]' . "\n" : '');
+                       $o .= '[b]'.$r[0]['title'].'[/b]'."\n";
+               $o .= $r[0]['body'];
+               $o.= "[/share]";
        }
+
        echo $o;
        killme();
 }
index d95af3419a0f8babb385e3505538b1898fe77c2f..b693520b93d8cb2e932af589a6b5da94cb51a46a 100644 (file)
@@ -287,32 +287,6 @@ class Item extends BaseObject {
 
                localize_item($item);
 
-               if ($item["postopts"] and !get_config("system", "suppress_language")) {
-                       //$langdata = explode(";", $item["postopts"]);
-                       //$langstr = substr($langdata[0], 5)." (".round($langdata[1]*100, 1)."%)";
-                       $langstr = "";
-                       if (substr($item["postopts"], 0, 5) == "lang=") {
-                               $postopts = substr($item["postopts"], 5);
-
-                               $languages = explode(":", $postopts);
-
-                               if (sizeof($languages) == 1) {
-                                       $languages = array();
-                                       $languages[] = $postopts;
-                               }
-
-                               foreach ($languages as $language) {
-                                       $langdata = explode(";", $language);
-                                       if ($langstr != "") {
-                                               $langstr .= ", ";
-                                       }
-
-                                       //$langstr .= $langdata[0]." (".round($langdata[1]*100, 1)."%)";
-                                       $langstr .= round($langdata[1]*100, 1)."% ".$langdata[0];
-                               }
-                       }
-               }
-
                $body = prepare_body($item,true);
 
                list($categories, $folders) = get_cats_and_terms($item);
@@ -420,7 +394,6 @@ class Item extends BaseObject {
                        'previewing'      => ($conv->is_preview() ? ' preview ' : ''),
                        'wait'            => t('Please wait'),
                        'thread_level'    => $thread_level,
-                       'postopts'        => $langstr,
                        'edited'          => $edited,
                        'network'         => $item["item_network"],
                        'network_name'    => network_to_name($item['item_network'], $profile_link),
index 041de9cfff4b2acc1d85f822a94f25bac939bd95..64259bbb1dcceec7974f5fdfc9bb5535d00ab886 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1214);
+define('UPDATE_VERSION' , 1215);
 
 /**
  *
index 696fa565f1648a0e5d0c18f6e9dec5f4e6dee689..150e2efaa0c835e3ea6dd05c27f3f6a2641da0e8 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-19 07:46+0100\n"
+"POT-Creation-Date: 2017-03-03 10:29+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,112 +18,6 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr ""
-
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr ""
-
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr ""
-
-#: include/contact_widgets.php:10 include/identity.php:218
-#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
-#: mod/suggest.php:101
-msgid "Connect"
-msgstr ""
-
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr ""
-
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr ""
-
-#: include/contact_widgets.php:32 include/Contact.php:354
-#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
-#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
-msgid "Connect/Follow"
-msgstr ""
-
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr ""
-
-#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
-msgid "Find"
-msgstr ""
-
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
-msgstr ""
-
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-msgid "Similar Interests"
-msgstr ""
-
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr ""
-
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-msgid "Invite Friends"
-msgstr ""
-
-#: include/contact_widgets.php:108
-msgid "Networks"
-msgstr ""
-
-#: include/contact_widgets.php:111
-msgid "All Networks"
-msgstr ""
-
-#: include/contact_widgets.php:141 include/features.php:110
-msgid "Saved Folders"
-msgstr ""
-
-#: include/contact_widgets.php:144 include/contact_widgets.php:176
-msgid "Everything"
-msgstr ""
-
-#: include/contact_widgets.php:173
-msgid "Categories"
-msgstr ""
-
-#: include/contact_widgets.php:237
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2245 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:972
-msgid "show more"
-msgstr ""
-
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr ""
-
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr ""
-
 #: include/profile_selectors.php:6
 msgid "Male"
 msgstr ""
@@ -176,7 +70,7 @@ msgstr ""
 msgid "Other"
 msgstr ""
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
+#: include/profile_selectors.php:6 include/conversation.php:1478
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] ""
@@ -358,2371 +252,2525 @@ msgstr ""
 msgid "Ask me"
 msgstr ""
 
-#: include/dba_pdo.php:72 include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
+#: view/theme/vier/theme.php:250
+msgid "Forums"
 msgstr ""
 
-#: include/auth.php:45
-msgid "Logged out."
+#: include/ForumManager.php:116 view/theme/vier/theme.php:252
+msgid "External link to forum"
 msgstr ""
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
-msgid "Login failed."
+#: include/ForumManager.php:119 include/contact_widgets.php:253
+#: include/items.php:2254 mod/content.php:624 object/Item.php:447
+#: view/theme/vier/theme.php:255 boot.php:971
+msgid "show more"
 msgstr ""
 
-#: include/auth.php:132 include/user.php:75
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: include/NotificationsManager.php:153
+msgid "System"
 msgstr ""
 
-#: include/auth.php:132 include/user.php:75
-msgid "The error message was:"
+#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:412
+#: view/theme/frio/theme.php:253
+msgid "Network"
 msgstr ""
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: include/NotificationsManager.php:167 mod/profiles.php:695
+#: mod/network.php:846
+msgid "Personal"
 msgstr ""
 
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
+#: include/NotificationsManager.php:174 include/nav.php:105
+#: include/nav.php:161
+msgid "Home"
 msgstr ""
 
-#: include/group.php:242
-msgid "Everybody"
+#: include/NotificationsManager.php:181 include/nav.php:166
+msgid "Introductions"
 msgstr ""
 
-#: include/group.php:265
-msgid "edit"
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: include/group.php:288
-msgid "Edit groups"
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: include/group.php:290
-msgid "Edit group"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: include/group.php:291
-msgid "Create a new group"
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: include/group.php:294
-msgid "Contacts not in any group"
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
 msgstr ""
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
 msgstr ""
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: include/NotificationsManager.php:803
+msgid "New Follower"
 msgstr ""
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
+#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
+#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
+msgid "Wall Photos"
 msgstr ""
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: include/auth.php:45
+msgid "Logged out."
 msgstr ""
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: include/auth.php:116 include/auth.php:177 mod/openid.php:110
+msgid "Login failed."
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
+#: include/auth.php:131 include/user.php:75
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
+#: include/auth.php:131 include/user.php:75
+msgid "The error message was:"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
+#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
+msgid "Image/photo"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
+#: include/bbcode.php:467
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
+#: include/bbcode.php:1015 include/bbcode.php:1035
+msgid "$1 wrote:"
 msgstr ""
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
+#: include/bbcode.php:1064 include/bbcode.php:1065
+msgid "Encrypted content"
 msgstr ""
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
+#: include/bbcode.php:1167
+msgid "Invalid source protocol"
 msgstr ""
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
+#: include/bbcode.php:1177
+msgid "Invalid link protocol"
 msgstr ""
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: include/dba_pdo.php:72 include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
+#: include/enotify.php:24
+msgid "Friendica Notification"
 msgstr ""
 
-#: include/contact_selectors.php:80 mod/settings.php:842
-#: mod/dfrn_request.php:870
-msgid "Diaspora"
+#: include/enotify.php:27
+msgid "Thank You,"
 msgstr ""
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
 msgstr ""
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
+#: include/enotify.php:43 include/delivery.php:482
+msgid "noreply"
 msgstr ""
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
 msgstr ""
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: include/contact_selectors.php:87
-msgid "Google+"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
+#: include/enotify.php:86
+msgid "a private message"
 msgstr ""
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/contact_selectors.php:92
-msgid "App.net"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: include/acl_selectors.php:332
+#: include/enotify.php:161
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
-msgstr ""
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
+#: include/enotify.php:173
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: include/acl_selectors.php:350
-msgid "Close"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: include/like.php:163 include/conversation.php:130
-#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
-#: mod/tagger.php:62
-msgid "photo"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-msgid "status"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: include/like.php:165 include/conversation.php:122
-#: include/conversation.php:258 include/text.php:1802
-msgid "event"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
+#: include/enotify.php:215
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
+msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: include/like.php:184 include/conversation.php:144
+#: include/enotify.php:216
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: include/like.php:186
+#: include/enotify.php:231
 #, php-format
-msgid "%1$s is attending %2$s's %3$s"
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: include/like.php:188
+#: include/enotify.php:233
 #, php-format
-msgid "%1$s is not attending %2$s's %3$s"
+msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: include/like.php:190
+#: include/enotify.php:234
 #, php-format
-msgid "%1$s may attend %2$s's %3$s"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
-#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
-msgid "Wall Photos"
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
+#: include/enotify.php:248
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/uimport.php:120 include/uimport.php:131
+#: include/enotify.php:273 include/enotify.php:274
 #, php-format
-msgid "User '%s' already exists on this server!"
+msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/uimport.php:153
-msgid "User creation error"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/uimport.php:173
-msgid "User profile creation error"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/uimport.php:222
+#: include/enotify.php:288
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
+#: include/enotify.php:293
+msgid "Name:"
 msgstr ""
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
+#: include/enotify.php:294
+msgid "Photo:"
 msgstr ""
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/datetime.php:341
-msgid "never"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/datetime.php:347
-msgid "less than a second ago"
+#: include/enotify.php:308 include/enotify.php:322
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/datetime.php:350
-msgid "year"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
 msgstr ""
 
-#: include/datetime.php:350
-msgid "years"
+#: include/enotify.php:314
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
+#: include/enotify.php:326
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
 msgstr ""
 
-#: include/datetime.php:351
-msgid "months"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
 msgstr ""
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
+#: include/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/datetime.php:352
-msgid "weeks"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/datetime.php:353
-msgid "days"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/datetime.php:354
-msgid "hour"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: include/datetime.php:354
-msgid "hours"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/datetime.php:355
-msgid "minute"
+#: include/follow.php:81 mod/dfrn_request.php:512
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: include/datetime.php:355
-msgid "minutes"
+#: include/follow.php:86
+msgid "Connect URL missing."
 msgstr ""
 
-#: include/datetime.php:356
-msgid "second"
+#: include/follow.php:114
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: include/datetime.php:356
-msgid "seconds"
+#: include/follow.php:115 include/follow.php:129
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
+#: include/follow.php:127
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
+#: include/follow.php:132
+msgid "An author or name was not found."
 msgstr ""
 
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
+#: include/follow.php:135
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
+#: include/follow.php:138
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: include/enotify.php:27
-msgid "Thank You,"
+#: include/follow.php:139
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
+#: include/follow.php:145
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
+#: include/follow.php:150
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
+#: include/follow.php:251
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
 msgstr ""
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: include/group.php:243
+msgid "Everybody"
 msgstr ""
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
+#: include/group.php:266
+msgid "edit"
 msgstr ""
 
-#: include/enotify.php:86
-msgid "a private message"
+#: include/group.php:287 mod/newmember.php:61
+msgid "Groups"
 msgstr ""
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: include/group.php:289
+msgid "Edit groups"
 msgstr ""
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/group.php:291
+msgid "Edit group"
 msgstr ""
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/group.php:292
+msgid "Create a new group"
 msgstr ""
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/group.php:293 mod/group.php:98 mod/group.php:188
+msgid "Group Name: "
 msgstr ""
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/group.php:295
+msgid "Contacts not in any group"
 msgstr ""
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: include/group.php:297 mod/network.php:200
+msgid "add"
 msgstr ""
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: include/like.php:164 include/conversation.php:130
+#: include/conversation.php:266 include/text.php:1806 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "photo"
 msgstr ""
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: include/like.php:164 include/conversation.php:125
+#: include/conversation.php:134 include/conversation.php:261
+#: include/conversation.php:270 include/diaspora.php:1530 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "status"
 msgstr ""
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: include/like.php:166 include/conversation.php:122
+#: include/conversation.php:258 include/text.php:1804
+msgid "event"
 msgstr ""
 
-#: include/enotify.php:174
+#: include/like.php:184 include/conversation.php:141 include/diaspora.php:1526
 #, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: include/enotify.php:185
+#: include/like.php:187 include/conversation.php:144
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: include/enotify.php:187
+#: include/like.php:190
 #, php-format
-msgid "%1$s tagged you at %2$s"
+msgid "%1$s is attending %2$s's %3$s"
 msgstr ""
 
-#: include/enotify.php:188
+#: include/like.php:193
 #, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+msgid "%1$s is not attending %2$s's %3$s"
 msgstr ""
 
-#: include/enotify.php:199
+#: include/like.php:196
 #, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
 msgstr ""
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
 msgstr ""
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
 msgstr ""
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: include/nav.php:40 include/text.php:1017
+msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1833
+msgid "Logout"
 msgstr ""
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
 msgstr ""
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: include/nav.php:81 include/identity.php:766 mod/contacts.php:645
+#: mod/contacts.php:841 view/theme/frio/theme.php:246
+msgid "Status"
 msgstr ""
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
 msgstr ""
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
+#: include/nav.php:82 include/identity.php:617 include/identity.php:741
+#: include/identity.php:774 mod/newmember.php:32 mod/profperm.php:105
+#: mod/contacts.php:647 mod/contacts.php:849 view/theme/frio/theme.php:247
+msgid "Profile"
 msgstr ""
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
 msgstr ""
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/nav.php:83 include/identity.php:782 mod/fbrowser.php:31
+#: view/theme/frio/theme.php:248
+msgid "Photos"
 msgstr ""
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
 msgstr ""
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: include/nav.php:84 include/identity.php:790 include/identity.php:793
+#: view/theme/frio/theme.php:249
+msgid "Videos"
 msgstr ""
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
 msgstr ""
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: include/nav.php:85 include/nav.php:149 include/identity.php:802
+#: include/identity.php:813 mod/cal.php:270 mod/events.php:386
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
 msgstr ""
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
 msgstr ""
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: include/nav.php:86
+msgid "Personal notes"
 msgstr ""
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
+#: include/nav.php:86
+msgid "Your personal notes"
 msgstr ""
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1834
+msgid "Login"
 msgstr ""
 
-#: include/enotify.php:288
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/nav.php:95
+msgid "Sign in"
 msgstr ""
 
-#: include/enotify.php:293
-msgid "Name:"
+#: include/nav.php:105
+msgid "Home Page"
 msgstr ""
 
-#: include/enotify.php:294
-msgid "Photo:"
+#: include/nav.php:109 mod/register.php:289 boot.php:1809
+msgid "Register"
 msgstr ""
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: include/nav.php:109
+msgid "Create an account"
 msgstr ""
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
+msgid "Help"
 msgstr ""
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
+#: include/nav.php:115
+msgid "Help and documentation"
 msgstr ""
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: include/nav.php:119
+msgid "Apps"
 msgstr ""
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
+#: include/nav.php:123 include/text.php:1014 mod/search.php:149
+msgid "Search"
 msgstr ""
 
-#: include/enotify.php:326
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
+#: include/nav.php:123
+msgid "Search site content"
 msgstr ""
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
+#: include/nav.php:126 include/text.php:1022
+msgid "Full Text"
 msgstr ""
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: include/nav.php:127 include/text.php:1023
+msgid "Tags"
 msgstr ""
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
+#: include/nav.php:128 include/nav.php:192 include/identity.php:835
+#: include/identity.php:838 include/text.php:1024 mod/contacts.php:800
+#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
+msgid "Contacts"
 msgstr ""
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
 msgstr ""
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: include/nav.php:143
+msgid "Conversations on this site"
 msgstr ""
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/nav.php:145
+msgid "Conversations on the network"
 msgstr ""
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: include/nav.php:149 include/identity.php:805 include/identity.php:816
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
 msgstr ""
 
-#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
+#: include/nav.php:152
+msgid "Directory"
 msgstr ""
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:158
-msgid "Starts:"
+#: include/nav.php:152
+msgid "People directory"
 msgstr ""
 
-#: include/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:166
-msgid "Finishes:"
+#: include/nav.php:154
+msgid "Information"
 msgstr ""
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/bb2diaspora.php:174 include/identity.php:328
-#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
-#: mod/contacts.php:628
-msgid "Location:"
+#: include/nav.php:154
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: include/event.php:441
-msgid "Sun"
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
 msgstr ""
 
-#: include/event.php:442
-msgid "Mon"
+#: include/nav.php:159
+msgid "Network Reset"
 msgstr ""
 
-#: include/event.php:443
-msgid "Tue"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: include/event.php:444
-msgid "Wed"
+#: include/nav.php:166
+msgid "Friend Requests"
 msgstr ""
 
-#: include/event.php:445
-msgid "Thu"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
 msgstr ""
 
-#: include/event.php:446
-msgid "Fri"
+#: include/nav.php:170
+msgid "See all notifications"
 msgstr ""
 
-#: include/event.php:447
-msgid "Sat"
+#: include/nav.php:171 mod/settings.php:906
+msgid "Mark as seen"
 msgstr ""
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
-msgstr ""
-
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
+#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
+msgid "Messages"
 msgstr ""
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
 msgstr ""
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
+#: include/nav.php:176
+msgid "Inbox"
 msgstr ""
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
+#: include/nav.php:177
+msgid "Outbox"
 msgstr ""
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
 msgstr ""
 
-#: include/event.php:455
-msgid "Jan"
+#: include/nav.php:181
+msgid "Manage"
 msgstr ""
 
-#: include/event.php:456
-msgid "Feb"
+#: include/nav.php:181
+msgid "Manage other pages"
 msgstr ""
 
-#: include/event.php:457
-msgid "Mar"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
 msgstr ""
 
-#: include/event.php:458
-msgid "Apr"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
 msgstr ""
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1545 mod/admin.php:1815 view/theme/frio/theme.php:256
+msgid "Settings"
 msgstr ""
 
-#: include/event.php:460
-msgid "Jun"
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
 msgstr ""
 
-#: include/event.php:461
-msgid "Jul"
+#: include/nav.php:189 include/identity.php:285
+msgid "Profiles"
 msgstr ""
 
-#: include/event.php:462
-msgid "Aug"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: include/event.php:463
-msgid "Sept"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: include/event.php:464
-msgid "Oct"
+#: include/nav.php:197 mod/admin.php:187
+msgid "Admin"
 msgstr ""
 
-#: include/event.php:465
-msgid "Nov"
+#: include/nav.php:197
+msgid "Site setup and configuration"
 msgstr ""
 
-#: include/event.php:466
-msgid "Dec"
+#: include/nav.php:200
+msgid "Navigation"
 msgstr ""
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
+#: include/nav.php:200
+msgid "Site map"
 msgstr ""
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
+#: include/oembed.php:266
+msgid "Embedded content"
 msgstr ""
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
+#: include/oembed.php:274
+msgid "Embedding disabled"
 msgstr ""
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
+#: include/ostatus.php:1832
+#, php-format
+msgid "%s is now following %s."
 msgstr ""
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
+#: include/ostatus.php:1833
+msgid "following"
 msgstr ""
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
+#: include/ostatus.php:1836
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
+#: include/ostatus.php:1837
+msgid "stopped following"
 msgstr ""
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
+#: include/plugin.php:530 include/plugin.php:532
+msgid "Click here to upgrade."
 msgstr ""
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
+#: include/plugin.php:538
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
+#: include/plugin.php:543
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
+#: include/security.php:22
+msgid "Welcome "
 msgstr ""
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
+#: include/security.php:23
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: include/event.php:483
-msgid "all-day"
+#: include/security.php:26
+msgid "Welcome back "
 msgstr ""
 
-#: include/event.php:485
-msgid "No events to display"
+#: include/security.php:375
+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 ""
 
-#: include/event.php:574
-msgid "l, F j"
+#: include/uimport.php:94
+msgid "Error decoding account file"
 msgstr ""
 
-#: include/event.php:593
-msgid "Edit event"
+#: include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: include/event.php:615 include/text.php:1532 include/text.php:1539
-msgid "link to source"
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: include/event.php:850
-msgid "Export"
+#: include/uimport.php:120 include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: include/event.php:851
-msgid "Export calendar as ical"
+#: include/uimport.php:153
+msgid "User creation error"
 msgstr ""
 
-#: include/event.php:852
-msgid "Export calendar as csv"
+#: include/uimport.php:173
+msgid "User profile creation error"
 msgstr ""
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr ""
+#: include/uimport.php:222
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
+#: include/uimport.php:292
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
+#: include/user.php:39 mod/settings.php:375
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
-msgid "Logout"
+#: include/user.php:48
+msgid "An invitation is required."
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
+#: include/user.php:53
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
+#: include/user.php:61
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
+#: include/user.php:82
+msgid "Please enter the required information."
 msgstr ""
 
-#: include/nav.php:82 include/identity.php:605 include/identity.php:691
-#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
-msgid "Profile"
+#: include/user.php:96
+msgid "Please use a shorter name."
 msgstr ""
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
+#: include/user.php:98
+msgid "Name too short."
 msgstr ""
 
-#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: include/nav.php:84 include/identity.php:738 include/identity.php:741
-#: view/theme/frio/theme.php:252
-msgid "Videos"
+#: include/user.php:121
+msgid "Not a valid email address."
 msgstr ""
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
+#: include/user.php:134
+msgid "Cannot use that email."
 msgstr ""
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:750
-#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
 msgstr ""
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: include/nav.php:86
-msgid "Personal notes"
+#: include/user.php:157
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: include/nav.php:86
-msgid "Your personal notes"
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
-msgid "Login"
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: include/nav.php:95
-msgid "Sign in"
+#: include/user.php:256 view/theme/duepuntozero/config.php:43
+#: view/theme/clean/config.php:60
+msgid "default"
 msgstr ""
 
-#: include/nav.php:105 include/nav.php:161
-#: include/NotificationsManager.php:174
-msgid "Home"
+#: include/user.php:266
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: include/nav.php:105
-msgid "Home Page"
+#: include/user.php:326 include/user.php:334 include/user.php:342
+#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
+#: mod/profile_photo.php:215 mod/profile_photo.php:310
+#: mod/profile_photo.php:320 mod/photos.php:68 mod/photos.php:182
+#: mod/photos.php:768 mod/photos.php:1231 mod/photos.php:1252
+#: mod/photos.php:1839
+msgid "Profile Photos"
 msgstr ""
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1768
-msgid "Register"
+#: include/user.php:417
+#, 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 ""
 
-#: include/nav.php:109
-msgid "Create an account"
+#: include/user.php:427
+#, php-format
+msgid "Registration at %s"
 msgstr ""
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
+#: include/user.php:437
+#, 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 ""
 
-#: include/nav.php:115
-msgid "Help and documentation"
+#: include/user.php:441
+#, 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 ""
 
-#: include/nav.php:119
-msgid "Apps"
+#: include/user.php:473 mod/admin.php:1234
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
+#: include/acl_selectors.php:341
+msgid "Post to Email"
 msgstr ""
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
+#: include/acl_selectors.php:346
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: include/nav.php:123
-msgid "Search site content"
+#: include/acl_selectors.php:347 mod/settings.php:1188
+msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
+#: include/acl_selectors.php:352
+msgid "Visible to everybody"
 msgstr ""
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
+#: include/acl_selectors.php:353 view/theme/vier/config.php:108
+msgid "show"
 msgstr ""
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:783
-#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
-msgid "Contacts"
+#: include/acl_selectors.php:354 view/theme/vier/config.php:108
+msgid "don't show"
 msgstr ""
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
+#: include/acl_selectors.php:360 mod/editpost.php:123
+msgid "CC: email addresses"
 msgstr ""
 
-#: include/nav.php:143
-msgid "Conversations on this site"
+#: include/acl_selectors.php:361 mod/editpost.php:130
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: include/nav.php:145
-msgid "Conversations on the network"
+#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
+#: mod/photos.php:1558
+msgid "Permissions"
 msgstr ""
 
-#: include/nav.php:149 include/identity.php:753 include/identity.php:764
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
+#: include/acl_selectors.php:364
+msgid "Close"
 msgstr ""
 
-#: include/nav.php:152
-msgid "Directory"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/nav.php:152
-msgid "People directory"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
+#: include/conversation.php:185 mod/dfrn_confirm.php:478
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
+#: include/conversation.php:239 mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Network Reset"
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
+#: include/conversation.php:303
+msgid "post/item"
 msgstr ""
 
-#: include/nav.php:166 include/NotificationsManager.php:181
-msgid "Introductions"
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/nav.php:166
-msgid "Friend Requests"
+#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
+#: mod/profiles.php:346
+msgid "Likes"
 msgstr ""
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
+#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
+#: mod/profiles.php:350
+msgid "Dislikes"
 msgstr ""
 
-#: include/nav.php:170
-msgid "See all notifications"
+#: include/conversation.php:588 include/conversation.php:1472
+#: mod/content.php:373 mod/photos.php:1630
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
+msgid "Not attending"
 msgstr ""
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
+#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
+msgid "Might attend"
 msgstr ""
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
+#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
+#: mod/photos.php:1703 object/Item.php:137
+msgid "Select"
 msgstr ""
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
+#: include/conversation.php:711 mod/content.php:454 mod/content.php:760
+#: mod/group.php:181 mod/settings.php:744 mod/contacts.php:816
+#: mod/contacts.php:1015 mod/photos.php:1704 mod/admin.php:1435
+#: object/Item.php:138
+msgid "Delete"
 msgstr ""
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
+#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
+#: mod/content.php:916 object/Item.php:382 object/Item.php:383
+#, php-format
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/nav.php:176
-msgid "Inbox"
+#: include/conversation.php:767 object/Item.php:370
+msgid "Categories:"
 msgstr ""
 
-#: include/nav.php:177
-msgid "Outbox"
+#: include/conversation.php:768 object/Item.php:371
+msgid "Filed under:"
 msgstr ""
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
+#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
+#: object/Item.php:396
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage"
+#: include/conversation.php:791 mod/content.php:513
+msgid "View in context"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage other pages"
+#: include/conversation.php:793 include/conversation.php:1255
+#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
+#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:140
+#: mod/photos.php:1592 object/Item.php:421
+msgid "Please wait"
 msgstr ""
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
+#: include/conversation.php:872
+msgid "remove"
 msgstr ""
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
+#: include/conversation.php:876
+msgid "Delete Selected Items"
 msgstr ""
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
-msgid "Settings"
+#: include/conversation.php:968
+msgid "Follow Thread"
 msgstr ""
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
+#: include/conversation.php:969 include/Contact.php:445
+msgid "View Status"
 msgstr ""
 
-#: include/nav.php:189 include/identity.php:282
-msgid "Profiles"
+#: include/conversation.php:970 include/conversation.php:986
+#: include/Contact.php:388 include/Contact.php:401 include/Contact.php:446
+#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
+#: mod/match.php:73 mod/suggest.php:82
+msgid "View Profile"
 msgstr ""
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
+#: include/conversation.php:971 include/Contact.php:447
+msgid "View Photos"
 msgstr ""
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
+#: include/conversation.php:972 include/Contact.php:448
+msgid "Network Posts"
 msgstr ""
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
+#: include/conversation.php:973 include/Contact.php:449
+msgid "View Contact"
 msgstr ""
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
+#: include/conversation.php:974 include/Contact.php:451
+msgid "Send PM"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Navigation"
+#: include/conversation.php:978 include/Contact.php:452
+msgid "Poke"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Site map"
+#: include/conversation.php:983 include/contact_widgets.php:32
+#: include/Contact.php:402 mod/allfriends.php:69 mod/dirfind.php:210
+#: mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 mod/contacts.php:610
+msgid "Connect/Follow"
 msgstr ""
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
+#: include/conversation.php:1099
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: include/security.php:22
-msgid "Welcome "
+#: include/conversation.php:1102
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
+#: include/conversation.php:1105
+#, php-format
+msgid "%s attends."
 msgstr ""
 
-#: include/security.php:26
-msgid "Welcome back "
+#: include/conversation.php:1108
+#, php-format
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/security.php:373
-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."
+#: include/conversation.php:1111
+#, php-format
+msgid "%s attends maybe."
 msgstr ""
 
-#: include/NotificationsManager.php:153
-msgid "System"
+#: include/conversation.php:1121
+msgid "and"
 msgstr ""
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
+#: include/conversation.php:1127
+#, php-format
+msgid ", and %d other people"
 msgstr ""
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#: include/conversation.php:1136
 #, php-format
-msgid "%s commented on %s's post"
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/NotificationsManager.php:243
+#: include/conversation.php:1137
 #, php-format
-msgid "%s created a new post"
+msgid "%s like this."
 msgstr ""
 
-#: include/NotificationsManager.php:256
+#: include/conversation.php:1140
 #, php-format
-msgid "%s liked %s's post"
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/NotificationsManager.php:267
+#: include/conversation.php:1141
 #, php-format
-msgid "%s disliked %s's post"
+msgid "%s don't like this."
 msgstr ""
 
-#: include/NotificationsManager.php:278
+#: include/conversation.php:1144
 #, php-format
-msgid "%s is attending %s's event"
+msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/NotificationsManager.php:289
+#: include/conversation.php:1145
 #, php-format
-msgid "%s is not attending %s's event"
+msgid "%s attend."
 msgstr ""
 
-#: include/NotificationsManager.php:300
+#: include/conversation.php:1148
 #, php-format
-msgid "%s may attend %s's event"
+msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/NotificationsManager.php:315
+#: include/conversation.php:1149
 #, php-format
-msgid "%s is now friends with %s"
+msgid "%s don't attend."
 msgstr ""
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
+#: include/conversation.php:1152
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
+#: include/conversation.php:1153
+#, php-format
+msgid "%s anttend maybe."
 msgstr ""
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
+#: include/conversation.php:1183 include/conversation.php:1199
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/dbstructure.php:26
-#, 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."
+#: include/conversation.php:1184 include/conversation.php:1200
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: include/conversation.php:1185 include/conversation.php:1201
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
+#: include/conversation.php:1186 include/conversation.php:1202
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
+#: include/conversation.php:1187 include/conversation.php:1203
+msgid "Tag term:"
 msgstr ""
 
-#: include/delivery.php:446
-msgid "(no subject)"
+#: include/conversation.php:1188 include/conversation.php:1204
+#: mod/filer.php:30
+msgid "Save to Folder:"
 msgstr ""
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
+#: include/conversation.php:1189 include/conversation.php:1205
+msgid "Where are you right now?"
 msgstr ""
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
+#: include/conversation.php:1190
+msgid "Delete item(s)?"
 msgstr ""
 
-#: include/network.php:595
-msgid "view full size"
+#: include/conversation.php:1236
+msgid "Share"
 msgstr ""
 
-#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
-#: include/conversation.php:968 include/conversation.php:984
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
+#: include/conversation.php:1237 mod/editpost.php:100 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:138
+msgid "Upload photo"
 msgstr ""
 
-#: include/Contact.php:397 include/conversation.php:967
-msgid "View Status"
+#: include/conversation.php:1238 mod/editpost.php:101
+msgid "upload photo"
 msgstr ""
 
-#: include/Contact.php:399 include/conversation.php:969
-msgid "View Photos"
+#: include/conversation.php:1239 mod/editpost.php:102
+msgid "Attach file"
 msgstr ""
 
-#: include/Contact.php:400 include/conversation.php:970
-msgid "Network Posts"
+#: include/conversation.php:1240 mod/editpost.php:103
+msgid "attach file"
 msgstr ""
 
-#: include/Contact.php:401 include/conversation.php:971
-msgid "View Contact"
+#: include/conversation.php:1241 mod/editpost.php:104 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:139
+msgid "Insert web link"
 msgstr ""
 
-#: include/Contact.php:402
-msgid "Drop Contact"
+#: include/conversation.php:1242 mod/editpost.php:105
+msgid "web link"
 msgstr ""
 
-#: include/Contact.php:403 include/conversation.php:972
-msgid "Send PM"
+#: include/conversation.php:1243 mod/editpost.php:106
+msgid "Insert video link"
 msgstr ""
 
-#: include/Contact.php:404 include/conversation.php:976
-msgid "Poke"
+#: include/conversation.php:1244 mod/editpost.php:107
+msgid "video link"
 msgstr ""
 
-#: include/Contact.php:775
-msgid "Organisation"
+#: include/conversation.php:1245 mod/editpost.php:108
+msgid "Insert audio link"
 msgstr ""
 
-#: include/Contact.php:778
-msgid "News"
+#: include/conversation.php:1246 mod/editpost.php:109
+msgid "audio link"
 msgstr ""
 
-#: include/Contact.php:781
-msgid "Forum"
+#: include/conversation.php:1247 mod/editpost.php:110
+msgid "Set your location"
 msgstr ""
 
-#: include/api.php:1018
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
+#: include/conversation.php:1248 mod/editpost.php:111
+msgid "set location"
 msgstr ""
 
-#: include/api.php:1038
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
+#: include/conversation.php:1249 mod/editpost.php:112
+msgid "Clear browser location"
 msgstr ""
 
-#: include/api.php:1059
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
+#: include/conversation.php:1250 mod/editpost.php:113
+msgid "clear location"
 msgstr ""
 
-#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
-msgid "Image/photo"
+#: include/conversation.php:1252 mod/editpost.php:127
+msgid "Set title"
 msgstr ""
 
-#: include/bbcode.php:467
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/conversation.php:1254 mod/editpost.php:129
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/bbcode.php:1017 include/bbcode.php:1037
-msgid "$1 wrote:"
+#: include/conversation.php:1256 mod/editpost.php:115
+msgid "Permission settings"
 msgstr ""
 
-#: include/bbcode.php:1066 include/bbcode.php:1067
-msgid "Encrypted content"
+#: include/conversation.php:1257 mod/editpost.php:144
+msgid "permissions"
 msgstr ""
 
-#: include/bbcode.php:1169
-msgid "Invalid source protocol"
+#: include/conversation.php:1265 mod/editpost.php:124
+msgid "Public post"
 msgstr ""
 
-#: include/bbcode.php:1179
-msgid "Invalid link protocol"
+#: include/conversation.php:1270 mod/content.php:737 mod/editpost.php:135
+#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
+#: mod/photos.php:1747 object/Item.php:741
+msgid "Preview"
 msgstr ""
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
+#: include/conversation.php:1274 include/items.php:1983 mod/follow.php:124
+#: mod/settings.php:682 mod/settings.php:708 mod/suggest.php:32
+#: mod/tagrm.php:11 mod/tagrm.php:96 mod/videos.php:132 mod/contacts.php:455
+#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
+#: mod/message.php:209 mod/photos.php:240 mod/photos.php:331
+#: mod/dfrn_request.php:889
+msgid "Cancel"
 msgstr ""
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
+#: include/conversation.php:1280
+msgid "Post to Groups"
 msgstr ""
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
+#: include/conversation.php:1281
+msgid "Post to Contacts"
 msgstr ""
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: include/conversation.php:1282
+msgid "Private post"
 msgstr ""
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
+#: include/conversation.php:1287 include/identity.php:259 mod/editpost.php:142
+msgid "Message"
 msgstr ""
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
+#: include/conversation.php:1288 mod/editpost.php:143
+msgid "Browser"
 msgstr ""
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: include/conversation.php:1444
+msgid "View all"
 msgstr ""
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr ""
+#: include/conversation.php:1466
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: include/conversation.php:1469
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1475
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/delivery.php:470
+msgid "(no subject)"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
+#: include/features.php:65
+msgid "General Features"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
+#: include/features.php:67
+msgid "Multiple Profiles"
 msgstr ""
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
+#: include/features.php:68
+msgid "Photo Location"
 msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
+#: include/features.php:68
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present) "
+"prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
+#: include/features.php:69
+msgid "Export Public Calendar"
 msgstr ""
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
-#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
-#: object/Item.php:134
-msgid "Delete"
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
+#: include/features.php:74
+msgid "Post Composition Features"
 msgstr ""
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
+#: include/features.php:75
+msgid "Post Preview"
 msgstr ""
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
+#: include/features.php:76
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: include/conversation.php:870
-msgid "remove"
+#: include/features.php:82
+msgid "Search by Date"
 msgstr ""
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: include/conversation.php:966
-msgid "Follow Thread"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
 msgstr ""
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
 msgstr ""
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
+#: include/features.php:84
+msgid "Group Filter"
 msgstr ""
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
+#: include/features.php:85
+msgid "Network Filter"
 msgstr ""
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s attends maybe."
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: include/conversation.php:1119
-msgid "and"
+#: include/features.php:86 mod/network.php:199 mod/search.php:34
+msgid "Saved Searches"
 msgstr ""
 
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
+#: include/features.php:86
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: include/features.php:91
+msgid "Network Tabs"
 msgstr ""
 
-#: include/conversation.php:1135
-#, php-format
-msgid "%s like this."
+#: include/features.php:92
+msgid "Network Personal Tab"
 msgstr ""
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: include/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
+#: include/features.php:93
+msgid "Network New Tab"
 msgstr ""
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
+#: include/features.php:94
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: include/conversation.php:1146
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: include/conversation.php:1147
-#, php-format
-msgid "%s don't attend."
+#: include/features.php:99
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: include/conversation.php:1150
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
+#: include/features.php:100
+msgid "Multiple Deletion"
 msgstr ""
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
+#: include/features.php:101
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
+#: include/features.php:102
+msgid "Tagging"
 msgstr ""
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
+#: include/features.php:103
+msgid "Post Categories"
 msgstr ""
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
+#: include/features.php:103
+msgid "Add categories to your posts"
 msgstr ""
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
+#: include/features.php:104 include/contact_widgets.php:150
+msgid "Saved Folders"
 msgstr ""
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
+#: include/features.php:105
+msgid "Dislike Posts"
 msgstr ""
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
+#: include/features.php:106
+msgid "Star Posts"
 msgstr ""
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
+#: include/features.php:107
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
 msgstr ""
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
+#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
+#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
+#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
+#: mod/photos.php:1829
+msgid "Contact Photos"
 msgstr ""
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
+#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
+msgid "Miscellaneous"
 msgstr ""
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
+#: include/datetime.php:184 include/identity.php:641
+msgid "Birthday:"
 msgstr ""
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
+#: include/datetime.php:186 mod/profiles.php:720
+msgid "Age: "
 msgstr ""
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
+#: include/datetime.php:188
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
+#: include/datetime.php:343
+msgid "never"
 msgstr ""
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
+#: include/datetime.php:349
+msgid "less than a second ago"
 msgstr ""
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
+#: include/datetime.php:352
+msgid "year"
 msgstr ""
 
-#: include/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
+#: include/datetime.php:352
+msgid "years"
 msgstr ""
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
+#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
+#: mod/events.php:396
+msgid "month"
 msgstr ""
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
+#: include/datetime.php:353
+msgid "months"
 msgstr ""
 
-#: include/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
+#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
+#: mod/events.php:397
+msgid "week"
 msgstr ""
 
-#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
+#: include/datetime.php:354
+msgid "weeks"
 msgstr ""
 
-#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
-#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
-#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
-#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
-#: mod/follow.php:121
-msgid "Cancel"
+#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
+#: mod/events.php:398
+msgid "day"
 msgstr ""
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
+#: include/datetime.php:355
+msgid "days"
 msgstr ""
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
+#: include/datetime.php:356
+msgid "hour"
 msgstr ""
 
-#: include/conversation.php:1291
-msgid "Private post"
+#: include/datetime.php:356
+msgid "hours"
 msgstr ""
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
+#: include/datetime.php:357
+msgid "minute"
 msgstr ""
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
+#: include/datetime.php:357
+msgid "minutes"
 msgstr ""
 
-#: include/conversation.php:1453
-msgid "View all"
+#: include/datetime.php:358
+msgid "second"
 msgstr ""
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:358
+msgid "seconds"
+msgstr ""
 
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:367
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr ""
 
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:585
+#, php-format
+msgid "%s's birthday"
+msgstr ""
 
-#: include/dfrn.php:1108
+#: include/datetime.php:586 include/dfrn.php:1122
 #, php-format
-msgid "%s\\'s birthday"
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: include/features.php:70
-msgid "General Features"
+#: include/event.php:16 include/bb2diaspora.php:199 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: include/features.php:72
-msgid "Multiple Profiles"
+#: include/event.php:33 include/event.php:51 include/event.php:488
+#: include/bb2diaspora.php:205
+msgid "Starts:"
 msgstr ""
 
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
+#: include/event.php:36 include/event.php:57 include/event.php:489
+#: include/bb2diaspora.php:213
+msgid "Finishes:"
 msgstr ""
 
-#: include/features.php:73
-msgid "Photo Location"
+#: include/event.php:39 include/event.php:63 include/event.php:490
+#: include/bb2diaspora.php:221 include/identity.php:331 mod/directory.php:139
+#: mod/contacts.php:636 mod/events.php:501 mod/notifications.php:238
+msgid "Location:"
 msgstr ""
 
-#: include/features.php:73
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present) "
-"prior to stripping metadata and links it to a map."
+#: include/event.php:442
+msgid "Sun"
 msgstr ""
 
-#: include/features.php:74
-msgid "Export Public Calendar"
+#: include/event.php:443
+msgid "Mon"
 msgstr ""
 
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
+#: include/event.php:444
+msgid "Tue"
 msgstr ""
 
-#: include/features.php:79
-msgid "Post Composition Features"
+#: include/event.php:445
+msgid "Wed"
 msgstr ""
 
-#: include/features.php:80
-msgid "Richtext Editor"
+#: include/event.php:446
+msgid "Thu"
 msgstr ""
 
-#: include/features.php:80
-msgid "Enable richtext editor"
+#: include/event.php:447
+msgid "Fri"
 msgstr ""
 
-#: include/features.php:81
-msgid "Post Preview"
+#: include/event.php:448
+msgid "Sat"
 msgstr ""
 
-#: include/features.php:81
-msgid "Allow previewing posts and comments before publishing them"
+#: include/event.php:449 include/text.php:1132 mod/settings.php:981
+msgid "Sunday"
 msgstr ""
 
-#: include/features.php:82
-msgid "Auto-mention Forums"
+#: include/event.php:450 include/text.php:1132 mod/settings.php:981
+msgid "Monday"
 msgstr ""
 
-#: include/features.php:82
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
+#: include/event.php:451 include/text.php:1132
+msgid "Tuesday"
 msgstr ""
 
-#: include/features.php:87
-msgid "Network Sidebar Widgets"
+#: include/event.php:452 include/text.php:1132
+msgid "Wednesday"
 msgstr ""
 
-#: include/features.php:88
-msgid "Search by Date"
+#: include/event.php:453 include/text.php:1132
+msgid "Thursday"
 msgstr ""
 
-#: include/features.php:88
-msgid "Ability to select posts by date ranges"
+#: include/event.php:454 include/text.php:1132
+msgid "Friday"
 msgstr ""
 
-#: include/features.php:89 include/features.php:119
-msgid "List Forums"
+#: include/event.php:455 include/text.php:1132
+msgid "Saturday"
 msgstr ""
 
-#: include/features.php:89
-msgid "Enable widget to display the forums your are connected with"
+#: include/event.php:456
+msgid "Jan"
 msgstr ""
 
-#: include/features.php:90
-msgid "Group Filter"
+#: include/event.php:457
+msgid "Feb"
 msgstr ""
 
-#: include/features.php:90
-msgid "Enable widget to display Network posts only from selected group"
+#: include/event.php:458
+msgid "Mar"
 msgstr ""
 
-#: include/features.php:91
-msgid "Network Filter"
+#: include/event.php:459
+msgid "Apr"
 msgstr ""
 
-#: include/features.php:91
-msgid "Enable widget to display Network posts only from selected network"
+#: include/event.php:460 include/event.php:472 include/text.php:1136
+msgid "May"
 msgstr ""
 
-#: include/features.php:92 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
+#: include/event.php:461
+msgid "Jun"
 msgstr ""
 
-#: include/features.php:92
-msgid "Save search terms for re-use"
+#: include/event.php:462
+msgid "Jul"
 msgstr ""
 
-#: include/features.php:97
-msgid "Network Tabs"
+#: include/event.php:463
+msgid "Aug"
 msgstr ""
 
-#: include/features.php:98
-msgid "Network Personal Tab"
+#: include/event.php:464
+msgid "Sept"
 msgstr ""
 
-#: include/features.php:98
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: include/event.php:465
+msgid "Oct"
 msgstr ""
 
-#: include/features.php:99
-msgid "Network New Tab"
+#: include/event.php:466
+msgid "Nov"
 msgstr ""
 
-#: include/features.php:99
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: include/event.php:467
+msgid "Dec"
 msgstr ""
 
-#: include/features.php:100
-msgid "Network Shared Links Tab"
+#: include/event.php:468 include/text.php:1136
+msgid "January"
 msgstr ""
 
-#: include/features.php:100
-msgid "Enable tab to display only Network posts with links in them"
+#: include/event.php:469 include/text.php:1136
+msgid "February"
 msgstr ""
 
-#: include/features.php:105
-msgid "Post/Comment Tools"
+#: include/event.php:470 include/text.php:1136
+msgid "March"
 msgstr ""
 
-#: include/features.php:106
-msgid "Multiple Deletion"
+#: include/event.php:471 include/text.php:1136
+msgid "April"
 msgstr ""
 
-#: include/features.php:106
-msgid "Select and delete multiple posts/comments at once"
+#: include/event.php:473 include/text.php:1136
+msgid "June"
 msgstr ""
 
-#: include/features.php:107
-msgid "Edit Sent Posts"
+#: include/event.php:474 include/text.php:1136
+msgid "July"
 msgstr ""
 
-#: include/features.php:107
-msgid "Edit and correct posts and comments after sending"
+#: include/event.php:475 include/text.php:1136
+msgid "August"
 msgstr ""
 
-#: include/features.php:108
-msgid "Tagging"
+#: include/event.php:476 include/text.php:1136
+msgid "September"
 msgstr ""
 
-#: include/features.php:108
-msgid "Ability to tag existing posts"
+#: include/event.php:477 include/text.php:1136
+msgid "October"
 msgstr ""
 
-#: include/features.php:109
-msgid "Post Categories"
+#: include/event.php:478 include/text.php:1136
+msgid "November"
 msgstr ""
 
-#: include/features.php:109
-msgid "Add categories to your posts"
+#: include/event.php:479 include/text.php:1136
+msgid "December"
 msgstr ""
 
-#: include/features.php:110
-msgid "Ability to file posts under folders"
+#: include/event.php:480 mod/cal.php:278 mod/events.php:395
+msgid "today"
 msgstr ""
 
-#: include/features.php:111
-msgid "Dislike Posts"
+#: include/event.php:484
+msgid "all-day"
 msgstr ""
 
-#: include/features.php:111
-msgid "Ability to dislike posts/comments"
+#: include/event.php:486
+msgid "No events to display"
 msgstr ""
 
-#: include/features.php:112
-msgid "Star Posts"
+#: include/event.php:596
+msgid "l, F j"
 msgstr ""
 
-#: include/features.php:112
-msgid "Ability to mark special posts with a star indicator"
+#: include/event.php:615
+msgid "Edit event"
 msgstr ""
 
-#: include/features.php:113
-msgid "Mute Post Notifications"
+#: include/event.php:637 include/text.php:1534 include/text.php:1541
+msgid "link to source"
 msgstr ""
 
-#: include/features.php:113
-msgid "Ability to mute notifications for a thread"
+#: include/event.php:872
+msgid "Export"
 msgstr ""
 
-#: include/features.php:118
-msgid "Advanced Profile Settings"
+#: include/event.php:873
+msgid "Export calendar as ical"
 msgstr ""
 
-#: include/features.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: include/event.php:874
+msgid "Export calendar as csv"
 msgstr ""
 
-#: include/follow.php:81 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
+#: include/dfrn.php:1121
+#, php-format
+msgid "%s\\'s birthday"
 msgstr ""
 
-#: include/follow.php:86
-msgid "Connect URL missing."
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: include/follow.php:113
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: include/follow.php:114 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: include/follow.php:136
-msgid "An author or name was not found."
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: include/follow.php:138
-msgid "No browser URL could be matched to this address."
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/follow.php:140
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: include/contact_selectors.php:56 mod/admin.php:901
+msgid "Frequently"
 msgstr ""
 
-#: include/follow.php:141
-msgid "Use mailto: in front of address to force email check."
+#: include/contact_selectors.php:57 mod/admin.php:902
+msgid "Hourly"
 msgstr ""
 
-#: include/follow.php:147
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: include/contact_selectors.php:58 mod/admin.php:903
+msgid "Twice daily"
 msgstr ""
 
-#: include/follow.php:157
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
+#: include/contact_selectors.php:59 mod/admin.php:904
+msgid "Daily"
 msgstr ""
 
-#: include/follow.php:258
-msgid "Unable to retrieve contact information."
+#: include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: include/identity.php:42
-msgid "Requested account is not available."
+#: include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
+#: include/contact_selectors.php:76 mod/dfrn_request.php:881
+msgid "Friendica"
 msgstr ""
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
+#: include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: include/identity.php:251
-msgid "Atom feed"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1461
+msgid "Email"
 msgstr ""
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
+#: include/contact_selectors.php:80 mod/settings.php:848
+#: mod/dfrn_request.php:883
+msgid "Diaspora"
 msgstr ""
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
+#: include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
+#: include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
+#: include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
+#: include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
+#: include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
-msgid "About:"
+#: include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
+#: include/contact_selectors.php:91
+msgid "GNU Social"
 msgstr ""
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
+#: include/contact_selectors.php:92
+msgid "pnut"
 msgstr ""
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
+#: include/contact_selectors.php:93
+msgid "App.net"
 msgstr ""
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
+#: include/contact_selectors.php:104
+msgid "Hubzilla/Redmatrix"
 msgstr ""
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
 msgstr ""
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
 msgstr ""
 
-#: include/identity.php:569
-msgid "[No description]"
+#: include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
 msgstr ""
 
-#: include/identity.php:593
-msgid "Event Reminders"
+#: include/contact_widgets.php:10 include/identity.php:219
+#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
+#: mod/suggest.php:101
+msgid "Connect"
 msgstr ""
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr ""
+#: include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/identity.php:614 mod/settings.php:1279
-msgid "Full Name:"
+#: include/contact_widgets.php:30
+msgid "Find People"
 msgstr ""
 
-#: include/identity.php:621
-msgid "j F, Y"
+#: include/contact_widgets.php:31
+msgid "Enter name or interest"
 msgstr ""
 
-#: include/identity.php:622
-msgid "j F"
+#: include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: include/identity.php:633
-msgid "Age:"
+#: include/contact_widgets.php:34 mod/directory.php:206 mod/contacts.php:806
+msgid "Find"
 msgstr ""
 
-#: include/identity.php:642
+#: include/contact_widgets.php:35 mod/suggest.php:114
+#: view/theme/vier/theme.php:198
+msgid "Friend Suggestions"
+msgstr ""
+
+#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
+msgid "Similar Interests"
+msgstr ""
+
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr ""
+
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
+msgid "Invite Friends"
+msgstr ""
+
+#: include/contact_widgets.php:115
+msgid "Networks"
+msgstr ""
+
+#: include/contact_widgets.php:118
+msgid "All Networks"
+msgstr ""
+
+#: include/contact_widgets.php:153 include/contact_widgets.php:187
+msgid "Everything"
+msgstr ""
+
+#: include/contact_widgets.php:184
+msgid "Categories"
+msgstr ""
+
+#: include/contact_widgets.php:248
 #, php-format
-msgid "for %1$d %2$s"
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/api.php:1021
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
+#: include/api.php:1041
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
+#: include/api.php:1062
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
-msgid "Tags:"
+#: include/diaspora.php:2087
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
+#: include/diaspora.php:3096
+msgid "Attachments:"
 msgstr ""
 
-#: include/identity.php:655
-msgid "Religion:"
+#: include/identity.php:43
+msgid "Requested account is not available."
 msgstr ""
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
+#: include/identity.php:52 mod/profile.php:21
+msgid "Requested profile is not available."
 msgstr ""
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
+#: include/identity.php:96 include/identity.php:314 include/identity.php:737
+msgid "Edit profile"
 msgstr ""
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
+#: include/identity.php:254
+msgid "Atom feed"
 msgstr ""
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
+#: include/identity.php:285
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: include/identity.php:668
-msgid "Musical interests:"
+#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
+msgid "Change profile photo"
 msgstr ""
 
-#: include/identity.php:670
-msgid "Books, literature:"
+#: include/identity.php:291 mod/profiles.php:790
+msgid "Create New Profile"
 msgstr ""
 
-#: include/identity.php:672
-msgid "Television:"
+#: include/identity.php:301 mod/profiles.php:779
+msgid "Profile Image"
 msgstr ""
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
+#: include/identity.php:304 mod/profiles.php:781
+msgid "visible to everybody"
 msgstr ""
 
-#: include/identity.php:676
-msgid "Love/Romance:"
+#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
+msgid "Edit visibility"
 msgstr ""
 
-#: include/identity.php:678
-msgid "Work/employment:"
+#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
+#: mod/notifications.php:244
+msgid "Gender:"
 msgstr ""
 
-#: include/identity.php:680
-msgid "School/education:"
+#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
+msgid "Status:"
 msgstr ""
 
-#: include/identity.php:684
-msgid "Forums:"
+#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
+msgid "Homepage:"
 msgstr ""
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
+#: include/identity.php:340 include/identity.php:684 mod/directory.php:147
+#: mod/contacts.php:640 mod/notifications.php:240
+msgid "About:"
 msgstr ""
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
-msgid "Advanced"
+#: include/identity.php:342 mod/contacts.php:638
+msgid "XMPP:"
 msgstr ""
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
-msgid "Status Messages and Posts"
+#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
+msgid "Network:"
 msgstr ""
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
+#: include/identity.php:457 include/identity.php:547
+msgid "g A l F d"
 msgstr ""
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
+#: include/identity.php:458 include/identity.php:548
+msgid "F d"
 msgstr ""
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
+#: include/identity.php:509 include/identity.php:594
+msgid "[today]"
 msgstr ""
 
-#: include/identity.php:775
-msgid "Only You Can See This"
+#: include/identity.php:521
+msgid "Birthday Reminders"
 msgstr ""
 
-#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
+#: include/identity.php:522
+msgid "Birthdays this week:"
 msgstr ""
 
-#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/display.php:103 mod/display.php:279 mod/display.php:478
-#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
-msgid "Item not found."
+#: include/identity.php:581
+msgid "[No description]"
 msgstr ""
 
-#: include/items.php:1969
-msgid "Do you really want to delete this item?"
+#: include/identity.php:605
+msgid "Event Reminders"
 msgstr ""
 
-#: include/items.php:1971 mod/api.php:105 mod/message.php:217
-#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
-#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
-msgid "Yes"
+#: include/identity.php:606
+msgid "Events this week:"
 msgstr ""
 
-#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
-#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
-#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
-#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
-#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
-#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
-msgid "Permission denied."
+#: include/identity.php:626 mod/settings.php:1286
+msgid "Full Name:"
 msgstr ""
 
-#: include/items.php:2239
-msgid "Archives"
+#: include/identity.php:633
+msgid "j F, Y"
 msgstr ""
 
-#: include/oembed.php:264
-msgid "Embedded content"
+#: include/identity.php:634
+msgid "j F"
 msgstr ""
 
-#: include/oembed.php:272
-msgid "Embedding disabled"
+#: include/identity.php:645
+msgid "Age:"
 msgstr ""
 
-#: include/ostatus.php:1825
+#: include/identity.php:656
 #, php-format
-msgid "%s is now following %s."
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: include/ostatus.php:1826
-msgid "following"
+#: include/identity.php:660 mod/profiles.php:702
+msgid "Sexual Preference:"
 msgstr ""
 
-#: include/ostatus.php:1829
-#, php-format
-msgid "%s stopped following %s."
+#: include/identity.php:668 mod/profiles.php:729
+msgid "Hometown:"
 msgstr ""
 
-#: include/ostatus.php:1830
-msgid "stopped following"
+#: include/identity.php:672 mod/follow.php:137 mod/contacts.php:642
+#: mod/notifications.php:242
+msgid "Tags:"
+msgstr ""
+
+#: include/identity.php:676 mod/profiles.php:730
+msgid "Political Views:"
+msgstr ""
+
+#: include/identity.php:680
+msgid "Religion:"
+msgstr ""
+
+#: include/identity.php:688
+msgid "Hobbies/Interests:"
+msgstr ""
+
+#: include/identity.php:692 mod/profiles.php:734
+msgid "Likes:"
+msgstr ""
+
+#: include/identity.php:696 mod/profiles.php:735
+msgid "Dislikes:"
+msgstr ""
+
+#: include/identity.php:700
+msgid "Contact information and Social Networks:"
+msgstr ""
+
+#: include/identity.php:704
+msgid "Musical interests:"
+msgstr ""
+
+#: include/identity.php:708
+msgid "Books, literature:"
+msgstr ""
+
+#: include/identity.php:712
+msgid "Television:"
+msgstr ""
+
+#: include/identity.php:716
+msgid "Film/dance/culture/entertainment:"
+msgstr ""
+
+#: include/identity.php:720
+msgid "Love/Romance:"
+msgstr ""
+
+#: include/identity.php:724
+msgid "Work/employment:"
+msgstr ""
+
+#: include/identity.php:728
+msgid "School/education:"
+msgstr ""
+
+#: include/identity.php:733
+msgid "Forums:"
+msgstr ""
+
+#: include/identity.php:742 mod/events.php:514
+msgid "Basic"
+msgstr ""
+
+#: include/identity.php:743 mod/contacts.php:878 mod/events.php:515
+#: mod/admin.php:980
+msgid "Advanced"
+msgstr ""
+
+#: include/identity.php:769 mod/follow.php:145 mod/contacts.php:844
+msgid "Status Messages and Posts"
+msgstr ""
+
+#: include/identity.php:777 mod/contacts.php:852
+msgid "Profile Details"
+msgstr ""
+
+#: include/identity.php:785 mod/photos.php:89
+msgid "Photo Albums"
+msgstr ""
+
+#: include/identity.php:824 mod/notes.php:47
+msgid "Personal Notes"
+msgstr ""
+
+#: include/identity.php:827
+msgid "Only You Can See This"
 msgstr ""
 
 #: include/text.php:304
@@ -2761,707 +2809,941 @@ msgstr ""
 msgid "No contacts"
 msgstr ""
 
-#: include/text.php:912
+#: include/text.php:914
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/text.php:925
+#: include/text.php:927
 msgid "View Contacts"
 msgstr ""
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
+#: include/text.php:1015 mod/filer.php:31 mod/notes.php:62 mod/editpost.php:99
 msgid "Save"
 msgstr ""
 
-#: include/text.php:1076
+#: include/text.php:1078
 msgid "poke"
 msgstr ""
 
-#: include/text.php:1076
+#: include/text.php:1078
 msgid "poked"
 msgstr ""
 
-#: include/text.php:1077
+#: include/text.php:1079
 msgid "ping"
 msgstr ""
 
-#: include/text.php:1077
+#: include/text.php:1079
 msgid "pinged"
 msgstr ""
 
-#: include/text.php:1078
+#: include/text.php:1080
 msgid "prod"
 msgstr ""
 
-#: include/text.php:1078
+#: include/text.php:1080
 msgid "prodded"
 msgstr ""
 
-#: include/text.php:1079
+#: include/text.php:1081
 msgid "slap"
 msgstr ""
 
-#: include/text.php:1079
+#: include/text.php:1081
 msgid "slapped"
 msgstr ""
 
-#: include/text.php:1080
+#: include/text.php:1082
 msgid "finger"
 msgstr ""
 
-#: include/text.php:1080
+#: include/text.php:1082
 msgid "fingered"
 msgstr ""
 
-#: include/text.php:1081
+#: include/text.php:1083
 msgid "rebuff"
 msgstr ""
 
-#: include/text.php:1081
+#: include/text.php:1083
 msgid "rebuffed"
 msgstr ""
 
-#: include/text.php:1095
+#: include/text.php:1097
 msgid "happy"
 msgstr ""
 
-#: include/text.php:1096
+#: include/text.php:1098
 msgid "sad"
 msgstr ""
 
-#: include/text.php:1097
+#: include/text.php:1099
 msgid "mellow"
 msgstr ""
 
-#: include/text.php:1098
+#: include/text.php:1100
 msgid "tired"
 msgstr ""
 
-#: include/text.php:1099
+#: include/text.php:1101
 msgid "perky"
 msgstr ""
 
-#: include/text.php:1100
+#: include/text.php:1102
 msgid "angry"
 msgstr ""
 
-#: include/text.php:1101
+#: include/text.php:1103
 msgid "stupified"
 msgstr ""
 
-#: include/text.php:1102
+#: include/text.php:1104
 msgid "puzzled"
 msgstr ""
 
-#: include/text.php:1103
+#: include/text.php:1105
 msgid "interested"
 msgstr ""
 
-#: include/text.php:1104
+#: include/text.php:1106
 msgid "bitter"
 msgstr ""
 
-#: include/text.php:1105
+#: include/text.php:1107
 msgid "cheerful"
 msgstr ""
 
-#: include/text.php:1106
+#: include/text.php:1108
 msgid "alive"
 msgstr ""
 
-#: include/text.php:1107
+#: include/text.php:1109
 msgid "annoyed"
 msgstr ""
 
-#: include/text.php:1108
+#: include/text.php:1110
 msgid "anxious"
 msgstr ""
 
-#: include/text.php:1109
+#: include/text.php:1111
 msgid "cranky"
 msgstr ""
 
-#: include/text.php:1110
+#: include/text.php:1112
 msgid "disturbed"
 msgstr ""
 
-#: include/text.php:1111
+#: include/text.php:1113
 msgid "frustrated"
 msgstr ""
 
-#: include/text.php:1112
+#: include/text.php:1114
 msgid "motivated"
 msgstr ""
 
-#: include/text.php:1113
+#: include/text.php:1115
 msgid "relaxed"
 msgstr ""
 
-#: include/text.php:1114
+#: include/text.php:1116
 msgid "surprised"
 msgstr ""
 
-#: include/text.php:1324 mod/videos.php:380
+#: include/text.php:1326 mod/videos.php:384
 msgid "View Video"
 msgstr ""
 
-#: include/text.php:1356
+#: include/text.php:1358
 msgid "bytes"
 msgstr ""
 
-#: include/text.php:1388 include/text.php:1400
+#: include/text.php:1390 include/text.php:1402
 msgid "Click to open/close"
 msgstr ""
 
-#: include/text.php:1526
+#: include/text.php:1528
 msgid "View on separate page"
 msgstr ""
 
-#: include/text.php:1527
+#: include/text.php:1529
 msgid "view on separate page"
 msgstr ""
 
-#: include/text.php:1806
+#: include/text.php:1808
 msgid "activity"
 msgstr ""
 
-#: include/text.php:1808 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
+#: include/text.php:1810 mod/content.php:623 object/Item.php:446
+#: object/Item.php:458
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] ""
 msgstr[1] ""
 
-#: include/text.php:1809
+#: include/text.php:1811
 msgid "post"
 msgstr ""
 
-#: include/text.php:1977
+#: include/text.php:1979
 msgid "Item filed"
 msgstr ""
 
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
+#: include/Contact.php:450
+msgid "Drop Contact"
 msgstr ""
 
-#: include/user.php:48
-msgid "An invitation is required."
+#: include/Contact.php:827
+msgid "Organisation"
 msgstr ""
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
+#: include/Contact.php:830
+msgid "News"
 msgstr ""
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
+#: include/Contact.php:833
+msgid "Forum"
 msgstr ""
 
-#: include/user.php:82
-msgid "Please enter the required information."
+#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
+msgid "[Name Withheld]"
 msgstr ""
 
-#: include/user.php:96
-msgid "Please use a shorter name."
+#: include/items.php:1939 mod/notice.php:15 mod/viewsrc.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:484
+#: mod/admin.php:235 mod/admin.php:1492 mod/admin.php:1738
+msgid "Item not found."
 msgstr ""
 
-#: include/user.php:98
-msgid "Name too short."
+#: include/items.php:1978
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
+#: include/items.php:1980 mod/api.php:105 mod/follow.php:113
+#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
+#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
+#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
+#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
+#: mod/contacts.php:452 mod/message.php:206 mod/dfrn_request.php:875
+#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
+msgid "Yes"
 msgstr ""
 
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
+#: include/items.php:2143 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/crepair.php:102 mod/delegate.php:12
+#: mod/dirfind.php:11 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 mod/invite.php:103
+#: mod/manage.php:98 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
+#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/register.php:42 mod/regmod.php:113
+#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
+#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/cal.php:299
+#: mod/contacts.php:360 mod/dfrn_confirm.php:61 mod/editpost.php:10
+#: mod/events.php:195 mod/item.php:193 mod/item.php:205 mod/message.php:46
+#: mod/message.php:171 mod/wall_upload.php:77 mod/wall_upload.php:80
+#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:73
+#: mod/wallmessage.php:97 mod/photos.php:161 mod/photos.php:1092
+#: mod/profiles.php:166 mod/profiles.php:607 mod/display.php:481
+#: mod/viewcontacts.php:46 mod/network.php:4 mod/notifications.php:71
+#: index.php:407
+msgid "Permission denied."
 msgstr ""
 
-#: include/user.php:121
-msgid "Not a valid email address."
+#: include/items.php:2248
+msgid "Archives"
 msgstr ""
 
-#: include/user.php:134
-msgid "Cannot use that email."
+#: include/dbstructure.php:33
+#, 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 ""
 
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+#: include/dbstructure.php:38
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
+#: include/dbstructure.php:195
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: include/dbstructure.php:329 include/dbstructure.php:337
+#: include/dbstructure.php:345 include/dbstructure.php:350
+#: include/dbstructure.php:355
+msgid "Errors encountered performing database changes."
 msgstr ""
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: include/network.php:619
+msgid "view full size"
 msgstr ""
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
+#: mod/allfriends.php:46
+msgid "No friends to display."
 msgstr ""
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: include/user.php:326 include/user.php:333 include/user.php:340
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819
-msgid "Profile Photos"
+#: mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: include/user.php:414
-#, php-format
+#: mod/api.php:104
 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"
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
 msgstr ""
 
-#: include/user.php:424
-#, php-format
-msgid "Registration at %s"
+#: mod/api.php:106 mod/follow.php:113 mod/register.php:246
+#: mod/settings.php:1171 mod/settings.php:1177 mod/settings.php:1184
+#: mod/settings.php:1188 mod/settings.php:1193 mod/settings.php:1198
+#: mod/settings.php:1203 mod/settings.php:1208 mod/settings.php:1234
+#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
+#: mod/settings.php:1238 mod/dfrn_request.php:875 mod/profiles.php:640
+#: mod/profiles.php:644 mod/profiles.php:669
+msgid "No"
 msgstr ""
 
-#: include/user.php:434
-#, 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"
+#: mod/apps.php:7 index.php:248
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: include/user.php:438
-#, 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."
+#: mod/apps.php:11
+msgid "Applications"
 msgstr ""
 
-#: include/user.php:470 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
+#: mod/apps.php:14
+msgid "No installed applications."
 msgstr ""
 
-#: mod/oexchange.php:25
-msgid "Post successful."
+#: mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
+#: mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
+#: mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: mod/notify.php:60
-msgid "No more system notifications."
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
+#: mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: mod/search.php:93 mod/search.php:99 mod/community.php:22
-#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
-#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
-msgid "Public access denied."
+#: mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
+#: mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: mod/search.php:124
-msgid "Too Many Requests"
+#: mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr ""
+
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr ""
+
+#: mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr ""
+
+#: mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr ""
+
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr ""
+
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr ""
+
+#: mod/common.php:141 mod/contacts.php:871
+msgid "Common Friends"
+msgstr ""
+
+#: mod/community.php:22 mod/directory.php:37 mod/videos.php:198
+#: mod/photos.php:964 mod/dfrn_request.php:799 mod/display.php:200
+#: mod/viewcontacts.php:36 mod/search.php:93 mod/search.php:99
+msgid "Public access denied."
+msgstr ""
+
+#: mod/community.php:27
+msgid "Not available."
+msgstr ""
+
+#: mod/community.php:66 mod/community.php:75 mod/search.php:224
 msgid "No results."
 msgstr ""
 
-#: mod/search.php:230
+#: mod/content.php:119 mod/network.php:468
+msgid "No such group"
+msgstr ""
+
+#: mod/content.php:130 mod/group.php:203 mod/network.php:495
+msgid "Group is empty"
+msgstr ""
+
+#: mod/content.php:135 mod/network.php:499
 #, php-format
-msgid "Items tagged with: %s"
+msgid "Group: %s"
 msgstr ""
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
+#: mod/content.php:325 object/Item.php:96
+msgid "This entry was edited"
+msgstr ""
+
+#: mod/content.php:621 object/Item.php:444
 #, php-format
-msgid "Results for: %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
+msgid "Private Message"
 msgstr ""
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
+#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
+msgid "I like this (toggle)"
 msgstr ""
 
-#: mod/friendica.php:71
-msgid "running at web location"
+#: mod/content.php:702 object/Item.php:274
+msgid "like"
 msgstr ""
 
-#: mod/friendica.php:73
+#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
+msgid "I don't like this (toggle)"
+msgstr ""
+
+#: mod/content.php:703 object/Item.php:275
+msgid "dislike"
+msgstr ""
+
+#: mod/content.php:705 object/Item.php:278
+msgid "Share this"
+msgstr ""
+
+#: mod/content.php:705 object/Item.php:278
+msgid "share"
+msgstr ""
+
+#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
+#: mod/photos.php:1743 object/Item.php:729
+msgid "This is you"
+msgstr ""
+
+#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
+#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:418
+#: object/Item.php:731
+msgid "Comment"
+msgstr ""
+
+#: mod/content.php:728 mod/crepair.php:156 mod/fsuggest.php:108
+#: mod/invite.php:142 mod/localtime.php:45 mod/manage.php:145 mod/mood.php:138
+#: mod/poke.php:203 mod/contacts.php:585 mod/events.php:513
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1124
+#: mod/photos.php:1246 mod/photos.php:1562 mod/photos.php:1612
+#: mod/photos.php:1660 mod/photos.php:1746 mod/install.php:276
+#: mod/install.php:316 mod/profiles.php:680 object/Item.php:732
+#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
+#: view/theme/duepuntozero/config.php:61 view/theme/clean/config.php:87
+#: view/theme/frio/config.php:64
+msgid "Submit"
+msgstr ""
+
+#: mod/content.php:729 object/Item.php:733
+msgid "Bold"
+msgstr ""
+
+#: mod/content.php:730 object/Item.php:734
+msgid "Italic"
+msgstr ""
+
+#: mod/content.php:731 object/Item.php:735
+msgid "Underline"
+msgstr ""
+
+#: mod/content.php:732 object/Item.php:736
+msgid "Quote"
+msgstr ""
+
+#: mod/content.php:733 object/Item.php:737
+msgid "Code"
+msgstr ""
+
+#: mod/content.php:734 object/Item.php:738
+msgid "Image"
+msgstr ""
+
+#: mod/content.php:735 object/Item.php:739
+msgid "Link"
+msgstr ""
+
+#: mod/content.php:736 object/Item.php:740
+msgid "Video"
+msgstr ""
+
+#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
+msgstr ""
+
+#: mod/content.php:772 object/Item.php:238
+msgid "add star"
+msgstr ""
+
+#: mod/content.php:773 object/Item.php:239
+msgid "remove star"
+msgstr ""
+
+#: mod/content.php:774 object/Item.php:240
+msgid "toggle star status"
+msgstr ""
+
+#: mod/content.php:777 object/Item.php:243
+msgid "starred"
+msgstr ""
+
+#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+msgid "add tag"
+msgstr ""
+
+#: mod/content.php:789 object/Item.php:251
+msgid "ignore thread"
+msgstr ""
+
+#: mod/content.php:790 object/Item.php:252
+msgid "unignore thread"
+msgstr ""
+
+#: mod/content.php:791 object/Item.php:253
+msgid "toggle ignore status"
+msgstr ""
+
+#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+msgid "ignored"
+msgstr ""
+
+#: mod/content.php:805 object/Item.php:141
+msgid "save to folder"
+msgstr ""
+
+#: mod/content.php:853 object/Item.php:212
+msgid "I will attend"
+msgstr ""
+
+#: mod/content.php:853 object/Item.php:212
+msgid "I will not attend"
+msgstr ""
+
+#: mod/content.php:853 object/Item.php:212
+msgid "I might attend"
+msgstr ""
+
+#: mod/content.php:917 object/Item.php:384
+msgid "to"
+msgstr ""
+
+#: mod/content.php:918 object/Item.php:386
+msgid "Wall-to-Wall"
+msgstr ""
+
+#: mod/content.php:919 object/Item.php:387
+msgid "via Wall-To-Wall:"
+msgstr ""
+
+#: mod/credits.php:16
+msgid "Credits"
+msgstr ""
+
+#: mod/credits.php:17
 msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
 msgstr ""
 
-#: mod/friendica.php:75
-msgid "Bug reports and issues: please visit"
+#: mod/crepair.php:89
+msgid "Contact settings applied."
 msgstr ""
 
-#: mod/friendica.php:75
-msgid "the bugtracker at github"
+#: mod/crepair.php:91
+msgid "Contact update failed."
+msgstr ""
+
+#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
 msgstr ""
 
-#: mod/friendica.php:76
+#: mod/crepair.php:122
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: mod/friendica.php:90
-msgid "Installed plugins/addons/apps:"
+#: mod/crepair.php:123
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: mod/friendica.php:103
-msgid "No installed plugins/addons/apps"
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "No mirroring"
 msgstr ""
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
+#: mod/crepair.php:136
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: mod/lostpass.php:42
-#, php-format
+#: mod/crepair.php:152
+msgid "Return to contact editor"
+msgstr ""
+
+#: mod/crepair.php:154
+msgid "Refetch contact data"
+msgstr ""
+
+#: mod/crepair.php:158
+msgid "Remote Self"
+msgstr ""
+
+#: mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr ""
+
+#: mod/crepair.php:163
 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."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: mod/lostpass.php:53
-#, php-format
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1459
+msgid "Name"
+msgstr ""
+
+#: mod/crepair.php:168
+msgid "Account Nickname"
+msgstr ""
+
+#: mod/crepair.php:169
+msgid "@Tagname - overrides Name/Nickname"
+msgstr ""
+
+#: mod/crepair.php:170
+msgid "Account URL"
+msgstr ""
+
+#: mod/crepair.php:171
+msgid "Friend Request URL"
+msgstr ""
+
+#: mod/crepair.php:172
+msgid "Friend Confirm URL"
+msgstr ""
+
+#: mod/crepair.php:173
+msgid "Notification Endpoint URL"
+msgstr ""
+
+#: mod/crepair.php:174
+msgid "Poll/Feed URL"
+msgstr ""
+
+#: mod/crepair.php:175
+msgid "New photo from this URL"
+msgstr ""
+
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr ""
+
+#: mod/delegate.php:132
 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"
+"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 ""
 
-#: mod/lostpass.php:72
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr ""
+
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr ""
+
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr ""
+
+#: mod/delegate.php:139 mod/tagrm.php:95
+msgid "Remove"
+msgstr ""
+
+#: mod/delegate.php:140
+msgid "Add"
+msgstr ""
+
+#: mod/delegate.php:141
+msgid "No entries."
+msgstr ""
+
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
 #, php-format
-msgid "Password reset requested at %s"
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
+#: mod/directory.php:199 view/theme/vier/theme.php:196
+msgid "Global Directory"
 msgstr ""
 
-#: mod/lostpass.php:109 boot.php:1807
-msgid "Password Reset"
+#: mod/directory.php:201
+msgid "Find on this site"
 msgstr ""
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
+#: mod/directory.php:203
+msgid "Results for:"
 msgstr ""
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
+#: mod/directory.php:205
+msgid "Site Directory"
 msgstr ""
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
+#: mod/directory.php:212
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/lostpass.php:113
-msgid "click here to login"
+#: mod/dirfind.php:37
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: mod/dirfind.php:48
+#, php-format
+msgid "Forum Search - %s"
+msgstr ""
+
+#: mod/dirfind.php:245 mod/match.php:109
+msgid "No matches"
+msgstr ""
+
+#: mod/filer.php:30
+msgid "- select -"
+msgstr ""
+
+#: mod/follow.php:19 mod/dfrn_request.php:888
+msgid "Submit Request"
 msgstr ""
 
-#: mod/lostpass.php:125
-#, 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"
+#: mod/follow.php:30
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/lostpass.php:131
-#, 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"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: mod/follow.php:112 mod/dfrn_request.php:874
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/lostpass.php:161 boot.php:1795
-msgid "Nickname or Email: "
+#: mod/follow.php:113 mod/dfrn_request.php:875
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/lostpass.php:162
-msgid "Reset"
+#: mod/follow.php:114 mod/dfrn_request.php:879
+msgid "Add a personal note:"
 msgstr ""
 
-#: mod/hcard.php:10
-msgid "No profile"
+#: mod/follow.php:120 mod/dfrn_request.php:885
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/help.php:41
-msgid "Help:"
+#: mod/follow.php:129 mod/contacts.php:632 mod/notifications.php:249
+msgid "Profile URL"
 msgstr ""
 
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
-#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
-msgid "Not Found"
+#: mod/follow.php:186
+msgid "Contact added"
 msgstr ""
 
-#: mod/help.php:56 index.php:291
-msgid "Page not found."
+#: mod/fsuggest.php:64
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: mod/fsuggest.php:98
+msgid "Suggest Friends"
 msgstr ""
 
-#: mod/lockview.php:48
-msgid "Visible to:"
+#: mod/fsuggest.php:100
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: mod/group.php:29
+msgid "Group created."
 msgstr ""
 
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: mod/group.php:35
+msgid "Could not create group."
 msgstr ""
 
-#: mod/uimport.php:50 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: mod/group.php:49 mod/group.php:150
+msgid "Group not found."
 msgstr ""
 
-#: mod/uimport.php:64 mod/register.php:295
-msgid "Import"
+#: mod/group.php:63
+msgid "Group name changed."
 msgstr ""
 
-#: mod/uimport.php:66
-msgid "Move account"
+#: mod/group.php:76 mod/profperm.php:20 index.php:406
+msgid "Permission denied"
 msgstr ""
 
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: mod/group.php:91
+msgid "Save Group"
 msgstr ""
 
-#: mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: mod/group.php:97
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
+#: mod/group.php:122
+msgid "Group removed."
 msgstr ""
 
-#: mod/uimport.php:70
-msgid "Account file"
+#: mod/group.php:124
+msgid "Unable to remove group."
 msgstr ""
 
-#: mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: mod/group.php:187
+msgid "Group Editor"
 msgstr ""
 
-#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
-#: mod/viewcontacts.php:97
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: mod/group.php:200
+msgid "Members"
 msgstr ""
 
-#: mod/nogroup.php:42 mod/contacts.php:931
-msgid "Edit contact"
+#: mod/group.php:202 mod/contacts.php:700
+msgid "All Contacts"
 msgstr ""
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
+#: mod/group.php:233 mod/profperm.php:107
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: mod/uexport.php:29
-msgid "Export account"
+#: mod/hcard.php:11
+msgid "No profile"
 msgstr ""
 
-#: mod/uexport.php:29
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: mod/help.php:41
+msgid "Help:"
 msgstr ""
 
-#: mod/uexport.php:30
-msgid "Export all"
+#: mod/help.php:53 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
+#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:292
+msgid "Not Found"
 msgstr ""
 
-#: mod/uexport.php:30
-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)"
+#: mod/help.php:56 index.php:295
+msgid "Page not found."
 msgstr ""
 
-#: mod/uexport.php:37 mod/settings.php:95
-msgid "Export personal data"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
 msgstr ""
 
-#: mod/invite.php:27
+#: mod/invite.php:28
 msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: mod/invite.php:49
+#: mod/invite.php:51
 #, php-format
 msgid "%s : Not a valid email address."
 msgstr ""
 
-#: mod/invite.php:73
+#: mod/invite.php:76
 msgid "Please join us on Friendica"
 msgstr ""
 
-#: mod/invite.php:84
+#: mod/invite.php:87
 msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: mod/invite.php:89
+#: mod/invite.php:91
 #, php-format
 msgid "%s : Message delivery failed."
 msgstr ""
 
-#: mod/invite.php:93
+#: mod/invite.php:95
 #, php-format
 msgid "%d message sent."
 msgid_plural "%d messages sent."
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/invite.php:112
+#: mod/invite.php:114
 msgid "You have no more invitations available"
 msgstr ""
 
-#: mod/invite.php:120
+#: mod/invite.php:122
 #, php-format
 msgid ""
 "Visit %s for a list of public sites that you can join. Friendica members on "
@@ -3469,14 +3751,14 @@ msgid ""
 "other social networks."
 msgstr ""
 
-#: mod/invite.php:122
+#: mod/invite.php:124
 #, php-format
 msgid ""
 "To accept this invitation, please visit and register at %s or any other "
 "public Friendica website."
 msgstr ""
 
-#: mod/invite.php:123
+#: mod/invite.php:125
 #, php-format
 msgid ""
 "Friendica sites all inter-connect to create a huge privacy-enhanced social "
@@ -3485,191 +3767,249 @@ msgid ""
 "sites you can join."
 msgstr ""
 
-#: mod/invite.php:126
+#: mod/invite.php:128
 msgid ""
 "Our apologies. This system is not currently configured to connect with other "
 "public sites or invite members."
 msgstr ""
 
-#: mod/invite.php:132
+#: mod/invite.php:134
 msgid "Send invitations"
 msgstr ""
 
-#: mod/invite.php:133
+#: mod/invite.php:135
 msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
-#: mod/message.php:541
+#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:135
 msgid "Your message:"
 msgstr ""
 
-#: mod/invite.php:135
+#: mod/invite.php:137
 msgid ""
 "You are cordially invited to join me and other close friends on Friendica - "
 "and help us to create a better social web."
 msgstr ""
 
-#: mod/invite.php:137
+#: mod/invite.php:139
 msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/invite.php:137
+#: mod/invite.php:139
 msgid ""
 "Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: mod/invite.php:139
+#: mod/invite.php:141
 msgid ""
 "For more information about the Friendica project and why we feel it is "
 "important, please visit http://friendica.com"
 msgstr ""
 
-#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
-#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
-#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
-#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
-#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
-#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
-#: mod/install.php:272 mod/install.php:312 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
-#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
-msgid "Submit"
+#: mod/localtime.php:24
+msgid "Time Conversion"
 msgstr ""
 
-#: mod/fbrowser.php:133
-msgid "Files"
+#: mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: mod/profperm.php:19 mod/group.php:72 index.php:400
-msgid "Permission denied"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
 msgstr ""
 
-#: mod/profperm.php:115
-msgid "Visible To"
+#: mod/lockview.php:32 mod/lockview.php:40
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
+#: mod/lockview.php:49
+msgid "Visible to:"
 msgstr ""
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
+#: mod/lostpass.php:19
+msgid "No valid account found."
 msgstr ""
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
 msgstr ""
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: mod/lostpass.php:41
+#, 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 ""
 
-#: mod/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
+#: mod/lostpass.php:52
+#, 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 ""
 
-#: mod/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
+#: mod/lostpass.php:71
+#, php-format
+msgid "Password reset requested at %s"
 msgstr ""
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
+#: mod/lostpass.php:91
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
 msgstr ""
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
+#: mod/lostpass.php:110 boot.php:1848
+msgid "Password Reset"
 msgstr ""
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
+#: mod/lostpass.php:111
+msgid "Your password has been reset as requested."
 msgstr ""
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
+#: mod/lostpass.php:112
+msgid "Your new password is"
+msgstr ""
+
+#: mod/lostpass.php:113
+msgid "Save or copy your new password - and then"
+msgstr ""
+
+#: mod/lostpass.php:114
+msgid "click here to login"
+msgstr ""
+
+#: mod/lostpass.php:115
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr ""
+
+#: mod/lostpass.php:125
+#, 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 ""
+
+#: mod/lostpass.php:131
+#, 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 ""
 
-#: 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."
+#: mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: mod/delegate.php:133
-msgid "Existing Page Managers"
+#: mod/lostpass.php:159
+msgid "Forgot your Password?"
 msgstr ""
 
-#: mod/delegate.php:135
-msgid "Existing Page Delegates"
+#: mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
 msgstr ""
 
-#: mod/delegate.php:137
-msgid "Potential Delegates"
+#: mod/lostpass.php:161 boot.php:1836
+msgid "Nickname or Email: "
 msgstr ""
 
-#: mod/delegate.php:140
-msgid "Add"
+#: mod/lostpass.php:162
+msgid "Reset"
 msgstr ""
 
-#: mod/delegate.php:141
-msgid "No entries."
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
 msgstr ""
 
-#: mod/credits.php:16
-msgid "Credits"
+#: mod/manage.php:141
+msgid "Manage Identities and/or Pages"
 msgstr ""
 
-#: mod/credits.php:17
+#: mod/manage.php:142
 msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr ""
-
-#: mod/filer.php:30
-msgid "- select -"
-msgstr ""
-
-#: mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/attach.php:8
-msgid "Item not available."
+#: mod/manage.php:143
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/attach.php:20
-msgid "Item was not found."
+#: mod/match.php:35
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/apps.php:7 index.php:244
-msgid "You must be logged in to use addons. "
+#: mod/match.php:88
+msgid "is interested in:"
 msgstr ""
 
-#: mod/apps.php:11
-msgid "Applications"
+#: mod/match.php:102
+msgid "Profile Match"
 msgstr ""
 
-#: mod/apps.php:14
-msgid "No installed applications."
+#: mod/mood.php:134
+msgid "Mood"
 msgstr ""
 
-#: mod/p.php:9
-msgid "Not Extended"
+#: mod/mood.php:135
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
 #: mod/newmember.php:6
@@ -3722,7 +4062,7 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr ""
 
-#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
+#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
 msgid "Upload Profile Photo"
 msgstr ""
 
@@ -3841,235 +4181,39 @@ msgid ""
 "features and resources."
 msgstr ""
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr ""
-
-#: mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr ""
-
-#: mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr ""
-
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr ""
-
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr ""
-
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr ""
-
-#: mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
-
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr ""
-
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr ""
-
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr ""
-
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr ""
-
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr ""
-
-#: mod/group.php:29
-msgid "Group created."
-msgstr ""
-
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr ""
-
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr ""
-
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr ""
-
-#: mod/group.php:87
-msgid "Save Group"
-msgstr ""
-
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr ""
-
-#: mod/group.php:113
-msgid "Group removed."
-msgstr ""
-
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr ""
-
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr ""
-
-#: mod/group.php:190
-msgid "Members"
-msgstr ""
-
-#: mod/group.php:192 mod/contacts.php:692
-msgid "All Contacts"
-msgstr ""
-
-#: mod/group.php:193 mod/content.php:130 mod/network.php:496
-msgid "Group is empty"
-msgstr ""
-
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr ""
-
-#: mod/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
-msgstr ""
-
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr ""
-
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
-msgstr ""
-
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
-msgstr ""
-
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
-msgstr ""
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr ""
-
-#: mod/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
-msgstr ""
-
-#: mod/wallmessage.php:143
+#: mod/nogroup.php:43 mod/contacts.php:594 mod/contacts.php:938
+#: mod/viewcontacts.php:102
 #, 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."
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: mod/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
+#: mod/nogroup.php:44 mod/contacts.php:939
+msgid "Edit contact"
 msgstr ""
 
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
+#: mod/nogroup.php:65
+msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: mod/share.php:38
-msgid "link"
+#: mod/notify.php:65
+msgid "No more system notifications."
 msgstr ""
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
+#: mod/notify.php:69 mod/notifications.php:111
+msgid "System Notifications"
 msgstr ""
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: mod/oexchange.php:21
+msgid "Post successful."
 msgstr ""
 
-#: mod/api.php:89
-msgid "Please login to continue."
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: mod/api.php:104
+#: mod/openid.php:60
 msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
-msgstr ""
-
-#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
-#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/dfrn_request.php:862 mod/follow.php:110
-msgid "No"
-msgstr ""
-
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr ""
-
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr ""
-
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr ""
-
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr ""
-
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr ""
-
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr ""
-
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr ""
-
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr ""
-
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr ""
-
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr ""
-
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr ""
-
-#: mod/babel.php:74
-msgid "diaspora2bb: "
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
 #: mod/ostatus_subscribe.php:14
@@ -4080,1089 +4224,1137 @@ msgstr ""
 msgid "No contact provided."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:30
+#: mod/ostatus_subscribe.php:31
 msgid "Couldn't fetch information for contact."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:38
+#: mod/ostatus_subscribe.php:40
 msgid "Couldn't fetch friends for contact."
 msgstr ""
 
-#: mod/ostatus_subscribe.php:65
+#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
+msgid "Done"
+msgstr ""
+
+#: mod/ostatus_subscribe.php:68
 msgid "success"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:67
+#: mod/ostatus_subscribe.php:70
 msgid "failed"
 msgstr ""
 
-#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
-msgid "ignored"
+#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
+msgid "Keep this window open until done."
 msgstr ""
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: mod/poke.php:196
+msgid "Poke/Prod"
 msgstr ""
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
+#: mod/poke.php:197
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
+#: mod/poke.php:198
+msgid "Recipient"
 msgstr ""
 
-#: mod/message.php:235
-msgid "Message deleted."
+#: mod/poke.php:199
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: mod/message.php:266
-msgid "Conversation removed."
+#: mod/poke.php:202
+msgid "Make this post private"
 msgstr ""
 
-#: mod/message.php:383
-msgid "No messages."
+#: mod/profile.php:154 mod/cal.php:143 mod/display.php:328
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: mod/message.php:426
-msgid "Message not available."
+#: mod/profile.php:174
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/message.php:503
-msgid "Delete message"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: mod/message.php:531
+#: mod/profile_photo.php:127
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: mod/message.php:535
-msgid "Send Reply"
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
 msgstr ""
 
-#: mod/message.php:579
+#: mod/profile_photo.php:156 mod/wall_upload.php:151 mod/photos.php:803
 #, php-format
-msgid "Unknown sender - %s"
+msgid "Image exceeds size limit of %s"
 msgstr ""
 
-#: mod/message.php:581
-#, php-format
-msgid "You and %s"
+#: mod/profile_photo.php:165 mod/wall_upload.php:186 mod/photos.php:844
+msgid "Unable to process image."
 msgstr ""
 
-#: mod/message.php:583
-#, php-format
-msgid "%s and You"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
 msgstr ""
 
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
 msgstr ""
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr ""
 
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
+#: mod/profile_photo.php:260
+msgid "or"
 msgstr ""
 
-#: mod/manage.php:140
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+#: mod/profile_photo.php:260
+msgid "skip this step"
 msgstr ""
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
+#: mod/profile_photo.php:274
+msgid "Crop Image"
 msgstr ""
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
+#: mod/profile_photo.php:275
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/dfrn_confirm.php:126
-msgid "Contact not found."
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr ""
+
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr ""
+
+#: mod/profile_photo.php:315 mod/wall_upload.php:219 mod/photos.php:871
+msgid "Image upload failed."
+msgstr ""
+
+#: mod/profperm.php:26 mod/profperm.php:57
+msgid "Invalid profile identifier."
+msgstr ""
+
+#: mod/profperm.php:103
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: mod/crepair.php:120
+#: mod/profperm.php:116
+msgid "Visible To"
+msgstr ""
+
+#: mod/profperm.php:132
+msgid "All Contacts (with secure profile access)"
+msgstr ""
+
+#: mod/register.php:93
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/crepair.php:121
+#: mod/register.php:98
+#, php-format
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+"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 ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
+#: mod/register.php:105
+msgid "Registration successful."
 msgstr ""
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
+#: mod/register.php:198 mod/uimport.php:51
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
+#: mod/register.php:226
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/crepair.php:156
-msgid "Remote Self"
+#: mod/register.php:227
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/crepair.php:161
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/crepair.php:165 mod/settings.php:680 mod/settings.php:706
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
-msgid "Name"
+#: mod/register.php:267
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/crepair.php:166
-msgid "Account Nickname"
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/crepair.php:168
-msgid "Account URL"
+#: mod/register.php:269
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/crepair.php:169
-msgid "Friend Request URL"
+#: mod/register.php:272 mod/admin.php:977
+msgid "Registration"
 msgstr ""
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/crepair.php:171
-msgid "Notification Endpoint URL"
+#: mod/register.php:281
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
 msgstr ""
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/content.php:119 mod/network.php:469
-msgid "No such group"
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
 msgstr ""
 
-#: mod/content.php:135 mod/network.php:500
-#, php-format
-msgid "Group: %s"
+#: mod/register.php:285
+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 ""
 
-#: mod/content.php:325 object/Item.php:95
-msgid "This entry was edited"
+#: mod/register.php:286
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/content.php:621 object/Item.php:429
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/register.php:295 mod/uimport.php:66
+msgid "Import"
+msgstr ""
 
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
+#: mod/regmod.php:58
+msgid "Account approved."
 msgstr ""
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
+#: mod/regmod.php:95
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: mod/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
+#: mod/regmod.php:107
+msgid "Please login."
 msgstr ""
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
+#: mod/removeme.php:52 mod/removeme.php:55
+msgid "Remove My Account"
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
+#: mod/removeme.php:53
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
+#: mod/removeme.php:54
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: mod/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:971
-msgid "Comment"
+#: mod/repair_ostatus.php:30
+msgid "Error"
 msgstr ""
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
+#: mod/settings.php:36 mod/photos.php:107
+msgid "everybody"
 msgstr ""
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
+#: mod/settings.php:43 mod/admin.php:1417
+msgid "Account"
 msgstr ""
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
+#: mod/settings.php:52 mod/admin.php:161
+msgid "Additional features"
 msgstr ""
 
-#: mod/content.php:732 object/Item.php:724
-msgid "Quote"
+#: mod/settings.php:60
+msgid "Display"
 msgstr ""
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
 msgstr ""
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
+#: mod/settings.php:74 mod/admin.php:159 mod/admin.php:1543 mod/admin.php:1606
+msgid "Plugins"
 msgstr ""
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
+#: mod/settings.php:88
+msgid "Connected apps"
 msgstr ""
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
 msgstr ""
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
+#: mod/settings.php:102
+msgid "Remove account"
 msgstr ""
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
+#: mod/settings.php:157
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
+#: mod/settings.php:160 mod/settings.php:707 mod/contacts.php:812
+msgid "Update"
 msgstr ""
 
-#: mod/content.php:773 object/Item.php:229
-msgid "toggle star status"
+#: mod/settings.php:271
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
+#: mod/settings.php:276
+msgid "Email settings updated."
 msgstr ""
 
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
+#: mod/settings.php:291
+msgid "Features updated"
 msgstr ""
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
+#: mod/settings.php:361
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
+#: mod/settings.php:380
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
+#: mod/settings.php:388
+msgid "Wrong password."
 msgstr ""
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
+#: mod/settings.php:399
+msgid "Password changed."
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
+#: mod/settings.php:481
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
+#: mod/settings.php:483
+msgid " Name too short."
+msgstr ""
+
+#: mod/settings.php:492
+msgid "Wrong Password"
+msgstr ""
+
+#: mod/settings.php:497
+msgid " Not valid email."
 msgstr ""
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
+#: mod/settings.php:503
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
+#: mod/settings.php:559
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
+#: mod/settings.php:563
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: mod/settings.php:603
+msgid "Settings updated."
 msgstr ""
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
 msgstr ""
 
-#: mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
+#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
+#: mod/admin.php:976 mod/admin.php:1607 mod/admin.php:1864 mod/admin.php:1938
+#: mod/admin.php:2088
+msgid "Save Settings"
 msgstr ""
 
-#: mod/mood.php:133
-msgid "Mood"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
 msgstr ""
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Icon url"
 msgstr ""
 
-#: mod/poke.php:194
-msgid "Recipient"
+#: mod/settings.php:698
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: mod/settings.php:741
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/poke.php:198
-msgid "Make this post private"
+#: mod/settings.php:745
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: mod/settings.php:746
+msgid "No name"
 msgstr ""
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: mod/settings.php:747
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/profile_photo.php:124
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
+#: mod/settings.php:768
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
-#, php-format
-msgid "Image exceeds size limit of %s"
+#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
+msgid "Off"
 msgstr ""
 
-#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
-msgid "Unable to process image."
+#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
+msgid "On"
 msgstr ""
 
-#: mod/profile_photo.php:248
-msgid "Upload File:"
+#: mod/settings.php:790
+msgid "Additional Features"
 msgstr ""
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/profile_photo.php:251
-msgid "Upload"
+#: mod/settings.php:810
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "or"
+#: mod/settings.php:812
+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 ""
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
+#: mod/settings.php:820
+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 ""
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
+#: mod/settings.php:836
+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 ""
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
-msgid "Image upload failed."
+#: mod/settings.php:848 mod/settings.php:849
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/regmod.php:55
-msgid "Account approved."
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
 msgstr ""
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
 msgstr ""
 
-#: mod/regmod.php:104
-msgid "Please login."
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:991
-msgid "Ignore"
+#: mod/settings.php:896
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
+#: mod/settings.php:897
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
+#: mod/settings.php:899
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
+#: mod/settings.php:900
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Show Ignored Requests"
+#: mod/settings.php:901
+msgid "Security:"
 msgstr ""
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
 msgstr ""
 
-#: mod/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
+#: mod/settings.php:902
+msgid "Email login name:"
 msgstr ""
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
+#: mod/settings.php:903
+msgid "Email password:"
 msgstr ""
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
+#: mod/settings.php:904
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
+#: mod/settings.php:906
+msgid "Action after import:"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
+#: mod/settings.php:906
+msgid "Move to folder"
 msgstr ""
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
+#: mod/settings.php:907
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "yes"
+#: mod/settings.php:943 mod/admin.php:863
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/notifications.php:196
-msgid "no"
+#: mod/settings.php:1003
+msgid "Display Settings"
 msgstr ""
 
-#: mod/notifications.php:197
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
-"you allow to read but you do not want to read theirs. Approve as: "
+#: mod/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/notifications.php:200
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
+#: mod/settings.php:1010
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/notifications.php:209
-msgid "Friend"
+#: mod/settings.php:1011
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/notifications.php:210
-msgid "Sharer"
+#: mod/settings.php:1011
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
+#: mod/settings.php:1012
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/notifications.php:260
-msgid "No introductions."
+#: mod/settings.php:1013
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show unread"
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/notifications.php:299
-msgid "Show all"
+#: mod/settings.php:1014
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
+#: mod/settings.php:1015
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
-#: mod/profiles.php:617 mod/dfrn_confirm.php:70
-msgid "Profile not found."
+#: mod/settings.php:1016
+msgid "Calendar"
 msgstr ""
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
+#: mod/settings.php:1017
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
+#: mod/settings.php:1018
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
+#: mod/settings.php:1019
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
+#: mod/settings.php:1020
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/profiles.php:338
-msgid "Marital Status"
+#: mod/settings.php:1021
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
+#: mod/settings.php:1023
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/profiles.php:357
-msgid "Religion"
+#: mod/settings.php:1025
+msgid "Content Settings"
 msgstr ""
 
-#: mod/profiles.php:361
-msgid "Political Views"
+#: mod/settings.php:1026 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114 view/theme/duepuntozero/config.php:63
+#: view/theme/clean/config.php:89 view/theme/frio/config.php:66
+msgid "Theme settings"
 msgstr ""
 
-#: mod/profiles.php:365
-msgid "Gender"
+#: mod/settings.php:1110
+msgid "Account Types"
 msgstr ""
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/profiles.php:373
-msgid "XMPP"
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/profiles.php:377
-msgid "Homepage"
+#: mod/settings.php:1119
+msgid "Personal Page"
 msgstr ""
 
-#: mod/profiles.php:381 mod/profiles.php:702
-msgid "Interests"
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/profiles.php:385
-msgid "Address"
+#: mod/settings.php:1123
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/profiles.php:392 mod/profiles.php:698
-msgid "Location"
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
 msgstr ""
 
-#: mod/profiles.php:477
-msgid "Profile updated."
+#: mod/settings.php:1127
+msgid "News Page"
 msgstr ""
 
-#: mod/profiles.php:564
-msgid " and "
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
 msgstr ""
 
-#: mod/profiles.php:572
-msgid "public profile"
+#: mod/settings.php:1131
+msgid "Community Forum"
 msgstr ""
 
-#: mod/profiles.php:575
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/settings.php:1132
+msgid ""
+"This account is a community forum where people can discuss with each other"
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/settings.php:1135
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
 msgstr ""
 
-#: mod/profiles.php:645
-msgid "Hide contacts and friends:"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/profiles.php:650
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: mod/profiles.php:674
-msgid "Show more profile fields:"
+#: mod/settings.php:1143
+msgid "Public Forum"
 msgstr ""
 
-#: mod/profiles.php:686
-msgid "Profile Actions"
+#: mod/settings.php:1144
+msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "Edit Profile Details"
+#: mod/settings.php:1147
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/profiles.php:689
-msgid "Change Profile Photo"
+#: mod/settings.php:1148
+msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: mod/profiles.php:690
-msgid "View this profile"
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "Create a new profile using these settings"
+#: mod/settings.php:1152
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "Clone this profile"
+#: mod/settings.php:1163
+msgid "OpenID:"
 msgstr ""
 
-#: mod/profiles.php:694
-msgid "Delete this profile"
+#: mod/settings.php:1163
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/profiles.php:696
-msgid "Basic information"
+#: mod/settings.php:1171
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/profiles.php:697
-msgid "Profile picture"
+#: mod/settings.php:1177
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/profiles.php:699
-msgid "Preferences"
+#: mod/settings.php:1184
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/profiles.php:700
-msgid "Status information"
+#: mod/settings.php:1188
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Additional information"
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/profiles.php:704
-msgid "Relation"
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/profiles.php:708
-msgid "Your Gender:"
+#: mod/settings.php:1203
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/profiles.php:709
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/profiles.php:711
-msgid "Example: fishing photography software"
+#: mod/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Profile Name:"
+#: mod/settings.php:1224
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
-msgid "Required"
+#: mod/settings.php:1231
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/profiles.php:718
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/settings.php:1231
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "Your Full Name:"
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Title/Description:"
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/profiles.php:723
-msgid "Street Address:"
+#: mod/settings.php:1234
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Locality/City:"
+#: mod/settings.php:1235
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/profiles.php:725
-msgid "Region/State:"
+#: mod/settings.php:1236
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/profiles.php:726
-msgid "Postal/Zip Code:"
+#: mod/settings.php:1237
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/profiles.php:727
-msgid "Country:"
+#: mod/settings.php:1238
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Who: (if applicable)"
+#: mod/settings.php:1269
+msgid "Account Settings"
 msgstr ""
 
-#: mod/profiles.php:731
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/settings.php:1277
+msgid "Password Settings"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Since [date]:"
+#: mod/settings.php:1279
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "Tell us about yourself..."
+#: mod/settings.php:1280
+msgid "Current Password:"
 msgstr ""
 
-#: mod/profiles.php:735
-msgid "XMPP (Jabber) address:"
+#: mod/settings.php:1280 mod/settings.php:1281
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/profiles.php:735
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+#: mod/settings.php:1281
+msgid "Password:"
 msgstr ""
 
-#: mod/profiles.php:736
-msgid "Homepage URL:"
+#: mod/settings.php:1285
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/profiles.php:739
-msgid "Religious Views:"
+#: mod/settings.php:1287
+msgid "Email Address:"
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "Public Keywords:"
+#: mod/settings.php:1288
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/settings.php:1289
+msgid "Your Language:"
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "Private Keywords:"
+#: mod/settings.php:1289
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/settings.php:1290
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/profiles.php:744
-msgid "Musical interests"
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/profiles.php:745
-msgid "Books, literature"
+#: mod/settings.php:1294
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/profiles.php:746
-msgid "Television"
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/profiles.php:747
-msgid "Film/dance/culture/entertainment"
+#: mod/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/profiles.php:748
-msgid "Hobbies/Interests"
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/profiles.php:749
-msgid "Love/romance"
+#: mod/settings.php:1298
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/profiles.php:750
-msgid "Work/employment"
+#: mod/settings.php:1307 mod/photos.php:1185 mod/photos.php:1567
+msgid "Show to Groups"
 msgstr ""
 
-#: mod/profiles.php:751
-msgid "School/education"
+#: mod/settings.php:1308 mod/photos.php:1186 mod/photos.php:1568
+msgid "Show to Contacts"
 msgstr ""
 
-#: mod/profiles.php:752
-msgid "Contact information and Social Networks"
+#: mod/settings.php:1309
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
+#: mod/settings.php:1310
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/cal.php:276 mod/events.php:380
-msgid "View"
+#: mod/settings.php:1329
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
+#: mod/settings.php:1330
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
+#: mod/settings.php:1331
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
+#: mod/settings.php:1332
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/cal.php:297
-msgid "User not found"
+#: mod/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
+#: mod/settings.php:1334
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: mod/settings.php:1335
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/cal.php:330
-msgid "calendar"
+#: mod/settings.php:1336
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/common.php:86
-msgid "No contacts in common."
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/community.php:27
-msgid "Not available."
+#: mod/settings.php:1339
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/directory.php:199
-msgid "Find on this site"
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/directory.php:201
-msgid "Results for:"
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/directory.php:203
-msgid "Site Directory"
+#: mod/settings.php:1344
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
+#: mod/settings.php:1348
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/display.php:473
-msgid "Item has been removed."
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
+#: mod/settings.php:1354
+msgid "Relocate"
 msgstr ""
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
+#: mod/settings.php:1355
+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 ""
 
-#: mod/events.php:381
-msgid "Create New Event"
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/events.php:482
-msgid "Event details"
+#: mod/share.php:38
+msgid "link"
 msgstr ""
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
+#: mod/subthread.php:104
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
+#: mod/suggest.php:71
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
+#: mod/tagrm.php:43
+msgid "Tag removed"
 msgstr ""
 
-#: mod/events.php:492
-msgid "Description:"
+#: mod/tagrm.php:82
+msgid "Remove Item Tag"
 msgstr ""
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
+#: mod/tagrm.php:84
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
+#: mod/uexport.php:37
+msgid "Export account"
 msgstr ""
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
+#: mod/uexport.php:37
+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 ""
 
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
+#: mod/uexport.php:38
+msgid "Export all"
 msgstr ""
 
-#: mod/match.php:86
-msgid "is interested in:"
+#: mod/uexport.php:38
+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 ""
 
-#: mod/match.php:100
-msgid "Profile Match"
+#: mod/uimport.php:68
+msgid "Move account"
 msgstr ""
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
+#: mod/uimport.php:69
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: mod/uimport.php:70
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: mod/suggest.php:71
+#: mod/uimport.php:71
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/uimport.php:72
+msgid "Account file"
+msgstr ""
+
+#: mod/uimport.php:72
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
 #: mod/update_community.php:19 mod/update_display.php:23
@@ -5170,3516 +5362,3490 @@ msgstr ""
 msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
-msgstr ""
-
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
+#: mod/videos.php:129
+msgid "Delete Video"
 msgstr ""
 
-#: mod/photos.php:169
-msgid "Contact information unavailable"
+#: mod/videos.php:208
+msgid "No videos selected"
 msgstr ""
 
-#: mod/photos.php:190
-msgid "Album not found."
+#: mod/videos.php:309 mod/photos.php:1074
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
+#: mod/videos.php:391 mod/photos.php:1867
+msgid "View Album"
 msgstr ""
 
-#: mod/photos.php:230
-msgid "Do you really want to delete this photo album and all its photos?"
+#: mod/videos.php:400
+msgid "Recent Videos"
 msgstr ""
 
-#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
+#: mod/videos.php:402
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/photos.php:317
-msgid "Do you really want to delete this photo?"
+#: mod/viewsrc.php:7
+msgid "Access denied."
 msgstr ""
 
-#: mod/photos.php:688
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
 msgstr ""
 
-#: mod/photos.php:688
-msgid "a photo"
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: mod/photos.php:794
-msgid "Image file is empty."
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: mod/photos.php:954
-msgid "No photos selected"
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
 msgstr ""
 
-#: mod/photos.php:1054 mod/videos.php:305
-msgid "Access to this item is restricted."
+#: mod/wall_attach.php:158 mod/wall_attach.php:174
+msgid "File upload failed."
 msgstr ""
 
-#: mod/photos.php:1114
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: mod/cal.php:271 mod/events.php:387
+msgid "View"
 msgstr ""
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
+#: mod/cal.php:272 mod/events.php:389
+msgid "Previous"
 msgstr ""
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
+#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
+msgid "Next"
 msgstr ""
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
+#: mod/cal.php:282 mod/events.php:399
+msgid "list"
 msgstr ""
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
+#: mod/cal.php:292
+msgid "User not found"
 msgstr ""
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
+#: mod/cal.php:308
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
+#: mod/cal.php:310
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/photos.php:1167
-msgid "Private Photo"
+#: mod/cal.php:325
+msgid "calendar"
 msgstr ""
 
-#: mod/photos.php:1168
-msgid "Public Photo"
-msgstr ""
+#: mod/contacts.php:134
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/photos.php:1234
-msgid "Edit Album"
+#: mod/contacts.php:169 mod/contacts.php:378
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
+#: mod/contacts.php:183
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
+#: mod/contacts.php:216
+msgid "Contact updated."
 msgstr ""
 
-#: mod/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
+#: mod/contacts.php:218 mod/dfrn_request.php:588
+msgid "Failed to update contact record."
 msgstr ""
 
-#: mod/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
+#: mod/contacts.php:399
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/photos.php:1317
-msgid "Photo not available"
+#: mod/contacts.php:399
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/photos.php:1372
-msgid "View photo"
+#: mod/contacts.php:410
+msgid "Contact has been ignored"
 msgstr ""
 
-#: mod/photos.php:1372
-msgid "Edit photo"
+#: mod/contacts.php:410
+msgid "Contact has been unignored"
 msgstr ""
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
+#: mod/contacts.php:422
+msgid "Contact has been archived"
 msgstr ""
 
-#: mod/photos.php:1398
-msgid "View Full Size"
+#: mod/contacts.php:422
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: mod/photos.php:1484
-msgid "Tags: "
+#: mod/contacts.php:447
+msgid "Drop contact"
 msgstr ""
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
+#: mod/contacts.php:450 mod/contacts.php:809
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: mod/photos.php:1526
-msgid "New album name"
+#: mod/contacts.php:469
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/photos.php:1527
-msgid "Caption"
+#: mod/contacts.php:506
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
+#: mod/contacts.php:510
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/photos.php:1528
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/contacts.php:515
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
+#: mod/contacts.php:535
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/photos.php:1530
-msgid "Rotate CW (right)"
+#: mod/contacts.php:538 mod/admin.php:899
+msgid "Never"
 msgstr ""
 
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
+#: mod/contacts.php:542
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/photos.php:1546
-msgid "Private photo"
+#: mod/contacts.php:542
+msgid "(Update was not successful)"
 msgstr ""
 
-#: mod/photos.php:1547
-msgid "Public photo"
+#: mod/contacts.php:544 mod/contacts.php:972
+msgid "Suggest friends"
 msgstr ""
 
-#: mod/photos.php:1770
-msgid "Map"
+#: mod/contacts.php:548
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/photos.php:1847 mod/videos.php:387
-msgid "View Album"
+#: mod/contacts.php:561
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/contacts.php:564
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/register.php:98
-#, 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."
+#: mod/contacts.php:565 mod/admin.php:908
+msgid "Disabled"
 msgstr ""
 
-#: mod/register.php:105
-msgid "Registration successful."
+#: mod/contacts.php:565
+msgid "Fetch information"
 msgstr ""
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
+#: mod/contacts.php:565
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
+#: mod/contacts.php:583
+msgid "Contact"
 msgstr ""
 
-#: mod/register.php:226
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: mod/contacts.php:586
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/register.php:227
+#: mod/contacts.php:587
+#, php-format
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
+#: mod/contacts.php:588
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
+#: mod/contacts.php:589
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/register.php:267
-msgid "Note for the admin"
+#: mod/contacts.php:595
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/contacts.php:596
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
+#: mod/contacts.php:597
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
+#: mod/contacts.php:598
+msgid "View conversations"
 msgstr ""
 
-#: mod/register.php:272 mod/admin.php:956
-msgid "Registration"
+#: mod/contacts.php:604
+msgid "Last update:"
 msgstr ""
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/contacts.php:606
+msgid "Update public posts"
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
+#: mod/contacts.php:608 mod/contacts.php:982
+msgid "Update now"
 msgstr ""
 
-#: mod/register.php:283 mod/settings.php:1271
-msgid "New Password:"
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1437
+msgid "Unblock"
 msgstr ""
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1436
+msgid "Block"
 msgstr ""
 
-#: mod/register.php:284 mod/settings.php:1272
-msgid "Confirm:"
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+msgid "Unignore"
 msgstr ""
 
-#: mod/register.php:285
-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>'."
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:257
+msgid "Ignore"
 msgstr ""
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
+#: mod/contacts.php:618
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
+#: mod/contacts.php:619
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/settings.php:43 mod/admin.php:1396
-msgid "Account"
+#: mod/contacts.php:620
+msgid "Currently archived"
 msgstr ""
 
-#: mod/settings.php:52 mod/admin.php:160
-msgid "Additional features"
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
+msgid "Hide this contact from others"
 msgstr ""
 
-#: mod/settings.php:60
-msgid "Display"
+#: mod/contacts.php:621
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:886
-msgid "Social Networks"
+#: mod/contacts.php:622
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
-msgid "Plugins"
+#: mod/contacts.php:622
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
+#: mod/contacts.php:625
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/settings.php:102
-msgid "Remove account"
+#: mod/contacts.php:625
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
+#: mod/contacts.php:643
+msgid "Actions"
 msgstr ""
 
-#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
-msgid "Update"
+#: mod/contacts.php:646
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/settings.php:269
-msgid "Failed to connect with email account using the settings provided."
+#: mod/contacts.php:692
+msgid "Suggestions"
 msgstr ""
 
-#: mod/settings.php:274
-msgid "Email settings updated."
+#: mod/contacts.php:695
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/settings.php:289
-msgid "Features updated"
+#: mod/contacts.php:703
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
+#: mod/contacts.php:708
+msgid "Unblocked"
 msgstr ""
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/contacts.php:711
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/settings.php:386
-msgid "Wrong password."
+#: mod/contacts.php:717
+msgid "Blocked"
 msgstr ""
 
-#: mod/settings.php:397
-msgid "Password changed."
+#: mod/contacts.php:720
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
+#: mod/contacts.php:726
+msgid "Ignored"
 msgstr ""
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
+#: mod/contacts.php:729
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/settings.php:481
-msgid " Name too short."
+#: mod/contacts.php:735
+msgid "Archived"
 msgstr ""
 
-#: mod/settings.php:490
-msgid "Wrong Password"
+#: mod/contacts.php:738
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/settings.php:495
-msgid " Not valid email."
+#: mod/contacts.php:744
+msgid "Hidden"
 msgstr ""
 
-#: mod/settings.php:501
-msgid " Cannot change to that email."
+#: mod/contacts.php:747
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/settings.php:557
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/contacts.php:804
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/settings.php:561
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
+#, php-format
+msgid "Results for: %s"
 msgstr ""
 
-#: mod/settings.php:601
-msgid "Settings updated."
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Archive"
 msgstr ""
 
-#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Unarchive"
 msgstr ""
 
-#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
-#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055
-msgid "Save Settings"
+#: mod/contacts.php:818
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
+#: mod/contacts.php:864
+msgid "View all contacts"
 msgstr ""
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
+#: mod/contacts.php:874
+msgid "View all common friends"
 msgstr ""
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
+#: mod/contacts.php:881
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
+#: mod/contacts.php:915
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/settings.php:695
-msgid "You can't edit this application."
+#: mod/contacts.php:919
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/settings.php:738
-msgid "Connected Apps"
+#: mod/contacts.php:923
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/settings.php:742
-msgid "Client key starts with"
+#: mod/contacts.php:993
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/settings.php:743
-msgid "No name"
+#: mod/contacts.php:1001
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/settings.php:744
-msgid "Remove authorization"
+#: mod/contacts.php:1009
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
+#: mod/contacts.php:1017
+msgid "Delete contact"
 msgstr ""
 
-#: mod/settings.php:764
-msgid "Plugin Settings"
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
+#: mod/profiles.php:180 mod/profiles.php:619
+msgid "Profile not found."
 msgstr ""
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "Off"
+#: mod/dfrn_confirm.php:127
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "On"
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/settings.php:786
-msgid "Additional Features"
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/settings.php:796 mod/settings.php:800
-msgid "General Social Media Settings"
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/settings.php:806
-msgid "Disable intelligent shortening"
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/settings.php:808
-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."
+#: mod/dfrn_confirm.php:281
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/settings.php:814
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/settings.php:816
-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."
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/settings.php:822
-msgid "Default group for OStatus contacts"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/settings.php:828
-msgid "Your legacy GNU Social account"
+#: mod/dfrn_confirm.php:569
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/settings.php:830
-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."
+#: mod/dfrn_confirm.php:580
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/settings.php:833
-msgid "Repair OStatus subscriptions"
+#: mod/dfrn_confirm.php:601
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
+#: mod/dfrn_confirm.php:615
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
-
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
+#: mod/dfrn_confirm.php:635
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
+#: mod/dfrn_confirm.php:646
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
+#: mod/dfrn_confirm.php:708
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/settings.php:891
-msgid "Email/Mailbox Setup"
+#: mod/dfrn_confirm.php:780
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: mod/settings.php:892
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
 msgstr ""
 
-#: mod/settings.php:893
-msgid "Last successful email check:"
+#: mod/editpost.php:32
+msgid "Edit post"
 msgstr ""
 
-#: mod/settings.php:895
-msgid "IMAP server name:"
+#: mod/events.php:100 mod/events.php:102
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/settings.php:896
-msgid "IMAP port:"
+#: mod/events.php:109 mod/events.php:111
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/settings.php:897
-msgid "Security:"
+#: mod/events.php:388
+msgid "Create New Event"
 msgstr ""
 
-#: mod/settings.php:897 mod/settings.php:902
-msgid "None"
+#: mod/events.php:489
+msgid "Event details"
 msgstr ""
 
-#: mod/settings.php:898
-msgid "Email login name:"
+#: mod/events.php:490
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/settings.php:899
-msgid "Email password:"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/settings.php:900
-msgid "Reply-to address:"
+#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
+msgid "Required"
 msgstr ""
 
-#: mod/settings.php:901
-msgid "Send public posts to all email contacts:"
+#: mod/events.php:493 mod/events.php:509
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Action after import:"
+#: mod/events.php:495 mod/events.php:496
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Move to folder"
+#: mod/events.php:497 mod/events.php:510
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/settings.php:903
-msgid "Move to folder:"
+#: mod/events.php:499
+msgid "Description:"
 msgstr ""
 
-#: mod/settings.php:934 mod/admin.php:862
-msgid "No special theme for mobile devices"
+#: mod/events.php:503 mod/events.php:505
+msgid "Title:"
 msgstr ""
 
-#: mod/settings.php:994
-msgid "Display Settings"
+#: mod/events.php:506 mod/events.php:507
+msgid "Share this event"
 msgstr ""
 
-#: mod/settings.php:1000 mod/settings.php:1023
-msgid "Display Theme:"
+#: mod/fbrowser.php:132
+msgid "Files"
 msgstr ""
 
-#: mod/settings.php:1001
-msgid "Mobile Theme:"
+#: mod/friendica.php:72
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/settings.php:1002
-msgid "Suppress warning of insecure networks"
+#: mod/friendica.php:73
+msgid "running at web location"
 msgstr ""
 
-#: mod/settings.php:1002
+#: mod/friendica.php:75
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Update browser every xx seconds"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/settings.php:1004
-msgid "Number of items to display per page:"
+#: mod/friendica.php:78
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/settings.php:1004 mod/settings.php:1005
-msgid "Maximum of 100 items"
+#: mod/friendica.php:92
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: mod/settings.php:1005
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/friendica.php:105
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: mod/settings.php:1006
-msgid "Don't show emoticons"
+#: mod/item.php:118
+msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/settings.php:1007
-msgid "Calendar"
+#: mod/item.php:336
+msgid "Empty post discarded."
 msgstr ""
 
-#: mod/settings.php:1008
-msgid "Beginning of week:"
+#: mod/item.php:889
+msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/settings.php:1009
-msgid "Don't show notices"
+#: mod/item.php:979
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/settings.php:1010
-msgid "Infinite scroll"
+#: mod/item.php:981
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/settings.php:1011
-msgid "Automatic updates only at the top of the network page"
+#: mod/item.php:982
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
+#: mod/item.php:986
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+#: mod/message.php:60 mod/wallmessage.php:50
+msgid "No recipient selected."
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "General Theme Settings"
+#: mod/message.php:64
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Custom Theme Settings"
+#: mod/message.php:67 mod/wallmessage.php:56
+msgid "Message could not be sent."
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Content Settings"
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message collection failure."
 msgstr ""
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message sent."
 msgstr ""
 
-#: mod/settings.php:1099
-msgid "Account Types"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: mod/settings.php:1100
-msgid "Personal Page Subtypes"
+#: mod/message.php:224
+msgid "Message deleted."
 msgstr ""
 
-#: mod/settings.php:1101
-msgid "Community Forum Subtypes"
+#: mod/message.php:255
+msgid "Conversation removed."
 msgstr ""
 
-#: mod/settings.php:1108
-msgid "Personal Page"
+#: mod/message.php:322 mod/wallmessage.php:126
+msgid "Send Private Message"
 msgstr ""
 
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
+msgid "To:"
 msgstr ""
 
-#: mod/settings.php:1112
-msgid "Organisation Page"
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
+msgid "Subject:"
 msgstr ""
 
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
+#: mod/message.php:364
+msgid "No messages."
 msgstr ""
 
-#: mod/settings.php:1116
-msgid "News Page"
+#: mod/message.php:403
+msgid "Message not available."
 msgstr ""
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
+#: mod/message.php:477
+msgid "Delete message"
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "Community Forum"
+#: mod/message.php:503 mod/message.php:583
+msgid "Delete conversation"
 msgstr ""
 
-#: mod/settings.php:1121
+#: mod/message.php:505
 msgid ""
-"This account is a community forum where people can discuss with each other"
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "Normal Account Page"
+#: mod/message.php:509
+msgid "Send Reply"
 msgstr ""
 
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
+#: mod/message.php:553
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: mod/message.php:555
+#, php-format
+msgid "You and %s"
 msgstr ""
 
-#: mod/settings.php:1128
-msgid "Soapbox Page"
+#: mod/message.php:557
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
+#: mod/message.php:586
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: mod/settings.php:1132
-msgid "Public Forum"
-msgstr ""
+#: mod/message.php:589
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
+#: mod/p.php:9
+msgid "Not Extended"
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
+#: mod/ping.php:270
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
+#: mod/ping.php:285
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/settings.php:1140
-msgid "Private Forum [Experimental]"
+#: mod/ping.php:300
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
+#: mod/wallmessage.php:42 mod/wallmessage.php:106
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "OpenID:"
+#: mod/wallmessage.php:53
+msgid "Unable to check your home location."
 msgstr ""
 
-#: mod/settings.php:1153
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/wallmessage.php:80 mod/wallmessage.php:89
+msgid "No recipient."
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "Publish your default profile in your local site directory?"
+#: mod/wallmessage.php:127
+#, 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 ""
 
-#: mod/settings.php:1169
-msgid "Publish your default profile in the global social directory?"
+#: mod/photos.php:90 mod/photos.php:1876
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/settings.php:1177
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
+msgid "Upload New Photos"
 msgstr ""
 
-#: mod/settings.php:1181
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
+#: mod/photos.php:171
+msgid "Contact information unavailable"
 msgstr ""
 
-#: mod/settings.php:1186
-msgid "Allow friends to post to your profile page?"
+#: mod/photos.php:192
+msgid "Album not found."
 msgstr ""
 
-#: mod/settings.php:1192
-msgid "Allow friends to tag your posts?"
+#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
+msgid "Delete Album"
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/photos.php:235
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: mod/settings.php:1204
-msgid "Permit unknown people to send you private mail?"
+#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
+msgid "Delete Photo"
 msgstr ""
 
-#: mod/settings.php:1212
-msgid "Profile is <strong>not published</strong>."
+#: mod/photos.php:326
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: mod/settings.php:1220
+#: mod/photos.php:705
 #, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: mod/settings.php:1227
-msgid "Automatically expire posts after this many days:"
+#: mod/photos.php:705
+msgid "a photo"
 msgstr ""
 
-#: mod/settings.php:1227
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/photos.php:811
+msgid "Image file is empty."
 msgstr ""
 
-#: mod/settings.php:1228
-msgid "Advanced expiration settings"
+#: mod/photos.php:974
+msgid "No photos selected"
 msgstr ""
 
-#: mod/settings.php:1229
-msgid "Advanced Expiration"
+#: mod/photos.php:1134
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: mod/settings.php:1230
-msgid "Expire posts:"
+#: mod/photos.php:1168
+msgid "Upload Photos"
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "Expire personal notes:"
+#: mod/photos.php:1172 mod/photos.php:1242
+msgid "New album name: "
 msgstr ""
 
-#: mod/settings.php:1232
-msgid "Expire starred posts:"
+#: mod/photos.php:1173
+msgid "or existing album name: "
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "Expire photos:"
+#: mod/photos.php:1174
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Only expire posts by others:"
+#: mod/photos.php:1187
+msgid "Private Photo"
 msgstr ""
 
-#: mod/settings.php:1262
-msgid "Account Settings"
+#: mod/photos.php:1188
+msgid "Public Photo"
 msgstr ""
 
-#: mod/settings.php:1270
-msgid "Password Settings"
+#: mod/photos.php:1254
+msgid "Edit Album"
 msgstr ""
 
-#: mod/settings.php:1272
-msgid "Leave password fields blank unless changing"
+#: mod/photos.php:1260
+msgid "Show Newest First"
 msgstr ""
 
-#: mod/settings.php:1273
-msgid "Current Password:"
+#: mod/photos.php:1262
+msgid "Show Oldest First"
 msgstr ""
 
-#: mod/settings.php:1273 mod/settings.php:1274
-msgid "Your current password to confirm the changes"
+#: mod/photos.php:1289 mod/photos.php:1861
+msgid "View Photo"
 msgstr ""
 
-#: mod/settings.php:1274
-msgid "Password:"
+#: mod/photos.php:1335
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: mod/settings.php:1278
-msgid "Basic Settings"
+#: mod/photos.php:1337
+msgid "Photo not available"
 msgstr ""
 
-#: mod/settings.php:1280
-msgid "Email Address:"
+#: mod/photos.php:1395
+msgid "View photo"
 msgstr ""
 
-#: mod/settings.php:1281
-msgid "Your Timezone:"
+#: mod/photos.php:1395
+msgid "Edit photo"
 msgstr ""
 
-#: mod/settings.php:1282
-msgid "Your Language:"
+#: mod/photos.php:1396
+msgid "Use as profile photo"
 msgstr ""
 
-#: mod/settings.php:1282
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+#: mod/photos.php:1421
+msgid "View Full Size"
 msgstr ""
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
+#: mod/photos.php:1507
+msgid "Tags: "
 msgstr ""
 
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
+#: mod/photos.php:1510
+msgid "[Remove any tag]"
 msgstr ""
 
-#: mod/settings.php:1287
-msgid "Security and Privacy Settings"
+#: mod/photos.php:1549
+msgid "New album name"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
+#: mod/photos.php:1550
+msgid "Caption"
 msgstr ""
 
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
+#: mod/photos.php:1551
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
+#: mod/photos.php:1551
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/settings.php:1291
-msgid "(click to open/close)"
+#: mod/photos.php:1552
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/settings.php:1302
-msgid "Default Private Post"
+#: mod/photos.php:1553
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/settings.php:1303
-msgid "Default Public Post"
+#: mod/photos.php:1554
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/settings.php:1307
-msgid "Default Permissions for New Posts"
+#: mod/photos.php:1569
+msgid "Private photo"
 msgstr ""
 
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
+#: mod/photos.php:1570
+msgid "Public photo"
 msgstr ""
 
-#: mod/settings.php:1322
-msgid "Notification Settings"
+#: mod/photos.php:1792
+msgid "Map"
 msgstr ""
 
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/settings.php:1324
-msgid "accepting a friend request"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/settings.php:1325
-msgid "joining a forum/community"
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:528
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
-msgstr ""
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/settings.php:1328
-msgid "You receive an introduction"
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
+#: mod/dfrn_request.php:225
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/settings.php:1330
-msgid "Someone writes on your profile wall"
+#: mod/dfrn_request.php:253
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
+#: mod/dfrn_request.php:280
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/settings.php:1332
-msgid "You receive a private message"
+#: mod/dfrn_request.php:281
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
+#: mod/dfrn_request.php:282
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
+#: mod/dfrn_request.php:344
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
+#: mod/dfrn_request.php:353
+msgid "Invalid email address."
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
+#: mod/dfrn_request.php:378
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
+#: mod/dfrn_request.php:481
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
+#: mod/dfrn_request.php:485
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
+#: mod/dfrn_request.php:506
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
+#: mod/dfrn_request.php:609
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
+#: mod/dfrn_request.php:651
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/settings.php:1347
-msgid "Relocate"
+#: mod/dfrn_request.php:672
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/settings.php:1348
+#: mod/dfrn_request.php:682
 msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/settings.php:1349
-msgid "Resend relocate message to contacts"
+#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
+msgid "Confirm"
 msgstr ""
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
+#: mod/dfrn_request.php:708
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/videos.php:125
-msgid "Delete Video"
+#: mod/dfrn_request.php:711
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/videos.php:204
-msgid "No videos selected"
+#: mod/dfrn_request.php:712
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
+#: mod/dfrn_request.php:843
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
+#: mod/dfrn_request.php:867
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
+"\">follow this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125
-msgid "Invalid request."
+#: mod/dfrn_request.php:872
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: mod/dfrn_request.php:873
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
+#: mod/dfrn_request.php:882
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: mod/wall_attach.php:105
+#: mod/dfrn_request.php:884
 #, php-format
-msgid "File exceeds size limit of %s"
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
+#: mod/install.php:140
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
+#: mod/install.php:146
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
+#: mod/install.php:150
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
+#: mod/install.php:156
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
+#: mod/install.php:161
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:161
-msgid "DB updates"
+#: mod/install.php:162 mod/install.php:234 mod/install.php:609
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
+#: mod/install.php:174
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
+#: mod/install.php:231
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
+#: mod/install.php:236
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
+#: mod/install.php:255
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:179
-msgid "probe address"
+#: mod/install.php:256
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:180
-msgid "check webfinger"
+#: mod/install.php:257
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:187
-msgid "Plugin Features"
+#: mod/install.php:258
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/admin.php:189
-msgid "diagnostics"
+#: mod/install.php:262
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
+#: mod/install.php:263
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:306
-msgid "unknown"
+#: mod/install.php:264
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:365
-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."
+#: mod/install.php:264
+msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: mod/admin.php:366
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/install.php:265
+msgid "Database Name"
 msgstr ""
 
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
+#: mod/install.php:266 mod/install.php:307
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/admin.php:378
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: mod/install.php:266 mod/install.php:307
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:408
-msgid "ID"
+#: mod/install.php:270 mod/install.php:310
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:409
-msgid "Recipient Name"
+#: mod/install.php:297
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:410
-msgid "Recipient Profile"
+#: mod/install.php:311
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:412
-msgid "Created"
+#: mod/install.php:311
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:413
-msgid "Last Tried"
+#: mod/install.php:351
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/admin.php:414
+#: mod/install.php:352
 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."
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a href='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/admin.php:439
-#, 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 <tt>convert_innodb.sql</"
-"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
+#: mod/install.php:356
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/admin.php:444
+#: mod/install.php:356
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/admin.php:448 mod/admin.php:1352
-msgid "Normal Account"
+#: mod/install.php:361
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
+#: mod/install.php:370
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
+#: mod/install.php:371
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
+#: mod/install.php:373
+msgid "PHP cli binary"
 msgstr ""
 
-#: mod/admin.php:452
-msgid "Blog Account"
+#: mod/install.php:384
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/admin.php:453
-msgid "Private Forum"
+#: mod/install.php:385
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/admin.php:479
-msgid "Message queues"
+#: mod/install.php:387
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/admin.php:485
-msgid "Summary"
+#: mod/install.php:410
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:488
-msgid "Registered users"
+#: mod/install.php:411
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/admin.php:490
-msgid "Pending registrations"
+#: mod/install.php:413
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:491
-msgid "Version"
+#: mod/install.php:420
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/admin.php:496
-msgid "Active plugins"
+#: mod/install.php:421
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/admin.php:521
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/install.php:422
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
+#: mod/install.php:423
+msgid "mysqli PHP module"
 msgstr ""
 
-#: mod/admin.php:834
-msgid "Site settings updated."
+#: mod/install.php:424
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/admin.php:881
-msgid "No community page"
+#: mod/install.php:425
+msgid "mcrypt PHP module"
 msgstr ""
 
-#: mod/admin.php:882
-msgid "Public postings from users of this site"
+#: mod/install.php:426
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/admin.php:883
-msgid "Global community page"
+#: mod/install.php:427
+msgid "iconv module"
 msgstr ""
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
+#: mod/install.php:431 mod/install.php:433
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/admin.php:889
-msgid "At post arrival"
+#: mod/install.php:431
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
+#: mod/install.php:439
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
+#: mod/install.php:443
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
+#: mod/install.php:447
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:904
-msgid "One month"
+#: mod/install.php:451
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:905
-msgid "Three months"
+#: mod/install.php:455
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:906
-msgid "Half a year"
+#: mod/install.php:459
+msgid "Error: mcrypt PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:907
-msgid "One year"
+#: mod/install.php:463
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:912
-msgid "Multi user instance"
+#: mod/install.php:472
+msgid ""
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
 msgstr ""
 
-#: mod/admin.php:935
-msgid "Closed"
+#: mod/install.php:475
+msgid ""
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
 msgstr ""
 
-#: mod/admin.php:936
-msgid "Requires approval"
+#: mod/install.php:477
+msgid "mcrypt_create_iv() function"
 msgstr ""
 
-#: mod/admin.php:937
-msgid "Open"
+#: mod/install.php:485
+msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
+#: mod/install.php:500
+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 ""
 
-#: mod/admin.php:942
-msgid "Force all links to use SSL"
+#: mod/install.php:501
+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 ""
 
-#: mod/admin.php:943
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/install.php:502
+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 ""
 
-#: mod/admin.php:957
-msgid "File upload"
+#: mod/install.php:503
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/admin.php:958
-msgid "Policies"
+#: mod/install.php:506
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/admin.php:960
-msgid "Auto Discovered Contact Directory"
+#: mod/install.php:516
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/admin.php:961
-msgid "Performance"
+#: mod/install.php:517
+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 ""
 
-#: mod/admin.php:962
-msgid "Worker"
+#: mod/install.php:518
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: mod/admin.php:963
+#: mod/install.php:519
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+"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 ""
 
-#: mod/admin.php:966
-msgid "Site name"
+#: mod/install.php:522
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/admin.php:967
-msgid "Host name"
+#: mod/install.php:538
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/admin.php:968
-msgid "Sender Email"
+#: mod/install.php:540
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/admin.php:968
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/install.php:559
+msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/admin.php:969
-msgid "Banner/Logo"
+#: mod/install.php:561
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Shortcut icon"
+#: mod/install.php:563
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Link to an icon that will be used for browsers."
+#: mod/install.php:570
+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 ""
 
-#: mod/admin.php:971
-msgid "Touch icon"
+#: mod/install.php:607
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/install.php:608
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Additional Info"
+#: mod/profiles.php:38
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/admin.php:972
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/profiles.php:56 mod/profiles.php:90
+msgid "Profile-"
 msgstr ""
 
-#: mod/admin.php:973
-msgid "System language"
+#: mod/profiles.php:75 mod/profiles.php:118
+msgid "New profile created."
 msgstr ""
 
-#: mod/admin.php:974
-msgid "System theme"
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/admin.php:974
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/profiles.php:190
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/admin.php:975
-msgid "Mobile system theme"
+#: mod/profiles.php:338
+msgid "Marital Status"
 msgstr ""
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
+#: mod/profiles.php:342
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/admin.php:976
-msgid "SSL link policy"
+#: mod/profiles.php:354
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/profiles.php:357
+msgid "Religion"
 msgstr ""
 
-#: mod/admin.php:977
-msgid "Force SSL"
+#: mod/profiles.php:361
+msgid "Political Views"
 msgstr ""
 
-#: mod/admin.php:977
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/profiles.php:365
+msgid "Gender"
 msgstr ""
 
-#: mod/admin.php:978
-msgid "Old style 'Share'"
+#: mod/profiles.php:369
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/admin.php:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
+#: mod/profiles.php:373
+msgid "XMPP"
 msgstr ""
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
+#: mod/profiles.php:377
+msgid "Homepage"
 msgstr ""
 
-#: mod/admin.php:979
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/profiles.php:381 mod/profiles.php:694
+msgid "Interests"
 msgstr ""
 
-#: mod/admin.php:980
-msgid "Single user instance"
+#: mod/profiles.php:385
+msgid "Address"
 msgstr ""
 
-#: mod/admin.php:980
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/profiles.php:392 mod/profiles.php:690
+msgid "Location"
 msgstr ""
 
-#: mod/admin.php:981
-msgid "Maximum image size"
+#: mod/profiles.php:477
+msgid "Profile updated."
 msgstr ""
 
-#: mod/admin.php:981
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/profiles.php:565
+msgid " and "
 msgstr ""
 
-#: mod/admin.php:982
-msgid "Maximum image length"
+#: mod/profiles.php:573
+msgid "public profile"
 msgstr ""
 
-#: mod/admin.php:982
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/admin.php:983
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/profiles.php:580
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/admin.php:985
-msgid "Register policy"
+#: mod/profiles.php:637
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
+#: mod/profiles.php:642
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/admin.php:986
-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."
+#: mod/profiles.php:666
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Register text"
+#: mod/profiles.php:678
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
+#: mod/profiles.php:679
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
+#: mod/profiles.php:681
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/admin.php:988
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/profiles.php:682
+msgid "View this profile"
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
+#: mod/profiles.php:684
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/admin.php:989
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: mod/profiles.php:685
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/admin.php:990
-msgid "Allowed email domains"
+#: mod/profiles.php:686
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/admin.php:990
-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"
+#: mod/profiles.php:688
+msgid "Basic information"
 msgstr ""
 
-#: mod/admin.php:991
-msgid "Block public"
+#: mod/profiles.php:689
+msgid "Profile picture"
 msgstr ""
 
-#: mod/admin.php:991
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/profiles.php:691
+msgid "Preferences"
 msgstr ""
 
-#: mod/admin.php:992
-msgid "Force publish"
+#: mod/profiles.php:692
+msgid "Status information"
 msgstr ""
 
-#: mod/admin.php:992
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/profiles.php:693
+msgid "Additional information"
 msgstr ""
 
-#: mod/admin.php:993
-msgid "Global directory URL"
+#: mod/profiles.php:696
+msgid "Relation"
 msgstr ""
 
-#: mod/admin.php:993
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/profiles.php:700
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Allow threaded items"
+#: mod/profiles.php:701
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
+#: mod/profiles.php:703
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
+#: mod/profiles.php:708
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/admin.php:995
+#: mod/profiles.php:710
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
-
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/admin.php:996
-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."
+#: mod/profiles.php:711
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/profiles.php:712
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/admin.php:997
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/profiles.php:715
+msgid "Street Address:"
 msgstr ""
 
-#: mod/admin.php:998
-msgid "Don't embed private images in posts"
+#: mod/profiles.php:716
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/admin.php:998
-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."
+#: mod/profiles.php:717
+msgid "Region/State:"
 msgstr ""
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
+#: mod/profiles.php:718
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/admin.php:999
-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."
+#: mod/profiles.php:719
+msgid "Country:"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Block multiple registrations"
+#: mod/profiles.php:723
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/profiles.php:723
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/admin.php:1001
-msgid "OpenID support"
+#: mod/profiles.php:724
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
+#: mod/profiles.php:726
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/admin.php:1002
-msgid "Fullname check"
+#: mod/profiles.php:727
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/admin.php:1002
+#: mod/profiles.php:727
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
+#: mod/profiles.php:728
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
+#: mod/profiles.php:731
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
+#: mod/profiles.php:732
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/admin.php:1004
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
+#: mod/profiles.php:732
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
+#: mod/profiles.php:733
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/admin.php:1005
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/profiles.php:733
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid "Enable OStatus support"
+#: mod/profiles.php:736
+msgid "Musical interests"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/profiles.php:737
+msgid "Books, literature"
 msgstr ""
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
+#: mod/profiles.php:738
+msgid "Television"
 msgstr ""
 
-#: mod/admin.php:1007
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: mod/profiles.php:739
+msgid "Film/dance/culture/entertainment"
 msgstr ""
-
-#: mod/admin.php:1008
-msgid "Only import OStatus threads from our contacts"
+
+#: mod/profiles.php:740
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/admin.php:1008
-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."
+#: mod/profiles.php:741
+msgid "Love/romance"
 msgstr ""
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/profiles.php:742
+msgid "Work/employment"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/profiles.php:743
+msgid "School/education"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
+#: mod/profiles.php:744
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/profiles.php:788
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
+#: mod/display.php:479
+msgid "Item has been removed."
 msgstr ""
 
-#: mod/admin.php:1013
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: mod/admin.php:92
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
+#: mod/admin.php:157 mod/admin.php:975
+msgid "Site"
 msgstr ""
 
-#: mod/admin.php:1014
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+#: mod/admin.php:158 mod/admin.php:909 mod/admin.php:1425 mod/admin.php:1441
+msgid "Users"
 msgstr ""
 
-#: mod/admin.php:1015
-msgid "Proxy user"
+#: mod/admin.php:160 mod/admin.php:1813 mod/admin.php:1863
+msgid "Themes"
 msgstr ""
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
+#: mod/admin.php:162
+msgid "DB updates"
 msgstr ""
 
-#: mod/admin.php:1017
-msgid "Network timeout"
+#: mod/admin.php:163 mod/admin.php:407
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/admin.php:1017
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/admin.php:164 mod/admin.php:373
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
+#: mod/admin.php:178 mod/admin.php:189 mod/admin.php:1937
+msgid "Logs"
 msgstr ""
 
-#: mod/admin.php:1018
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
+#: mod/admin.php:179 mod/admin.php:2005
+msgid "View Logs"
 msgstr ""
 
-#: mod/admin.php:1019
-msgid "Poll interval"
+#: mod/admin.php:180
+msgid "probe address"
 msgstr ""
 
-#: mod/admin.php:1019
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+#: mod/admin.php:181
+msgid "check webfinger"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
+#: mod/admin.php:188
+msgid "Plugin Features"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: mod/admin.php:190
+msgid "diagnostics"
 msgstr ""
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
+#: mod/admin.php:191
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/admin.php:307
+msgid "unknown"
 msgstr ""
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
+#: mod/admin.php:366
+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 ""
 
-#: mod/admin.php:1022
+#: mod/admin.php:367
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
+#: mod/admin.php:372 mod/admin.php:406 mod/admin.php:485 mod/admin.php:974
+#: mod/admin.php:1424 mod/admin.php:1542 mod/admin.php:1605 mod/admin.php:1812
+#: mod/admin.php:1862 mod/admin.php:1936 mod/admin.php:2004
+msgid "Administration"
 msgstr ""
 
-#: mod/admin.php:1023
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/admin.php:379
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Periodical check of global contacts"
+#: mod/admin.php:409
+msgid "ID"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+#: mod/admin.php:410
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Days between requery"
+#: mod/admin.php:411
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/admin.php:413
+msgid "Created"
 msgstr ""
 
-#: mod/admin.php:1027
-msgid "Discover contacts from other servers"
+#: mod/admin.php:414
+msgid "Last Tried"
 msgstr ""
 
-#: mod/admin.php:1027
+#: mod/admin.php:415
 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'."
+"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 ""
 
-#: mod/admin.php:1028
-msgid "Timeframe for fetching global contacts"
+#: mod/admin.php:440
+#, 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 <tt>convert_innodb.sql</"
+"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
 msgstr ""
 
-#: mod/admin.php:1028
+#: mod/admin.php:445
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
 msgstr ""
 
-#: mod/admin.php:1029
-msgid "Search the local directory"
+#: mod/admin.php:449 mod/admin.php:1373
+msgid "Normal Account"
 msgstr ""
 
-#: mod/admin.php:1029
-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."
+#: mod/admin.php:450 mod/admin.php:1374
+msgid "Soapbox Account"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid "Publish server information"
+#: mod/admin.php:451 mod/admin.php:1375
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/admin.php:1031
-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."
+#: mod/admin.php:452 mod/admin.php:1376
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/admin.php:1033
-msgid "Use MySQL full text engine"
+#: mod/admin.php:453
+msgid "Blog Account"
 msgstr ""
 
-#: mod/admin.php:1033
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: mod/admin.php:454
+msgid "Private Forum"
 msgstr ""
 
-#: mod/admin.php:1034
-msgid "Suppress Language"
+#: mod/admin.php:480
+msgid "Message queues"
 msgstr ""
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
+#: mod/admin.php:486
+msgid "Summary"
 msgstr ""
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
+#: mod/admin.php:489
+msgid "Registered users"
 msgstr ""
 
-#: mod/admin.php:1035
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/admin.php:491
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
+#: mod/admin.php:492
+msgid "Version"
 msgstr ""
 
-#: mod/admin.php:1036
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/admin.php:497
+msgid "Active plugins"
 msgstr ""
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
+#: mod/admin.php:522
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/admin.php:1037
-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."
+#: mod/admin.php:827
+msgid "RINO2 needs mcrypt php extension to work."
 msgstr ""
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
+#: mod/admin.php:835
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/admin.php:1038
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/admin.php:892
+msgid "No community page"
 msgstr ""
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
+#: mod/admin.php:893
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/admin.php:1039
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
+#: mod/admin.php:894
+msgid "Global community page"
 msgstr ""
 
-#: mod/admin.php:1040
-msgid "Temp path"
+#: mod/admin.php:900
+msgid "At post arrival"
 msgstr ""
 
-#: mod/admin.php:1040
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+#: mod/admin.php:910
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/admin.php:1041
-msgid "Base path to installation"
+#: mod/admin.php:911
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/admin.php:1041
-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."
+#: mod/admin.php:915
+msgid "One month"
 msgstr ""
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
+#: mod/admin.php:916
+msgid "Three months"
 msgstr ""
 
-#: mod/admin.php:1042
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+#: mod/admin.php:917
+msgid "Half a year"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
+#: mod/admin.php:918
+msgid "One year"
 msgstr ""
 
-#: mod/admin.php:1043
-msgid ""
-"The old style pager has page numbers but slows down massively the page speed."
+#: mod/admin.php:923
+msgid "Multi user instance"
 msgstr ""
-
-#: mod/admin.php:1044
-msgid "Only search in tags"
+
+#: mod/admin.php:946
+msgid "Closed"
 msgstr ""
 
-#: mod/admin.php:1044
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/admin.php:947
+msgid "Requires approval"
 msgstr ""
 
-#: mod/admin.php:1046
-msgid "New base url"
+#: mod/admin.php:948
+msgid "Open"
 msgstr ""
 
-#: mod/admin.php:1046
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
+#: mod/admin.php:952
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/admin.php:1048
-msgid "RINO Encryption"
+#: mod/admin.php:953
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
+#: mod/admin.php:954
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
+#: mod/admin.php:978
+msgid "File upload"
 msgstr ""
 
-#: mod/admin.php:1049
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
+#: mod/admin.php:979
+msgid "Policies"
 msgstr ""
 
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
+#: mod/admin.php:981
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/admin.php:1051
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
+#: mod/admin.php:982
+msgid "Performance"
 msgstr ""
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
+#: mod/admin.php:983
+msgid "Worker"
 msgstr ""
 
-#: mod/admin.php:1052
+#: mod/admin.php:984
 msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/admin.php:1053
-msgid "Don't use 'proc_open' with the worker"
+#: mod/admin.php:987
+msgid "Site name"
 msgstr ""
 
-#: mod/admin.php:1053
-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."
+#: mod/admin.php:988
+msgid "Host name"
 msgstr ""
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
+#: mod/admin.php:989
+msgid "Sender Email"
 msgstr ""
 
-#: mod/admin.php:1054
+#: mod/admin.php:989
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
+#: mod/admin.php:990
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/admin.php:1055
-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 yourdomain.tld/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. The worker background process needs to be activated for this."
+#: mod/admin.php:991
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
+#: mod/admin.php:991
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/admin.php:992
+msgid "Touch icon"
 msgstr ""
 
-#: mod/admin.php:1095
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/admin.php:992
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/admin.php:993
+msgid "Additional Info"
 msgstr ""
 
-#: mod/admin.php:1110
+#: mod/admin.php:993
 #, php-format
-msgid "Update %s was successfully applied."
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/admin.php:1114
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/admin.php:994
+msgid "System language"
 msgstr ""
 
-#: mod/admin.php:1116
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/admin.php:995
+msgid "System theme"
 msgstr ""
 
-#: mod/admin.php:1135
-msgid "No failed updates."
+#: mod/admin.php:995
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/admin.php:1136
-msgid "Check database structure"
+#: mod/admin.php:996
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/admin.php:1141
-msgid "Failed Updates"
+#: mod/admin.php:996
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/admin.php:1142
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/admin.php:997
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/admin.php:1143
-msgid "Mark success (if update was manually applied)"
+#: mod/admin.php:997
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
+#: mod/admin.php:998
+msgid "Force SSL"
 msgstr ""
 
-#: mod/admin.php:1178
-#, php-format
+#: mod/admin.php:998
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/admin.php:1181
-#, 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."
+#: mod/admin.php:999
+msgid "Old style 'Share'"
 msgstr ""
 
-#: mod/admin.php:1225
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1232
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:999
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr ""
 
-#: mod/admin.php:1279
-#, php-format
-msgid "User '%s' deleted"
+#: mod/admin.php:1000
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/admin.php:1000
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' blocked"
+#: mod/admin.php:1001
+msgid "Single user instance"
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Register date"
+#: mod/admin.php:1001
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
+#: mod/admin.php:1002
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
+#: mod/admin.php:1002
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/admin.php:1405
-msgid "Add User"
+#: mod/admin.php:1003
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/admin.php:1406
-msgid "select all"
+#: mod/admin.php:1003
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
+#: mod/admin.php:1004
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "User waiting for permanent deletion"
+#: mod/admin.php:1004
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Request date"
+#: mod/admin.php:1006
+msgid "Register policy"
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "No registrations."
+#: mod/admin.php:1007
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Note from the user"
+#: mod/admin.php:1007
+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 ""
 
-#: mod/admin.php:1413
-msgid "Deny"
+#: mod/admin.php:1008
+msgid "Register text"
 msgstr ""
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Block"
+#: mod/admin.php:1008
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/admin.php:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Unblock"
+#: mod/admin.php:1009
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/admin.php:1417
-msgid "Site admin"
+#: mod/admin.php:1009
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Account expired"
+#: mod/admin.php:1010
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/admin.php:1421
-msgid "New User"
+#: mod/admin.php:1010
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr ""
 
-#: mod/admin.php:1422
-msgid "Deleted since"
+#: mod/admin.php:1011
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/admin.php:1427
+#: mod/admin.php:1011
 msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+"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 ""
 
-#: mod/admin.php:1428
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/admin.php:1012
+msgid "Block public"
 msgstr ""
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
+#: mod/admin.php:1012
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Nickname"
+#: mod/admin.php:1013
+msgid "Force publish"
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
+#: mod/admin.php:1013
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
+#: mod/admin.php:1014
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/admin.php:1483
-#, php-format
-msgid "Plugin %s disabled."
+#: mod/admin.php:1014
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/admin.php:1487
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/admin.php:1015
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
+#: mod/admin.php:1015
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/admin.php:1500 mod/admin.php:1736
-msgid "Enable"
+#: mod/admin.php:1016
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
+#: mod/admin.php:1016
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/admin.php:1531 mod/admin.php:1790
-msgid "Author: "
+#: mod/admin.php:1017
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
+#: mod/admin.php:1017
+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 ""
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
+#: mod/admin.php:1018
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/admin.php:1589
-#, php-format
+#: mod/admin.php:1018
 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"
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/admin.php:1694
-msgid "No themes found."
+#: mod/admin.php:1019
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/admin.php:1772
-msgid "Screenshot"
+#: mod/admin.php:1019
+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 ""
 
-#: mod/admin.php:1832
-msgid "Reload active themes"
+#: mod/admin.php:1020
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/admin.php:1837
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/admin.php:1020
+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 ""
 
-#: mod/admin.php:1838
-msgid "[Experimental]"
+#: mod/admin.php:1021
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
+#: mod/admin.php:1021
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/admin.php:1863
-msgid "Log settings updated."
+#: mod/admin.php:1022
+msgid "OpenID support"
 msgstr ""
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
+#: mod/admin.php:1022
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/admin.php:1897
-msgid "PHP log currently disabled."
+#: mod/admin.php:1023
+msgid "Fullname check"
 msgstr ""
 
-#: mod/admin.php:1906
-msgid "Clear"
+#: mod/admin.php:1023
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/admin.php:1911
-msgid "Enable Debugging"
+#: mod/admin.php:1024
+msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: mod/admin.php:1912
-msgid "Log file"
+#: mod/admin.php:1024
+msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: mod/admin.php:1912
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/admin.php:1025
+msgid "Community Page Style"
 msgstr ""
 
-#: mod/admin.php:1913
-msgid "Log level"
+#: mod/admin.php:1025
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
 msgstr ""
 
-#: mod/admin.php:1916
-msgid "PHP logging"
+#: mod/admin.php:1026
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/admin.php:1917
+#: mod/admin.php:1026
 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."
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
+#: mod/admin.php:1027
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/admin.php:2053
-msgid "Manage Additional Features"
+#: mod/admin.php:1027
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
+#: mod/admin.php:1028
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
+#: mod/admin.php:1028
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: mod/contacts.php:206
-msgid "Contact updated."
+#: mod/admin.php:1029
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
+#: mod/admin.php:1029
+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 ""
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
+#: mod/admin.php:1030
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
+#: mod/admin.php:1032
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
+#: mod/admin.php:1033
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
+#: mod/admin.php:1033
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
+#: mod/admin.php:1034
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
+#: mod/admin.php:1034
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/contacts.php:437
-msgid "Drop contact"
+#: mod/admin.php:1035
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
+#: mod/admin.php:1035
+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 ""
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
+#: mod/admin.php:1036
+msgid "Proxy user"
 msgstr ""
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/admin.php:1037
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
+#: mod/admin.php:1038
+msgid "Network timeout"
 msgstr ""
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
+#: mod/admin.php:1038
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
+#: mod/admin.php:1039
+msgid "Delivery interval"
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
+#: mod/admin.php:1039
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
+#: mod/admin.php:1040
+msgid "Poll interval"
 msgstr ""
 
-#: mod/contacts.php:536 mod/contacts.php:964
-msgid "Suggest friends"
+#: mod/admin.php:1040
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
+#: mod/admin.php:1041
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
+#: mod/admin.php:1041
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
+#: mod/admin.php:1042
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/contacts.php:557
-msgid "Fetch information"
+#: mod/admin.php:1042
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
+#: mod/admin.php:1043
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Contact"
+#: mod/admin.php:1043
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
+#: mod/admin.php:1044
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/contacts.php:579
-#, php-format
+#: mod/admin.php:1044
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
+#: mod/admin.php:1046
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
+#: mod/admin.php:1046
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
+#: mod/admin.php:1047
+msgid "Days between requery"
 msgstr ""
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
+#: mod/admin.php:1047
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
+#: mod/admin.php:1048
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/contacts.php:590
-msgid "View conversations"
+#: mod/admin.php:1048
+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 ""
 
-#: mod/contacts.php:596
-msgid "Last update:"
+#: mod/admin.php:1049
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/contacts.php:598
-msgid "Update public posts"
+#: mod/admin.php:1049
+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 ""
 
-#: mod/contacts.php:600 mod/contacts.php:974
-msgid "Update now"
+#: mod/admin.php:1050
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
-msgid "Unignore"
+#: mod/admin.php:1050
+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 ""
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
+#: mod/admin.php:1052
+msgid "Publish server information"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
+#: mod/admin.php:1052
+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 ""
 
-#: mod/contacts.php:612
-msgid "Currently archived"
+#: mod/admin.php:1054
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: mod/contacts.php:613
+#: mod/admin.php:1054
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
+#: mod/admin.php:1055
+msgid "Suppress Language"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
+#: mod/admin.php:1055
+msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
+#: mod/admin.php:1056
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/contacts.php:617
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+#: mod/admin.php:1056
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/contacts.php:635
-msgid "Actions"
+#: mod/admin.php:1057
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
+#: mod/admin.php:1057
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/contacts.php:684
-msgid "Suggestions"
+#: mod/admin.php:1058
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
+#: mod/admin.php:1058
+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 ""
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
+#: mod/admin.php:1059
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/contacts.php:700
-msgid "Unblocked"
+#: mod/admin.php:1059
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
+#: mod/admin.php:1060
+msgid "Path for lock file"
 msgstr ""
 
-#: mod/contacts.php:709
-msgid "Blocked"
+#: mod/admin.php:1060
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
 msgstr ""
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
+#: mod/admin.php:1061
+msgid "Temp path"
 msgstr ""
 
-#: mod/contacts.php:718
-msgid "Ignored"
+#: mod/admin.php:1061
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
+#: mod/admin.php:1062
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Archived"
+#: mod/admin.php:1062
+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 ""
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
+#: mod/admin.php:1063
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/contacts.php:736
-msgid "Hidden"
+#: mod/admin.php:1063
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
+#: mod/admin.php:1064
+msgid "Enable old style pager"
 msgstr ""
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
+#: mod/admin.php:1064
+msgid ""
+"The old style pager has page numbers but slows down massively the page speed."
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Archive"
+#: mod/admin.php:1065
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Unarchive"
+#: mod/admin.php:1065
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
+#: mod/admin.php:1067
+msgid "New base url"
 msgstr ""
 
-#: mod/contacts.php:856
-msgid "View all contacts"
+#: mod/admin.php:1067
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
 msgstr ""
 
-#: mod/contacts.php:866
-msgid "View all common friends"
+#: mod/admin.php:1069
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
+#: mod/admin.php:1069
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/contacts.php:907
-msgid "Mutual Friendship"
+#: mod/admin.php:1070
+msgid "Embedly API key"
 msgstr ""
 
-#: mod/contacts.php:911
-msgid "is a fan of yours"
+#: mod/admin.php:1070
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
 msgstr ""
 
-#: mod/contacts.php:915
-msgid "you are a fan of"
+#: mod/admin.php:1072
+msgid "Enable 'worker' background processing"
 msgstr ""
 
-#: mod/contacts.php:985
-msgid "Toggle Blocked status"
+#: mod/admin.php:1072
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
 msgstr ""
 
-#: mod/contacts.php:993
-msgid "Toggle Ignored status"
+#: mod/admin.php:1073
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/contacts.php:1001
-msgid "Toggle Archive status"
+#: mod/admin.php:1073
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/contacts.php:1009
-msgid "Delete contact"
+#: mod/admin.php:1074
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/dfrn_confirm.php:127
+#: mod/admin.php:1074
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
-msgstr ""
-
-#: mod/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
+"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 ""
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
+#: mod/admin.php:1075
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
+#: mod/admin.php:1075
+msgid ""
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
+#: mod/admin.php:1076
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
+#: mod/admin.php:1076
+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 yourdomain.tld/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. The worker background process needs to be activated for this."
 msgstr ""
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
+#: mod/admin.php:1105
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
+#: mod/admin.php:1113
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/dfrn_confirm.php:557
+#: mod/admin.php:1116
 #, php-format
-msgid "No user record found for '%s' "
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
+#: mod/admin.php:1128
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/dfrn_confirm.php:578
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: mod/admin.php:1131
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
+#: mod/admin.php:1135
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/dfrn_confirm.php:613
+#: mod/admin.php:1137
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/dfrn_confirm.php:633
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+#: mod/admin.php:1156
+msgid "No failed updates."
 msgstr ""
 
-#: mod/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
+#: mod/admin.php:1157
+msgid "Check database structure"
 msgstr ""
 
-#: mod/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
+#: mod/admin.php:1162
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/dfrn_confirm.php:775
-#, php-format
-msgid "%1$s has joined %2$s"
+#: mod/admin.php:1163
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
+#: mod/admin.php:1164
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/admin.php:1165
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/admin.php:1199
+#, 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 ""
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
+#: mod/admin.php:1202
+#, 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 ""
 
-#: mod/dfrn_request.php:134 mod/dfrn_request.php:530
+#: mod/admin.php:1246
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr ""
+#: mod/admin.php:1253
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
+#: mod/admin.php:1300
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
+#: mod/admin.php:1308
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/dfrn_request.php:277
+#: mod/admin.php:1308
 #, php-format
-msgid "%s has received too many connection requests today."
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Register date"
 msgstr ""
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Last login"
 msgstr ""
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Last item"
 msgstr ""
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
+#: mod/admin.php:1426
+msgid "Add User"
 msgstr ""
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
+#: mod/admin.php:1427
+msgid "select all"
 msgstr ""
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
+#: mod/admin.php:1428
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/admin.php:1429
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
+#: mod/admin.php:1430
+msgid "Request date"
 msgstr ""
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
+#: mod/admin.php:1431
+msgid "No registrations."
 msgstr ""
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/admin.php:1432
+msgid "Note from the user"
 msgstr ""
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
+#: mod/admin.php:1433 mod/notifications.php:176 mod/notifications.php:255
+msgid "Approve"
 msgstr ""
 
-#: mod/dfrn_request.php:674
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: mod/admin.php:1434
+msgid "Deny"
 msgstr ""
 
-#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
+#: mod/admin.php:1438
+msgid "Site admin"
 msgstr ""
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
+#: mod/admin.php:1439
+msgid "Account expired"
 msgstr ""
 
-#: mod/dfrn_request.php:703
-#, php-format
-msgid "Welcome home %s."
+#: mod/admin.php:1442
+msgid "New User"
 msgstr ""
 
-#: mod/dfrn_request.php:704
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/admin.php:1443
+msgid "Deleted since"
 msgstr ""
 
-#: mod/dfrn_request.php:833
+#: mod/admin.php:1448
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/dfrn_request.php:854
-#, php-format
+#: mod/admin.php:1449
 msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s/siteinfo"
-"\">follow this link to find a public Friendica site and join us today</a>."
-msgstr ""
-
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/dfrn_request.php:860
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: mod/admin.php:1459
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:861 mod/follow.php:109
-msgid "Please answer the following:"
+#: mod/admin.php:1460
+msgid "Nickname"
 msgstr ""
 
-#: mod/dfrn_request.php:862 mod/follow.php:110
-#, php-format
-msgid "Does %s know you?"
+#: mod/admin.php:1460
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:866 mod/follow.php:111
-msgid "Add a personal note:"
+#: mod/admin.php:1461
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
+#: mod/admin.php:1504
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/dfrn_request.php:871
+#: mod/admin.php:1508
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/dfrn_request.php:872 mod/follow.php:117
-msgid "Your Identity Address:"
+#: mod/admin.php:1519 mod/admin.php:1767
+msgid "Disable"
 msgstr ""
 
-#: mod/dfrn_request.php:875 mod/follow.php:19
-msgid "Submit Request"
+#: mod/admin.php:1521 mod/admin.php:1769
+msgid "Enable"
 msgstr ""
 
-#: mod/follow.php:30
-msgid "You already added this contact."
+#: mod/admin.php:1544 mod/admin.php:1814
+msgid "Toggle"
 msgstr ""
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/admin.php:1552 mod/admin.php:1823
+msgid "Author: "
 msgstr ""
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/admin.php:1553 mod/admin.php:1824
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/admin.php:1608
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/follow.php:180
-msgid "Contact added"
+#: mod/admin.php:1613
+#, php-format
+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 ""
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
+#: mod/admin.php:1727
+msgid "No themes found."
 msgstr ""
 
-#: mod/install.php:145
-msgid "Could not connect to database."
+#: mod/admin.php:1805
+msgid "Screenshot"
 msgstr ""
 
-#: mod/install.php:149
-msgid "Could not create table."
+#: mod/admin.php:1865
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
+#: mod/admin.php:1870
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/install.php:160
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: mod/admin.php:1871
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:607
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/admin.php:1872
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/install.php:173
-msgid "Database already in use."
+#: mod/admin.php:1896
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/install.php:227
-msgid "System check"
+#: mod/admin.php:1928
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/install.php:232
-msgid "Check again"
+#: mod/admin.php:1930
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/install.php:251
-msgid "Database connection"
+#: mod/admin.php:1939
+msgid "Clear"
 msgstr ""
 
-#: mod/install.php:252
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/admin.php:1944
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/install.php:253
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/admin.php:1945
+msgid "Log file"
 msgstr ""
 
-#: mod/install.php:254
+#: mod/admin.php:1945
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/install.php:258
-msgid "Database Server Name"
+#: mod/admin.php:1946
+msgid "Log level"
 msgstr ""
 
-#: mod/install.php:259
-msgid "Database Login Name"
+#: mod/admin.php:1949
+msgid "PHP logging"
 msgstr ""
 
-#: mod/install.php:260
-msgid "Database Login Password"
+#: mod/admin.php:1950
+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 ""
 
-#: mod/install.php:261
-msgid "Database Name"
+#: mod/admin.php:2078
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
+#: mod/admin.php:2086
+msgid "Manage Additional Features"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+#: mod/viewcontacts.php:75
+msgid "No contacts."
 msgstr ""
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
+#: mod/network.php:190 mod/search.php:25
+msgid "Remove term"
 msgstr ""
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr ""
+#: mod/network.php:397
+#, 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] ""
+msgstr[1] ""
 
-#: mod/install.php:307
-msgid "System Language:"
+#: mod/network.php:400
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/install.php:307
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/network.php:528
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/network.php:533
+msgid "Invalid contact."
 msgstr ""
 
-#: mod/install.php:348
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a href='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"poller'>'Setup the poller'</a>"
+#: mod/network.php:827
+msgid "Commented Order"
 msgstr ""
 
-#: mod/install.php:352
-msgid "PHP executable path"
+#: mod/network.php:830
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/network.php:835
+msgid "Posted Order"
 msgstr ""
 
-#: mod/install.php:357
-msgid "Command line PHP"
+#: mod/network.php:838
+msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/network.php:849
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/install.php:367
-msgid "Found PHP version: "
+#: mod/network.php:857
+msgid "New"
 msgstr ""
 
-#: mod/install.php:369
-msgid "PHP cli binary"
+#: mod/network.php:860
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/network.php:868
+msgid "Shared Links"
 msgstr ""
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
+#: mod/network.php:871
+msgid "Interesting Links"
 msgstr ""
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
+#: mod/network.php:879
+msgid "Starred"
 msgstr ""
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/network.php:882
+msgid "Favourite Posts"
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
+#: mod/search.php:124
+msgid "Too Many Requests"
 msgstr ""
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
+#: mod/search.php:230
+#, php-format
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
 msgstr ""
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:258
+msgid "Discard"
 msgstr ""
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
+#: mod/notifications.php:105
+msgid "Network Notifications"
 msgstr ""
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
+#: mod/notifications.php:117
+msgid "Personal Notifications"
 msgstr ""
 
-#: mod/install.php:420
-msgid "XML PHP module"
+#: mod/notifications.php:123
+msgid "Home Notifications"
 msgstr ""
 
-#: mod/install.php:421
-msgid "iconv module"
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/install.php:425
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/notifications.php:164 mod/notifications.php:228
+msgid "Notification type: "
 msgstr ""
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/notifications.php:167
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: mod/install.php:437
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/notifications.php:173 mod/notifications.php:246
+msgid "Post a new friend activity"
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
+#: mod/notifications.php:173 mod/notifications.php:246
+msgid "if applicable"
 msgstr ""
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/notifications.php:196
+msgid "yes"
 msgstr ""
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
+#: mod/notifications.php:196
+msgid "no"
 msgstr ""
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
+#: mod/notifications.php:197 mod/notifications.php:202
+msgid "Shall your connection be bidirectional or not?"
 msgstr ""
 
-#: mod/install.php:466
+#: mod/notifications.php:198 mod/notifications.php:203
+#, php-format
 msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
+"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 ""
 
-#: mod/install.php:469
+#: mod/notifications.php:199
+#, php-format
 msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
+"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 ""
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
+#: mod/notifications.php:204
+#, 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 ""
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
+#: mod/notifications.php:215
+msgid "Friend"
 msgstr ""
 
-#: mod/install.php:494
-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."
+#: mod/notifications.php:216
+msgid "Sharer"
 msgstr ""
 
-#: mod/install.php:495
-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."
+#: mod/notifications.php:216
+msgid "Subscriber"
 msgstr ""
 
-#: mod/install.php:496
-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."
+#: mod/notifications.php:266
+msgid "No introductions."
 msgstr ""
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/notifications.php:307
+msgid "Show unread"
 msgstr ""
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
+#: mod/notifications.php:307
+msgid "Show all"
 msgstr ""
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/notifications.php:313
+#, php-format
+msgid "No more %s notifications."
 msgstr ""
 
-#: mod/install.php:511
-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."
+#: object/Item.php:385
+msgid "via"
 msgstr ""
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: view/theme/quattro/config.php:70
+msgid "Alignment"
 msgstr ""
 
-#: mod/install.php:513
-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."
+#: view/theme/quattro/config.php:70
+msgid "Left"
 msgstr ""
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
+#: view/theme/quattro/config.php:70
+msgid "Center"
 msgstr ""
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: view/theme/quattro/config.php:71 view/theme/clean/config.php:108
+msgid "Color scheme"
 msgstr ""
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
+#: view/theme/quattro/config.php:72
+msgid "Posts font size"
 msgstr ""
 
-#: mod/install.php:552
-msgid "ImageMagick PHP extension is not installed"
+#: view/theme/quattro/config.php:73
+msgid "Textareas font size"
 msgstr ""
 
-#: mod/install.php:555
-msgid "ImageMagick PHP extension is installed"
+#: view/theme/vier/config.php:69
+msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: mod/install.php:557
-msgid "ImageMagick supports GIF"
+#: view/theme/vier/config.php:115
+msgid "Set style"
 msgstr ""
 
-#: mod/install.php:566
-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."
+#: view/theme/vier/config.php:116
+msgid "Community Pages"
 msgstr ""
 
-#: mod/install.php:605
-msgid "<h1>What next</h1>"
+#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
+msgid "Community Profiles"
 msgstr ""
 
-#: mod/install.php:606
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: view/theme/vier/config.php:118
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
+msgid "Connect Services"
 msgstr ""
 
-#: mod/item.php:341
-msgid "Empty post discarded."
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
+msgid "Find Friends"
 msgstr ""
 
-#: mod/item.php:902
-msgid "System error. Post not saved."
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
+msgid "Last users"
 msgstr ""
 
-#: mod/item.php:992
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: view/theme/vier/theme.php:195
+msgid "Local Directory"
 msgstr ""
 
-#: mod/item.php:994
-#, php-format
-msgid "You may visit them online at %s"
+#: view/theme/vier/theme.php:286
+msgid "Quick Start"
 msgstr ""
 
-#: mod/item.php:995
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: view/theme/duepuntozero/config.php:44
+msgid "greenzero"
 msgstr ""
 
-#: mod/item.php:999
-#, php-format
-msgid "%s posted an update."
+#: view/theme/duepuntozero/config.php:45
+msgid "purplezero"
 msgstr ""
 
-#: mod/network.php:398
-#, 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] ""
-msgstr[1] ""
-
-#: mod/network.php:401
-msgid "Messages in this group won't be send to these receivers."
+#: view/theme/duepuntozero/config.php:46
+msgid "easterbunny"
 msgstr ""
 
-#: mod/network.php:529
-msgid "Private messages to this person are at risk of public disclosure."
+#: view/theme/duepuntozero/config.php:47
+msgid "darkzero"
 msgstr ""
 
-#: mod/network.php:534
-msgid "Invalid contact."
+#: view/theme/duepuntozero/config.php:48
+msgid "comix"
 msgstr ""
 
-#: mod/network.php:826
-msgid "Commented Order"
+#: view/theme/duepuntozero/config.php:49
+msgid "slackr"
 msgstr ""
 
-#: mod/network.php:829
-msgid "Sort by Comment Date"
+#: view/theme/duepuntozero/config.php:64
+msgid "Variations"
 msgstr ""
 
-#: mod/network.php:834
-msgid "Posted Order"
+#: view/theme/clean/config.php:61
+msgid "Midnight"
 msgstr ""
 
-#: mod/network.php:837
-msgid "Sort by Post Date"
+#: view/theme/clean/config.php:62
+msgid "Zenburn"
 msgstr ""
 
-#: mod/network.php:848
-msgid "Posts that mention or involve you"
+#: view/theme/clean/config.php:63
+msgid "Bootstrap"
 msgstr ""
 
-#: mod/network.php:856
-msgid "New"
+#: view/theme/clean/config.php:64
+msgid "Shades of Pink"
 msgstr ""
 
-#: mod/network.php:859
-msgid "Activity Stream - by date"
+#: view/theme/clean/config.php:65
+msgid "Lime and Orange"
 msgstr ""
 
-#: mod/network.php:867
-msgid "Shared Links"
+#: view/theme/clean/config.php:66
+msgid "GeoCities Retro"
 msgstr ""
 
-#: mod/network.php:870
-msgid "Interesting Links"
+#: view/theme/clean/config.php:92
+msgid "Background Image"
 msgstr ""
 
-#: mod/network.php:878
-msgid "Starred"
+#: view/theme/clean/config.php:94
+msgid ""
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
 msgstr ""
 
-#: mod/network.php:881
-msgid "Favourite Posts"
+#: view/theme/clean/config.php:99
+msgid "Background Color"
 msgstr ""
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
+#: view/theme/clean/config.php:101
+msgid "HEX value for the background color. Don't include the #"
 msgstr ""
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
+#: view/theme/clean/config.php:115
+msgid "font size"
 msgstr ""
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
+#: view/theme/clean/config.php:117
+msgid "base font size for your interface"
 msgstr ""
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
+#: view/theme/clean/config.php:122
+msgid "Display Accesskeys"
 msgstr ""
 
-#: object/Item.php:370
-msgid "via"
+#: view/theme/clean/config.php:124
+msgid ""
+"Diaplay the access keys assigned to some menu element in the web interface."
 msgstr ""
 
 #: view/theme/frio/php/Image.php:23
@@ -8714,195 +8880,103 @@ msgstr ""
 msgid "Resize to best fit and retain aspect ratio."
 msgstr ""
 
-#: view/theme/frio/config.php:42
+#: view/theme/frio/config.php:47
 msgid "Default"
 msgstr ""
 
-#: view/theme/frio/config.php:54
+#: view/theme/frio/config.php:59
 msgid "Note: "
 msgstr ""
 
-#: view/theme/frio/config.php:54
+#: view/theme/frio/config.php:59
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr ""
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:67
 msgid "Select scheme"
 msgstr ""
 
-#: view/theme/frio/config.php:63
+#: view/theme/frio/config.php:68
 msgid "Navigation bar background color"
 msgstr ""
 
-#: view/theme/frio/config.php:64
+#: view/theme/frio/config.php:69
 msgid "Navigation bar icon color "
 msgstr ""
 
-#: view/theme/frio/config.php:65
+#: view/theme/frio/config.php:70
 msgid "Link color"
 msgstr ""
 
-#: view/theme/frio/config.php:66
+#: view/theme/frio/config.php:71
 msgid "Set the background color"
 msgstr ""
 
-#: view/theme/frio/config.php:67
+#: view/theme/frio/config.php:72
 msgid "Content background transparency"
 msgstr ""
 
-#: view/theme/frio/config.php:68
+#: view/theme/frio/config.php:73
 msgid "Set the background image"
 msgstr ""
 
-#: view/theme/frio/theme.php:229
+#: view/theme/frio/theme.php:226
 msgid "Guest"
 msgstr ""
 
-#: view/theme/frio/theme.php:235
+#: view/theme/frio/theme.php:232
 msgid "Visitor"
 msgstr ""
 
-#: view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr ""
-
-#: view/theme/quattro/config.php:67
-msgid "Left"
-msgstr ""
-
-#: view/theme/quattro/config.php:67
-msgid "Center"
-msgstr ""
-
-#: view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr ""
-
-#: view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr ""
-
-#: view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr ""
-
-#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-msgid "Community Profiles"
-msgstr ""
-
-#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-msgid "Last users"
-msgstr ""
-
-#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-msgid "Find Friends"
-msgstr ""
-
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr ""
-
-#: view/theme/vier/theme.php:291
-msgid "Quick Start"
-msgstr ""
-
-#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-msgid "Connect Services"
-msgstr ""
-
-#: view/theme/vier/config.php:64
-msgid "Comma separated list of helper forums"
-msgstr ""
-
-#: view/theme/vier/config.php:110
-msgid "Set style"
-msgstr ""
-
-#: view/theme/vier/config.php:111
-msgid "Community Pages"
-msgstr ""
-
-#: view/theme/vier/config.php:113
-msgid "Help or @NewHere ?"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
-
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
+#: index.php:457
+msgid "toggle mobile"
 msgstr ""
 
 #: boot.php:970
 msgid "Delete this item?"
 msgstr ""
 
-#: boot.php:973
+#: boot.php:972
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:1655
+#: boot.php:1696
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: boot.php:1767
+#: boot.php:1808
 msgid "Create a New Account"
 msgstr ""
 
-#: boot.php:1796
+#: boot.php:1837
 msgid "Password: "
 msgstr ""
 
-#: boot.php:1797
+#: boot.php:1838
 msgid "Remember me"
 msgstr ""
 
-#: boot.php:1800
+#: boot.php:1841
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: boot.php:1806
+#: boot.php:1847
 msgid "Forgot your password?"
 msgstr ""
 
-#: boot.php:1809
+#: boot.php:1850
 msgid "Website Terms of Service"
 msgstr ""
 
-#: boot.php:1810
+#: boot.php:1851
 msgid "terms of service"
 msgstr ""
 
-#: boot.php:1812
+#: boot.php:1853
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:1813
+#: boot.php:1854
 msgid "privacy policy"
 msgstr ""
-
-#: index.php:451
-msgid "toggle mobile"
-msgstr ""
index a2d3c7ca67309c84f9e18ac30352df81c5b9bf9c..7d89df233b3197afb1af19c0523a55a425c93176 100644 (file)
@@ -9,7 +9,7 @@
 # David Rabel <david.rabel@noresoft.com>, 2016
 # Erkan Yilmaz <erkan77@gmail.com>, 2011
 # Fabian Dost <friends@dostmusik.de>, 2012
-# foss <foss@openmailbox.org>, 2014,2016
+# foss <foss@openmailbox.org>, 2014,2016-2017
 # Frank Dieckmann <frank@lumina-verte.org>, 2015
 # Fabian Dost <friends@dostmusik.de>, 2012
 # greeneyedred <greeneyedred@googlemail.com>, 2012
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-12-19 07:46+0100\n"
-"PO-Revision-Date: 2017-02-17 07:07+0000\n"
+"POT-Creation-Date: 2017-03-03 10:29+0100\n"
+"PO-Revision-Date: 2017-03-05 11:30+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"
@@ -45,112 +45,6 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
-
-#: include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
-
-#: include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
-
-#: include/contact_widgets.php:10 include/identity.php:218
-#: mod/allfriends.php:82 mod/dirfind.php:201 mod/match.php:87
-#: mod/suggest.php:101
-msgid "Connect"
-msgstr "Verbinden"
-
-#: include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
-
-#: include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Leute finden"
-
-#: include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
-
-#: include/contact_widgets.php:32 include/Contact.php:354
-#: include/conversation.php:981 mod/allfriends.php:66 mod/dirfind.php:204
-#: mod/match.php:72 mod/suggest.php:83 mod/contacts.php:602 mod/follow.php:103
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
-
-#: include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
-
-#: include/contact_widgets.php:34 mod/directory.php:204 mod/contacts.php:798
-msgid "Find"
-msgstr "Finde"
-
-#: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
-
-#: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
-
-#: include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
-
-#: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-msgid "Invite Friends"
-msgstr "Freunde einladen"
-
-#: include/contact_widgets.php:108
-msgid "Networks"
-msgstr "Netzwerke"
-
-#: include/contact_widgets.php:111
-msgid "All Networks"
-msgstr "Alle Netzwerke"
-
-#: include/contact_widgets.php:141 include/features.php:110
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
-
-#: include/contact_widgets.php:144 include/contact_widgets.php:176
-msgid "Everything"
-msgstr "Alles"
-
-#: include/contact_widgets.php:173
-msgid "Categories"
-msgstr "Kategorien"
-
-#: include/contact_widgets.php:237
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
-
-#: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2245 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:972
-msgid "show more"
-msgstr "mehr anzeigen"
-
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1025
-#: view/theme/vier/theme.php:255
-msgid "Forums"
-msgstr "Foren"
-
-#: include/ForumManager.php:116 view/theme/vier/theme.php:257
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
-
 #: include/profile_selectors.php:6
 msgid "Male"
 msgstr "Männlich"
@@ -203,7 +97,7 @@ msgstr "Nicht spezifiziert"
 msgid "Other"
 msgstr "Andere"
 
-#: include/profile_selectors.php:6 include/conversation.php:1487
+#: include/profile_selectors.php:6 include/conversation.php:1478
 msgid "Undecided"
 msgid_plural "Undecided"
 msgstr[0] "Unentschieden"
@@ -385,2373 +279,2522 @@ msgstr "Ist mir nicht wichtig"
 msgid "Ask me"
 msgstr "Frag mich"
 
-#: include/dba_pdo.php:72 include/dba.php:56
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
+#: view/theme/vier/theme.php:250
+msgid "Forums"
+msgstr "Foren"
+
+#: include/ForumManager.php:116 view/theme/vier/theme.php:252
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
+
+#: include/ForumManager.php:119 include/contact_widgets.php:253
+#: include/items.php:2254 mod/content.php:624 object/Item.php:447
+#: view/theme/vier/theme.php:255 boot.php:971
+msgid "show more"
+msgstr "mehr anzeigen"
+
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "System"
+
+#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:412
+#: view/theme/frio/theme.php:253
+msgid "Network"
+msgstr "Netzwerk"
+
+#: include/NotificationsManager.php:167 mod/profiles.php:695
+#: mod/network.php:846
+msgid "Personal"
+msgstr "Persönlich"
+
+#: include/NotificationsManager.php:174 include/nav.php:105
+#: include/nav.php:161
+msgid "Home"
+msgstr "Pinnwand"
+
+#: include/NotificationsManager.php:181 include/nav.php:166
+msgid "Introductions"
+msgstr "Kontaktanfragen"
+
+#: include/NotificationsManager.php:239 include/NotificationsManager.php:251
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
+
+#: include/NotificationsManager.php:250
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
+
+#: include/NotificationsManager.php:265
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
+
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
+
+#: include/NotificationsManager.php:291
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
+
+#: include/NotificationsManager.php:304
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
+
+#: include/NotificationsManager.php:317
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
+
+#: include/NotificationsManager.php:334
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
+
+#: include/NotificationsManager.php:770
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
+
+#: include/NotificationsManager.php:803
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
+
+#: include/NotificationsManager.php:803
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
+
+#: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
+#: include/Photo.php:1087 include/message.php:146 mod/item.php:462
+#: mod/wall_upload.php:216 mod/wall_upload.php:230 mod/wall_upload.php:237
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
 #: include/auth.php:45
 msgid "Logged out."
 msgstr "Abgemeldet."
 
-#: include/auth.php:116 include/auth.php:178 mod/openid.php:100
+#: include/auth.php:116 include/auth.php:177 mod/openid.php:110
 msgid "Login failed."
 msgstr "Anmeldung fehlgeschlagen."
 
-#: include/auth.php:132 include/user.php:75
+#: include/auth.php:131 include/user.php:75
 msgid ""
 "We encountered a problem while logging in with the OpenID you provided. "
 "Please check the correct spelling of the ID."
 msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: include/auth.php:132 include/user.php:75
+#: include/auth.php:131 include/user.php:75
 msgid "The error message was:"
 msgstr "Die Fehlermeldung lautete:"
 
-#: include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: include/bbcode.php:350 include/bbcode.php:1055 include/bbcode.php:1056
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: include/group.php:209
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: include/bbcode.php:467
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: include/group.php:242
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: include/bbcode.php:1015 include/bbcode.php:1035
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: include/group.php:265
-msgid "edit"
-msgstr "bearbeiten"
+#: include/bbcode.php:1064 include/bbcode.php:1065
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: include/group.php:286 mod/newmember.php:61
-msgid "Groups"
-msgstr "Gruppen"
+#: include/bbcode.php:1167
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
 
-#: include/group.php:288
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
+#: include/bbcode.php:1177
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
 
-#: include/group.php:290
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: include/dba_pdo.php:72 include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/group.php:291
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: include/group.php:292 mod/group.php:94 mod/group.php:178
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: include/group.php:294
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: include/group.php:296 mod/network.php:201
-msgid "add"
-msgstr "hinzufügen"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: include/enotify.php:43 include/delivery.php:482
+msgid "noreply"
+msgstr "noreply"
 
-#: include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: include/contact_selectors.php:56 mod/admin.php:890
-msgid "Frequently"
-msgstr "immer wieder"
+#: include/enotify.php:88
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: include/contact_selectors.php:57 mod/admin.php:891
-msgid "Hourly"
-msgstr "Stündlich"
+#: include/enotify.php:134
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: include/contact_selectors.php:58 mod/admin.php:892
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: include/enotify.php:141
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: include/contact_selectors.php:59 mod/admin.php:893
-msgid "Daily"
-msgstr "Täglich"
+#: include/enotify.php:149
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: include/enotify.php:159
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: include/enotify.php:161
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/contact_selectors.php:76 mod/dfrn_request.php:868
-msgid "Friendica"
-msgstr "Friendica"
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: include/enotify.php:171
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: include/enotify.php:173
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1440
-msgid "Email"
-msgstr "E-Mail"
+#: include/enotify.php:174
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: include/contact_selectors.php:80 mod/settings.php:842
-#: mod/dfrn_request.php:870
-msgid "Diaspora"
-msgstr "Diaspora"
+#: include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/contact_selectors.php:91
-msgid "GNU Social"
-msgstr "GNU Social"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/contact_selectors.php:103
-msgid "Hubzilla/Redmatrix"
-msgstr "Hubzilla/Redmatrix"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/acl_selectors.php:327
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: include/acl_selectors.php:332
+#: include/enotify.php:248
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: include/acl_selectors.php:333 mod/settings.php:1181
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/acl_selectors.php:338
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/acl_selectors.php:339 view/theme/vier/config.php:103
-msgid "show"
-msgstr "zeigen"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/acl_selectors.php:340 view/theme/vier/config.php:103
-msgid "don't show"
-msgstr "nicht zeigen"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/acl_selectors.php:346 mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/acl_selectors.php:347 mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: include/enotify.php:273 include/enotify.php:274
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: include/acl_selectors.php:349 mod/events.php:509 mod/photos.php:1156
-#: mod/photos.php:1535
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/acl_selectors.php:350
-msgid "Close"
-msgstr "Schließen"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/like.php:163 include/conversation.php:130
-#: include/conversation.php:266 include/text.php:1804 mod/subthread.php:87
-#: mod/tagger.php:62
-msgid "photo"
-msgstr "Foto"
+#: include/enotify.php:288
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/like.php:163 include/diaspora.php:1406 include/conversation.php:125
-#: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-msgid "status"
-msgstr "Status"
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Name:"
 
-#: include/like.php:165 include/conversation.php:122
-#: include/conversation.php:258 include/text.php:1802
-msgid "event"
-msgstr "Event"
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/like.php:182 include/diaspora.php:1402 include/conversation.php:141
+#: include/enotify.php:297
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/like.php:184 include/conversation.php:144
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/like.php:186
+#: include/enotify.php:307 include/enotify.php:321
 #, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/like.php:188
+#: include/enotify.php:308 include/enotify.php:322
 #, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: include/like.php:190
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+
+#: include/enotify.php:314
 #, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
-
-#: include/message.php:15 include/message.php:173
-msgid "[no subject]"
-msgstr "[kein Betreff]"
-
-#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
-#: include/Photo.php:1064 include/Photo.php:1089 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:478
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
-
-#: include/plugin.php:526 include/plugin.php:528
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
-
-#: include/plugin.php:534
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: include/plugin.php:539
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
+#: include/enotify.php:326
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: include/uimport.php:100
-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/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: include/uimport.php:116 include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/uimport.php:120 include/uimport.php:131
+#: include/enotify.php:342
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: include/uimport.php:173
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/uimport.php:222
+#: include/enotify.php:350
 #, 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 "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/uimport.php:292
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: include/follow.php:81 mod/dfrn_request.php:512
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: include/follow.php:86
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: include/follow.php:114
+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/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Alter: "
+#: include/follow.php:115 include/follow.php:129
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
+#: include/follow.php:127
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nie"
+#: include/follow.php:132
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: include/follow.php:135
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/datetime.php:350
-msgid "year"
-msgstr "Jahr"
+#: include/follow.php:138
+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/datetime.php:350
-msgid "years"
-msgstr "Jahre"
+#: include/follow.php:139
+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/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
-msgstr "Monat"
+#: include/follow.php:145
+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/datetime.php:351
-msgid "months"
-msgstr "Monate"
+#: include/follow.php:150
+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/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
-msgstr "Woche"
+#: include/follow.php:251
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "Wochen"
+#: include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
-msgstr "Tag"
+#: include/group.php:210
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: include/datetime.php:353
-msgid "days"
-msgstr "Tage"
+#: include/group.php:243
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: include/datetime.php:354
-msgid "hour"
-msgstr "Stunde"
+#: include/group.php:266
+msgid "edit"
+msgstr "bearbeiten"
 
-#: include/datetime.php:354
-msgid "hours"
-msgstr "Stunden"
+#: include/group.php:287 mod/newmember.php:61
+msgid "Groups"
+msgstr "Gruppen"
 
-#: include/datetime.php:355
-msgid "minute"
-msgstr "Minute"
+#: include/group.php:289
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
 
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "Minuten"
+#: include/group.php:291
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: include/datetime.php:356
-msgid "second"
-msgstr "Sekunde"
+#: include/group.php:292
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "Sekunden"
+#: include/group.php:293 mod/group.php:98 mod/group.php:188
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: include/group.php:295
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: include/group.php:297 mod/network.php:200
+msgid "add"
+msgstr "hinzufügen"
 
-#: include/datetime.php:573 include/dfrn.php:1109
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: include/like.php:164 include/conversation.php:130
+#: include/conversation.php:266 include/text.php:1806 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "photo"
+msgstr "Foto"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: include/like.php:164 include/conversation.php:125
+#: include/conversation.php:134 include/conversation.php:261
+#: include/conversation.php:270 include/diaspora.php:1530 mod/subthread.php:88
+#: mod/tagger.php:62
+msgid "status"
+msgstr "Status"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Danke,"
+#: include/like.php:166 include/conversation.php:122
+#: include/conversation.php:258 include/text.php:1804
+msgid "event"
+msgstr "Event"
 
-#: include/enotify.php:30
+#: include/like.php:184 include/conversation.php:141 include/diaspora.php:1526
 #, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: include/enotify.php:32
+#: include/like.php:187 include/conversation.php:144
 #, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
-
-#: include/enotify.php:43 include/delivery.php:457
-msgid "noreply"
-msgstr "noreply"
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: include/enotify.php:70
+#: include/like.php:190
 #, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/enotify.php:83
+#: include/like.php:193
 #, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/enotify.php:85
+#: include/like.php:196
 #, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: include/message.php:15 include/message.php:169
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: include/nav.php:40 include/text.php:1017
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1833
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: include/nav.php:81 include/identity.php:766 mod/contacts.php:645
+#: mod/contacts.php:841 view/theme/frio/theme.php:246
+msgid "Status"
+msgstr "Status"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: include/nav.php:82 include/identity.php:617 include/identity.php:741
+#: include/identity.php:774 mod/newmember.php:32 mod/profperm.php:105
+#: mod/contacts.php:647 mod/contacts.php:849 view/theme/frio/theme.php:247
+msgid "Profile"
+msgstr "Profil"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
+#: include/nav.php:83 include/identity.php:782 mod/fbrowser.php:31
+#: view/theme/frio/theme.php:248
+msgid "Photos"
+msgstr "Bilder"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: include/nav.php:84 include/identity.php:790 include/identity.php:793
+#: view/theme/frio/theme.php:249
+msgid "Videos"
+msgstr "Videos"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: include/nav.php:85 include/nav.php:149 include/identity.php:802
+#: include/identity.php:813 mod/cal.php:270 mod/events.php:386
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1834
+msgid "Login"
+msgstr "Anmeldung"
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: include/nav.php:109 mod/register.php:289 boot.php:1809
+msgid "Register"
+msgstr "Registrieren"
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:293
+msgid "Help"
+msgstr "Hilfe"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Apps"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: include/nav.php:123 include/text.php:1014 mod/search.php:149
+msgid "Search"
+msgstr "Suche"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: include/nav.php:123
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: include/nav.php:126 include/text.php:1022
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: include/nav.php:127 include/text.php:1023
+msgid "Tags"
+msgstr "Tags"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: include/nav.php:128 include/nav.php:192 include/identity.php:835
+#: include/identity.php:838 include/text.php:1024 mod/contacts.php:800
+#: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
+msgid "Contacts"
+msgstr "Kontakte"
+
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
+msgstr "Gemeinschaft"
+
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
+
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
+
+#: include/nav.php:149 include/identity.php:805 include/identity.php:816
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
+
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
+
+#: include/nav.php:154
+msgid "Information"
+msgstr "Information"
+
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
+
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
+
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
+
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
+
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
+
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Benachrichtigungen"
+
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
+
+#: include/nav.php:171 mod/settings.php:906
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
+
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+
+#: include/nav.php:175 mod/message.php:179 view/theme/frio/theme.php:255
+msgid "Messages"
+msgstr "Nachrichten"
+
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
+msgstr "Private E-Mail"
+
+#: include/nav.php:176
+msgid "Inbox"
+msgstr "Eingang"
+
+#: include/nav.php:177
+msgid "Outbox"
+msgstr "Ausgang"
+
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Neue Nachricht"
+
+#: include/nav.php:181
+msgid "Manage"
+msgstr "Verwalten"
+
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
+
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Delegationen"
+
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1545 mod/admin.php:1815 view/theme/frio/theme.php:256
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
+#: include/nav.php:189 include/identity.php:285
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/enotify.php:288
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Name:"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto:"
+#: include/nav.php:197 mod/admin.php:187
+msgid "Admin"
+msgstr "Administration"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
+#: include/oembed.php:266
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+#: include/oembed.php:274
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/enotify.php:314
+#: include/ostatus.php:1832
 #, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: include/enotify.php:326
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
+#: include/ostatus.php:1833
+msgid "following"
+msgstr "folgen"
 
-#: include/enotify.php:328
+#: include/ostatus.php:1836
 #, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
+#: include/ostatus.php:1837
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: include/plugin.php:530 include/plugin.php:532
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
+#: include/plugin.php:538
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+#: include/plugin.php:543
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/event.php:16 include/bb2diaspora.php:152 mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/event.php:33 include/event.php:51 include/event.php:487
-#: include/bb2diaspora.php:158
-msgid "Starts:"
-msgstr "Beginnt:"
+#: include/security.php:375
+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/event.php:36 include/event.php:57 include/event.php:488
-#: include/bb2diaspora.php:166
-msgid "Finishes:"
-msgstr "Endet:"
+#: include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: include/event.php:39 include/event.php:63 include/event.php:489
-#: include/bb2diaspora.php:174 include/identity.php:328
-#: mod/notifications.php:232 mod/directory.php:137 mod/events.php:494
-#: mod/contacts.php:628
-msgid "Location:"
-msgstr "Ort:"
+#: include/uimport.php:100
+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/event.php:441
-msgid "Sun"
-msgstr "So"
+#: include/uimport.php:116 include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: include/event.php:442
-msgid "Mon"
-msgstr "Mo"
+#: include/uimport.php:120 include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr "Di"
+#: include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: include/event.php:444
-msgid "Wed"
-msgstr "Mi"
+#: include/uimport.php:173
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr "Do"
+#: include/uimport.php:222
+#, 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"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr "Fr"
+#: include/uimport.php:292
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr "Sa"
+#: include/user.php:39 mod/settings.php:375
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:972
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:972
-msgid "Monday"
-msgstr "Montag"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Freitag"
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Samstag"
+#: include/user.php:113
+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/event.php:455
-msgid "Jan"
-msgstr "Jan"
+#: include/user.php:118
+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/event.php:456
-msgid "Feb"
-msgstr "Feb"
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: include/event.php:457
-msgid "Mar"
-msgstr "März"
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: include/event.php:458
-msgid "Apr"
-msgstr "Apr"
+#: include/user.php:140
+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/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Mai"
+#: include/user.php:157
+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/event.php:460
-msgid "Jun"
-msgstr "Jun"
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: include/event.php:461
-msgid "Jul"
-msgstr "Juli"
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/event.php:462
-msgid "Aug"
-msgstr "Aug"
+#: include/user.php:256 view/theme/duepuntozero/config.php:43
+#: view/theme/clean/config.php:60
+msgid "default"
+msgstr "Standard"
 
-#: include/event.php:463
-msgid "Sept"
-msgstr "Sep"
+#: include/user.php:266
+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/event.php:464
-msgid "Oct"
-msgstr "Okt"
+#: include/user.php:326 include/user.php:334 include/user.php:342
+#: mod/profile_photo.php:74 mod/profile_photo.php:82 mod/profile_photo.php:90
+#: mod/profile_photo.php:215 mod/profile_photo.php:310
+#: mod/profile_photo.php:320 mod/photos.php:68 mod/photos.php:182
+#: mod/photos.php:768 mod/photos.php:1231 mod/photos.php:1252
+#: mod/photos.php:1839
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: include/event.php:465
-msgid "Nov"
-msgstr "Nov"
+#: include/user.php:417
+#, 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/event.php:466
-msgid "Dec"
-msgstr "Dez"
+#: include/user.php:427
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Januar"
+#: include/user.php:437
+#, 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/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Februar"
+#: include/user.php:441
+#, 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/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "März"
+#: include/user.php:473 mod/admin.php:1234
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "April"
+#: include/acl_selectors.php:341
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Juni"
+#: include/acl_selectors.php:346
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Juli"
+#: include/acl_selectors.php:347 mod/settings.php:1188
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "August"
+#: include/acl_selectors.php:352
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "September"
+#: include/acl_selectors.php:353 view/theme/vier/config.php:108
+msgid "show"
+msgstr "zeigen"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Oktober"
+#: include/acl_selectors.php:354 view/theme/vier/config.php:108
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "November"
+#: include/acl_selectors.php:360 mod/editpost.php:123
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "Dezember"
+#: include/acl_selectors.php:361 mod/editpost.php:130
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
-msgstr "Heute"
+#: include/acl_selectors.php:363 mod/events.php:516 mod/photos.php:1176
+#: mod/photos.php:1558
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: include/event.php:483
-msgid "all-day"
-msgstr "ganztägig"
+#: include/acl_selectors.php:364
+msgid "Close"
+msgstr "Schließen"
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/event.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/event.php:593
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/event.php:615 include/text.php:1532 include/text.php:1539
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: include/conversation.php:185 mod/dfrn_confirm.php:478
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/event.php:850
-msgid "Export"
-msgstr "Exportieren"
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: include/conversation.php:239 mod/mood.php:63
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: include/conversation.php:303
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
+#: mod/profiles.php:346
+msgid "Likes"
+msgstr "Likes"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246 boot.php:1792
-msgid "Logout"
-msgstr "Abmelden"
+#: include/conversation.php:587 mod/content.php:372 mod/photos.php:1629
+#: mod/profiles.php:350
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/nav.php:78 view/theme/frio/theme.php:246
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/conversation.php:588 include/conversation.php:1472
+#: mod/content.php:373 mod/photos.php:1630
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:249
-msgid "Status"
-msgstr "Status"
+#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:249
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/conversation.php:588 mod/content.php:373 mod/photos.php:1630
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
 
-#: include/nav.php:82 include/identity.php:605 include/identity.php:691
-#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:250
-msgid "Profile"
-msgstr "Profil"
+#: include/conversation.php:710 mod/content.php:453 mod/content.php:759
+#: mod/photos.php:1703 object/Item.php:137
+msgid "Select"
+msgstr "Auswählen"
 
-#: include/nav.php:82 view/theme/frio/theme.php:250
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/conversation.php:711 mod/content.php:454 mod/content.php:760
+#: mod/group.php:181 mod/settings.php:744 mod/contacts.php:816
+#: mod/contacts.php:1015 mod/photos.php:1704 mod/admin.php:1435
+#: object/Item.php:138
+msgid "Delete"
+msgstr "Löschen"
 
-#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:251
-msgid "Photos"
-msgstr "Bilder"
+#: include/conversation.php:755 mod/content.php:487 mod/content.php:915
+#: mod/content.php:916 object/Item.php:382 object/Item.php:383
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: include/nav.php:83 view/theme/frio/theme.php:251
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/conversation.php:767 object/Item.php:370
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: include/nav.php:84 include/identity.php:738 include/identity.php:741
-#: view/theme/frio/theme.php:252
-msgid "Videos"
-msgstr "Videos"
+#: include/conversation.php:768 object/Item.php:371
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: include/nav.php:84 view/theme/frio/theme.php:252
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/conversation.php:775 mod/content.php:497 mod/content.php:928
+#: object/Item.php:396
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: include/nav.php:85 include/nav.php:149 include/identity.php:750
-#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:253 view/theme/frio/theme.php:257
-msgid "Events"
-msgstr "Veranstaltungen"
+#: include/conversation.php:791 mod/content.php:513
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: include/nav.php:85 view/theme/frio/theme.php:253
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: include/conversation.php:793 include/conversation.php:1255
+#: mod/content.php:515 mod/content.php:953 mod/editpost.php:114
+#: mod/message.php:337 mod/message.php:522 mod/wallmessage.php:140
+#: mod/photos.php:1592 object/Item.php:421
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: include/nav.php:86
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/conversation.php:872
+msgid "remove"
+msgstr "löschen"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/conversation.php:876
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
+
+#: include/conversation.php:968
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1793
-msgid "Login"
-msgstr "Anmeldung"
+#: include/conversation.php:969 include/Contact.php:445
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/conversation.php:970 include/conversation.php:986
+#: include/Contact.php:388 include/Contact.php:401 include/Contact.php:446
+#: mod/allfriends.php:68 mod/directory.php:157 mod/dirfind.php:209
+#: mod/match.php:73 mod/suggest.php:82
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: include/nav.php:105 include/nav.php:161
-#: include/NotificationsManager.php:174
-msgid "Home"
-msgstr "Pinnwand"
+#: include/conversation.php:971 include/Contact.php:447
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: include/conversation.php:972 include/Contact.php:448
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1768
-msgid "Register"
-msgstr "Registrieren"
+#: include/conversation.php:973 include/Contact.php:449
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/conversation.php:974 include/Contact.php:451
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Hilfe"
+#: include/conversation.php:978 include/Contact.php:452
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/conversation.php:983 include/contact_widgets.php:32
+#: include/Contact.php:402 mod/allfriends.php:69 mod/dirfind.php:210
+#: mod/follow.php:106 mod/match.php:74 mod/suggest.php:83 mod/contacts.php:610
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: include/conversation.php:1099
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/conversation.php:1102
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
-msgstr "Suche"
+#: include/conversation.php:1105
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/conversation.php:1108
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
-msgstr "Volltext"
+#: include/conversation.php:1111
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
-msgstr "Tags"
+#: include/conversation.php:1121
+msgid "and"
+msgstr "und"
 
-#: include/nav.php:128 include/nav.php:192 include/identity.php:783
-#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:260
-msgid "Contacts"
-msgstr "Kontakte"
+#: include/conversation.php:1127
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-msgid "Community"
-msgstr "Gemeinschaft"
+#: include/conversation.php:1136
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/conversation.php:1137
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/conversation.php:1140
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: include/nav.php:149 include/identity.php:753 include/identity.php:764
-#: view/theme/frio/theme.php:257
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/conversation.php:1141
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/conversation.php:1144
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/conversation.php:1145
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Information"
+#: include/conversation.php:1148
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/conversation.php:1149
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
 
-#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
-#: view/theme/frio/theme.php:256
-msgid "Network"
-msgstr "Netzwerk"
+#: include/conversation.php:1152
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
 
-#: include/nav.php:158 view/theme/frio/theme.php:256
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/conversation.php:1153
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s  nehmen vielleicht teil."
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/conversation.php:1183 include/conversation.php:1199
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/conversation.php:1184 include/conversation.php:1200
+#: mod/message.php:271 mod/message.php:278 mod/message.php:418
+#: mod/message.php:425 mod/wallmessage.php:114 mod/wallmessage.php:121
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: include/nav.php:166 include/NotificationsManager.php:181
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: include/conversation.php:1185 include/conversation.php:1201
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/conversation.php:1186 include/conversation.php:1202
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/conversation.php:1187 include/conversation.php:1203
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/conversation.php:1188 include/conversation.php:1204
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: include/nav.php:171 mod/settings.php:902
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/conversation.php:1189 include/conversation.php:1205
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/conversation.php:1190
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:258
-msgid "Messages"
-msgstr "Nachrichten"
+#: include/conversation.php:1236
+msgid "Share"
+msgstr "Teilen"
 
-#: include/nav.php:175 view/theme/frio/theme.php:258
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/conversation.php:1237 mod/editpost.php:100 mod/message.php:335
+#: mod/message.php:519 mod/wallmessage.php:138
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Eingang"
+#: include/conversation.php:1238 mod/editpost.php:101
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/conversation.php:1239 mod/editpost.php:102
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/conversation.php:1240 mod/editpost.php:103
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Verwalten"
+#: include/conversation.php:1241 mod/editpost.php:104 mod/message.php:336
+#: mod/message.php:520 mod/wallmessage.php:139
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/conversation.php:1242 mod/editpost.php:105
+msgid "web link"
+msgstr "Weblink"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/conversation.php:1243 mod/editpost.php:106
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/conversation.php:1244 mod/editpost.php:107
+msgid "video link"
+msgstr "Video-Link"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
-#: mod/admin.php:1524 mod/admin.php:1782 view/theme/frio/theme.php:259
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/conversation.php:1245 mod/editpost.php:108
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: include/nav.php:186 view/theme/frio/theme.php:259
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/conversation.php:1246 mod/editpost.php:109
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: include/nav.php:189 include/identity.php:282
-msgid "Profiles"
-msgstr "Profile"
+#: include/conversation.php:1247 mod/editpost.php:110
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/conversation.php:1248 mod/editpost.php:111
+msgid "set location"
+msgstr "Ort setzen"
 
-#: include/nav.php:192 view/theme/frio/theme.php:260
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/conversation.php:1249 mod/editpost.php:112
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Administration"
+#: include/conversation.php:1250 mod/editpost.php:113
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/conversation.php:1252 mod/editpost.php:127
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigation"
+#: include/conversation.php:1254 mod/editpost.php:129
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Sitemap"
+#: include/conversation.php:1256 mod/editpost.php:115
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/conversation.php:1257 mod/editpost.php:144
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: include/conversation.php:1265 mod/editpost.php:124
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: include/conversation.php:1270 mod/content.php:737 mod/editpost.php:135
+#: mod/events.php:511 mod/photos.php:1613 mod/photos.php:1661
+#: mod/photos.php:1747 object/Item.php:741
+msgid "Preview"
+msgstr "Vorschau"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: include/conversation.php:1274 include/items.php:1983 mod/follow.php:124
+#: mod/settings.php:682 mod/settings.php:708 mod/suggest.php:32
+#: mod/tagrm.php:11 mod/tagrm.php:96 mod/videos.php:132 mod/contacts.php:455
+#: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
+#: mod/message.php:209 mod/photos.php:240 mod/photos.php:331
+#: mod/dfrn_request.php:889
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: include/security.php:373
-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/conversation.php:1280
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "System"
+#: include/conversation.php:1281
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr "Persönlich"
+#: include/conversation.php:1282
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: include/conversation.php:1287 include/identity.php:259 mod/editpost.php:142
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/NotificationsManager.php:243
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: include/conversation.php:1288 mod/editpost.php:143
+msgid "Browser"
+msgstr "Browser"
 
-#: include/NotificationsManager.php:256
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: include/conversation.php:1444
+msgid "View all"
+msgstr "Zeige alle"
 
-#: include/NotificationsManager.php:267
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: include/conversation.php:1466
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
 
-#: include/NotificationsManager.php:278
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
+#: include/conversation.php:1469
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
 
-#: include/NotificationsManager.php:289
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
+#: include/conversation.php:1475
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
 
-#: include/NotificationsManager.php:300
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
+#: include/delivery.php:470
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: include/NotificationsManager.php:315
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: include/features.php:65
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: include/NotificationsManager.php:748
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: include/features.php:67
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: include/NotificationsManager.php:781
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: include/features.php:67
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: include/NotificationsManager.php:781
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: include/features.php:68
+msgid "Photo Location"
+msgstr "Aufnahmeort"
 
-#: include/dbstructure.php:26
-#, php-format
+#: include/features.php:68
 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."
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: include/features.php:69
+msgid "Export Public Calendar"
+msgstr "Öffentlichen Kalender exportieren"
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: include/features.php:69
+msgid "Ability for visitors to download the public calendar"
+msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: include/features.php:74
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: include/delivery.php:446
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: include/features.php:75
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: include/diaspora.php:1958
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: include/features.php:75
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: include/diaspora.php:2864
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: include/features.php:76
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: include/features.php:76
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: include/Contact.php:340 include/Contact.php:353 include/Contact.php:398
-#: include/conversation.php:968 include/conversation.php:984
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/features.php:81
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: include/Contact.php:397 include/conversation.php:967
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/features.php:82
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: include/Contact.php:399 include/conversation.php:969
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/features.php:82
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: include/Contact.php:400 include/conversation.php:970
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/features.php:83 include/features.php:113
+msgid "List Forums"
+msgstr "Zeige Foren"
 
-#: include/Contact.php:401 include/conversation.php:971
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
+#: include/features.php:83
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
 
-#: include/Contact.php:402
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/features.php:84
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: include/Contact.php:403 include/conversation.php:972
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/features.php:84
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: include/Contact.php:404 include/conversation.php:976
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/features.php:85
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: include/Contact.php:775
-msgid "Organisation"
-msgstr "Organisation"
+#: include/features.php:85
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: include/Contact.php:778
-msgid "News"
-msgstr "Nachrichten"
+#: include/features.php:86 mod/network.php:199 mod/search.php:34
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: include/Contact.php:781
-msgid "Forum"
-msgstr "Forum"
+#: include/features.php:86
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: include/api.php:1018
-#, 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/features.php:91
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: include/api.php:1038
-#, 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/features.php:92
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: include/api.php:1059
-#, 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/features.php:92
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
 
-#: include/bbcode.php:350 include/bbcode.php:1057 include/bbcode.php:1058
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: include/features.php:93
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: include/bbcode.php:467
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: include/features.php:93
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: include/bbcode.php:1017 include/bbcode.php:1037
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: include/features.php:94
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: include/bbcode.php:1066 include/bbcode.php:1067
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: include/features.php:94
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: include/bbcode.php:1169
-msgid "Invalid source protocol"
-msgstr "Ungültiges Quell-Protokoll"
+#: include/features.php:99
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: include/bbcode.php:1179
-msgid "Invalid link protocol"
-msgstr "Ungültiges Link-Protokoll"
+#: include/features.php:100
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: include/features.php:100
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/features.php:101
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/features.php:101
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: include/features.php:102
+msgid "Tagging"
+msgstr "Tagging"
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/features.php:102
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: include/features.php:103
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: include/features.php:103
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/features.php:104 include/contact_widgets.php:150
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: include/features.php:104
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Likes"
+#: include/features.php:105
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/features.php:105
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: include/conversation.php:586 include/conversation.php:1481
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
+#: include/features.php:106
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/features.php:106
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/features.php:107
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Auswählen"
+#: include/features.php:107
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/photos.php:1682 mod/settings.php:741
-#: mod/admin.php:1414 mod/contacts.php:808 mod/contacts.php:1007
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Löschen"
+#: include/features.php:112
+msgid "Advanced Profile Settings"
+msgstr "Erweiterte Profil-Einstellungen"
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: include/features.php:113
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/photos.php:57 include/photos.php:67 mod/fbrowser.php:40
+#: mod/fbrowser.php:61 mod/photos.php:182 mod/photos.php:1106
+#: mod/photos.php:1231 mod/photos.php:1252 mod/photos.php:1817
+#: mod/photos.php:1829
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/datetime.php:58 include/datetime.php:60 mod/profiles.php:697
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: include/datetime.php:184 include/identity.php:641
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/datetime.php:186 mod/profiles.php:720
+msgid "Age: "
+msgstr "Alter: "
 
-#: include/conversation.php:791 include/conversation.php:1264
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/datetime.php:188
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "löschen"
+#: include/datetime.php:343
+msgid "never"
+msgstr "nie"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/datetime.php:349
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/datetime.php:352
+msgid "year"
+msgstr "Jahr"
 
-#: include/conversation.php:1097
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: include/datetime.php:352
+msgid "years"
+msgstr "Jahre"
 
-#: include/conversation.php:1100
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/datetime.php:353 include/event.php:481 mod/cal.php:279
+#: mod/events.php:396
+msgid "month"
+msgstr "Monat"
 
-#: include/conversation.php:1103
-#, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+#: include/datetime.php:353
+msgid "months"
+msgstr "Monate"
 
-#: include/conversation.php:1106
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+#: include/datetime.php:354 include/event.php:482 mod/cal.php:280
+#: mod/events.php:397
+msgid "week"
+msgstr "Woche"
 
-#: include/conversation.php:1109
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+#: include/datetime.php:354
+msgid "weeks"
+msgstr "Wochen"
 
-#: include/conversation.php:1119
-msgid "and"
-msgstr "und"
+#: include/datetime.php:355 include/event.php:483 mod/cal.php:281
+#: mod/events.php:398
+msgid "day"
+msgstr "Tag"
 
-#: include/conversation.php:1125
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: include/datetime.php:355
+msgid "days"
+msgstr "Tage"
 
-#: include/conversation.php:1134
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: include/datetime.php:356
+msgid "hour"
+msgstr "Stunde"
 
-#: include/conversation.php:1135
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: include/datetime.php:356
+msgid "hours"
+msgstr "Stunden"
 
-#: include/conversation.php:1138
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+#: include/datetime.php:357
+msgid "minute"
+msgstr "Minute"
 
-#: include/conversation.php:1139
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+#: include/datetime.php:357
+msgid "minutes"
+msgstr "Minuten"
 
-#: include/conversation.php:1142
-#, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+#: include/datetime.php:358
+msgid "second"
+msgstr "Sekunde"
 
-#: include/conversation.php:1143
-#, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+#: include/datetime.php:358
+msgid "seconds"
+msgstr "Sekunden"
 
-#: include/conversation.php:1146
+#: include/datetime.php:367
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: include/conversation.php:1147
+#: include/datetime.php:585
 #, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: include/conversation.php:1150
+#: include/datetime.php:586 include/dfrn.php:1122
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: include/conversation.php:1151
-#, php-format
-msgid "%s anttend maybe."
-msgstr "%s  nehmen vielleicht teil."
+#: include/event.php:16 include/bb2diaspora.php:199 mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/event.php:33 include/event.php:51 include/event.php:488
+#: include/bb2diaspora.php:205
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: include/conversation.php:1191 include/conversation.php:1209
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/event.php:36 include/event.php:57 include/event.php:489
+#: include/bb2diaspora.php:213
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: include/conversation.php:1192 include/conversation.php:1210
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/event.php:39 include/event.php:63 include/event.php:490
+#: include/bb2diaspora.php:221 include/identity.php:331 mod/directory.php:139
+#: mod/contacts.php:636 mod/events.php:501 mod/notifications.php:238
+msgid "Location:"
+msgstr "Ort:"
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/event.php:442
+msgid "Sun"
+msgstr "So"
 
-#: include/conversation.php:1194 include/conversation.php:1212
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/event.php:443
+msgid "Mon"
+msgstr "Mo"
 
-#: include/conversation.php:1195 include/conversation.php:1213
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/event.php:444
+msgid "Tue"
+msgstr "Di"
 
-#: include/conversation.php:1196 include/conversation.php:1214
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/event.php:445
+msgid "Wed"
+msgstr "Mi"
 
-#: include/conversation.php:1197
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/event.php:446
+msgid "Thu"
+msgstr "Do"
 
-#: include/conversation.php:1245 mod/photos.php:1569
-msgid "Share"
-msgstr "Teilen"
+#: include/event.php:447
+msgid "Fri"
+msgstr "Fr"
 
-#: include/conversation.php:1246 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/event.php:448
+msgid "Sat"
+msgstr "Sa"
 
-#: include/conversation.php:1247 mod/editpost.php:111
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/event.php:449 include/text.php:1132 mod/settings.php:981
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: include/conversation.php:1248 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/event.php:450 include/text.php:1132 mod/settings.php:981
+msgid "Monday"
+msgstr "Montag"
 
-#: include/conversation.php:1249 mod/editpost.php:113
-msgid "attach file"
-msgstr "Datei anhängen"
+#: include/event.php:451 include/text.php:1132
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/conversation.php:1250 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/event.php:452 include/text.php:1132
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/conversation.php:1251 mod/editpost.php:115
-msgid "web link"
-msgstr "Weblink"
+#: include/event.php:453 include/text.php:1132
+msgid "Thursday"
+msgstr "Donnerstag"
+
+#: include/event.php:454 include/text.php:1132
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/conversation.php:1252 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/event.php:455 include/text.php:1132
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/conversation.php:1253 mod/editpost.php:117
-msgid "video link"
-msgstr "Video-Link"
+#: include/event.php:456
+msgid "Jan"
+msgstr "Jan"
 
-#: include/conversation.php:1254 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: include/event.php:457
+msgid "Feb"
+msgstr "Feb"
 
-#: include/conversation.php:1255 mod/editpost.php:119
-msgid "audio link"
-msgstr "Audio-Link"
+#: include/event.php:458
+msgid "Mar"
+msgstr "März"
 
-#: include/conversation.php:1256 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: include/event.php:459
+msgid "Apr"
+msgstr "Apr"
 
-#: include/conversation.php:1257 mod/editpost.php:121
-msgid "set location"
-msgstr "Ort setzen"
+#: include/event.php:460 include/event.php:472 include/text.php:1136
+msgid "May"
+msgstr "Mai"
 
-#: include/conversation.php:1258 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: include/event.php:461
+msgid "Jun"
+msgstr "Jun"
 
-#: include/conversation.php:1259 mod/editpost.php:123
-msgid "clear location"
-msgstr "Ort löschen"
+#: include/event.php:462
+msgid "Jul"
+msgstr "Juli"
 
-#: include/conversation.php:1261 mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel setzen"
+#: include/event.php:463
+msgid "Aug"
+msgstr "Aug"
 
-#: include/conversation.php:1263 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: include/event.php:464
+msgid "Sept"
+msgstr "Sep"
 
-#: include/conversation.php:1265 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: include/event.php:465
+msgid "Oct"
+msgstr "Okt"
 
-#: include/conversation.php:1266 mod/editpost.php:154
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/event.php:466
+msgid "Nov"
+msgstr "Nov"
 
-#: include/conversation.php:1274 mod/editpost.php:134
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: include/event.php:467
+msgid "Dec"
+msgstr "Dez"
 
-#: include/conversation.php:1279 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
-msgstr "Vorschau"
+#: include/event.php:468 include/text.php:1136
+msgid "January"
+msgstr "Januar"
 
-#: include/conversation.php:1283 include/items.php:1974 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/editpost.php:148
-#: mod/message.php:220 mod/suggest.php:32 mod/photos.php:235
-#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
-#: mod/videos.php:128 mod/contacts.php:445 mod/dfrn_request.php:876
-#: mod/follow.php:121
-msgid "Cancel"
-msgstr "Abbrechen"
+#: include/event.php:469 include/text.php:1136
+msgid "February"
+msgstr "Februar"
 
-#: include/conversation.php:1289
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/event.php:470 include/text.php:1136
+msgid "March"
+msgstr "März"
 
-#: include/conversation.php:1290
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/event.php:471 include/text.php:1136
+msgid "April"
+msgstr "April"
 
-#: include/conversation.php:1291
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/event.php:473 include/text.php:1136
+msgid "June"
+msgstr "Juni"
 
-#: include/conversation.php:1296 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Nachricht"
+#: include/event.php:474 include/text.php:1136
+msgid "July"
+msgstr "Juli"
 
-#: include/conversation.php:1297 mod/editpost.php:153
-msgid "Browser"
-msgstr "Browser"
+#: include/event.php:475 include/text.php:1136
+msgid "August"
+msgstr "August"
 
-#: include/conversation.php:1453
-msgid "View all"
-msgstr "Zeige alle"
+#: include/event.php:476 include/text.php:1136
+msgid "September"
+msgstr "September"
 
-#: include/conversation.php:1475
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
+#: include/event.php:477 include/text.php:1136
+msgid "October"
+msgstr "Oktober"
 
-#: include/conversation.php:1478
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
+#: include/event.php:478 include/text.php:1136
+msgid "November"
+msgstr "November"
 
-#: include/conversation.php:1484
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
+#: include/event.php:479 include/text.php:1136
+msgid "December"
+msgstr "Dezember"
 
-#: include/dfrn.php:1108
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
+#: include/event.php:480 mod/cal.php:278 mod/events.php:395
+msgid "today"
+msgstr "Heute"
 
-#: include/features.php:70
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: include/event.php:484
+msgid "all-day"
+msgstr "ganztägig"
 
-#: include/features.php:72
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: include/event.php:486
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: include/features.php:72
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: include/event.php:596
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/features.php:73
-msgid "Photo Location"
-msgstr "Aufnahmeort"
+#: include/event.php:615
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: include/features.php:73
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
+#: include/event.php:637 include/text.php:1534 include/text.php:1541
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: include/features.php:74
-msgid "Export Public Calendar"
-msgstr "Öffentlichen Kalender exportieren"
+#: include/event.php:872
+msgid "Export"
+msgstr "Exportieren"
 
-#: include/features.php:74
-msgid "Ability for visitors to download the public calendar"
-msgstr "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden"
+#: include/event.php:873
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: include/features.php:79
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: include/event.php:874
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: include/features.php:80
-msgid "Richtext Editor"
-msgstr "Web-Editor"
+#: include/dfrn.php:1121
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: include/features.php:80
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
+#: include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: include/features.php:81
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: include/features.php:81
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: include/features.php:82
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: include/features.php:82
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
+#: include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: include/features.php:87
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: include/features.php:88
-msgid "Search by Date"
-msgstr "Archiv"
+#: include/contact_selectors.php:56 mod/admin.php:901
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: include/features.php:88
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: include/contact_selectors.php:57 mod/admin.php:902
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: include/features.php:89 include/features.php:119
-msgid "List Forums"
-msgstr "Zeige Foren"
+#: include/contact_selectors.php:58 mod/admin.php:903
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: include/features.php:89
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
+#: include/contact_selectors.php:59 mod/admin.php:904
+msgid "Daily"
+msgstr "Täglich"
 
-#: include/features.php:90
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: include/features.php:90
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: include/features.php:91
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: include/contact_selectors.php:76 mod/dfrn_request.php:881
+msgid "Friendica"
+msgstr "Friendica"
 
-#: include/features.php:91
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
+#: include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: include/features.php:92 mod/search.php:34 mod/network.php:200
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: include/features.php:92
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: include/contact_selectors.php:79 include/contact_selectors.php:86
+#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1461
+msgid "Email"
+msgstr "E-Mail"
 
-#: include/features.php:97
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: include/contact_selectors.php:80 mod/settings.php:848
+#: mod/dfrn_request.php:883
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: include/features.php:98
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: include/features.php:98
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
+#: include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: include/features.php:99
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: include/features.php:99
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
+#: include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: include/features.php:100
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: include/features.php:100
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
+#: include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: include/features.php:105
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: include/features.php:106
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: include/features.php:106
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: include/features.php:107
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: include/contact_selectors.php:91
+msgid "GNU Social"
+msgstr "GNU Social"
 
-#: include/features.php:107
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: include/contact_selectors.php:92
+msgid "pnut"
+msgstr "pnut"
 
-#: include/features.php:108
-msgid "Tagging"
-msgstr "Tagging"
+#: include/contact_selectors.php:93
+msgid "App.net"
+msgstr "App.net"
 
-#: include/features.php:108
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: include/contact_selectors.php:104
+msgid "Hubzilla/Redmatrix"
+msgstr "Hubzilla/Redmatrix"
 
-#: include/features.php:109
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: include/features.php:109
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: include/features.php:110
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: include/features.php:111
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: include/contact_widgets.php:10 include/identity.php:219
+#: mod/allfriends.php:85 mod/dirfind.php:207 mod/match.php:89
+#: mod/suggest.php:101
+msgid "Connect"
+msgstr "Verbinden"
 
-#: include/features.php:111
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: include/features.php:112
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Leute finden"
 
-#: include/features.php:112
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: include/features.php:113
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+#: include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: include/features.php:113
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+#: include/contact_widgets.php:34 mod/directory.php:206 mod/contacts.php:806
+msgid "Find"
+msgstr "Finde"
 
-#: include/features.php:118
-msgid "Advanced Profile Settings"
-msgstr "Erweiterte Profil-Einstellungen"
+#: include/contact_widgets.php:35 mod/suggest.php:114
+#: view/theme/vier/theme.php:198
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: include/features.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
+#: include/contact_widgets.php:36 view/theme/vier/theme.php:197
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: include/follow.php:81 mod/dfrn_request.php:509
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: include/follow.php:86
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/contact_widgets.php:38 view/theme/vier/theme.php:199
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: include/follow.php:113
-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/contact_widgets.php:115
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: include/follow.php:114 include/follow.php:134
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/contact_widgets.php:118
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: include/follow.php:132
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/contact_widgets.php:153 include/contact_widgets.php:187
+msgid "Everything"
+msgstr "Alles"
 
-#: include/follow.php:136
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/contact_widgets.php:184
+msgid "Categories"
+msgstr "Kategorien"
 
-#: include/follow.php:138
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/contact_widgets.php:248
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: include/follow.php:140
-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/api.php:1021
+#, 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/follow.php:141
-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/api.php:1041
+#, 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/follow.php:147
-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/api.php:1062
+#, 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/follow.php:157
-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/diaspora.php:2087
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/follow.php:258
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/diaspora.php:3096
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: include/identity.php:42
+#: include/identity.php:43
 msgid "Requested account is not available."
 msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/identity.php:51 mod/profile.php:21
+#: include/identity.php:52 mod/profile.php:21
 msgid "Requested profile is not available."
 msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+#: include/identity.php:96 include/identity.php:314 include/identity.php:737
 msgid "Edit profile"
 msgstr "Profil bearbeiten"
 
-#: include/identity.php:251
+#: include/identity.php:254
 msgid "Atom feed"
 msgstr "Atom-Feed"
 
-#: include/identity.php:282
+#: include/identity.php:285
 msgid "Manage/edit profiles"
 msgstr "Profile verwalten/editieren"
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+#: include/identity.php:290 include/identity.php:316 mod/profiles.php:789
 msgid "Change profile photo"
 msgstr "Profilbild ändern"
 
-#: include/identity.php:288 mod/profiles.php:796
+#: include/identity.php:291 mod/profiles.php:790
 msgid "Create New Profile"
 msgstr "Neues Profil anlegen"
 
-#: include/identity.php:298 mod/profiles.php:785
+#: include/identity.php:301 mod/profiles.php:779
 msgid "Profile Image"
 msgstr "Profilbild"
 
-#: include/identity.php:301 mod/profiles.php:787
+#: include/identity.php:304 mod/profiles.php:781
 msgid "visible to everybody"
 msgstr "sichtbar für jeden"
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+#: include/identity.php:305 mod/profiles.php:683 mod/profiles.php:782
 msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
+#: include/identity.php:333 include/identity.php:628 mod/directory.php:141
+#: mod/notifications.php:244
 msgid "Gender:"
 msgstr "Geschlecht:"
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+#: include/identity.php:336 include/identity.php:648 mod/directory.php:143
 msgid "Status:"
 msgstr "Status:"
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+#: include/identity.php:338 include/identity.php:664 mod/directory.php:145
 msgid "Homepage:"
 msgstr "Homepage:"
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/directory.php:145 mod/contacts.php:632
+#: include/identity.php:340 include/identity.php:684 mod/directory.php:147
+#: mod/contacts.php:640 mod/notifications.php:240
 msgid "About:"
 msgstr "Über:"
 
-#: include/identity.php:339 mod/contacts.php:630
+#: include/identity.php:342 mod/contacts.php:638
 msgid "XMPP:"
 msgstr "XMPP:"
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+#: include/identity.php:428 mod/contacts.php:55 mod/notifications.php:252
 msgid "Network:"
 msgstr "Netzwerk:"
 
-#: include/identity.php:451 include/identity.php:535
+#: include/identity.php:457 include/identity.php:547
 msgid "g A l F d"
 msgstr "l, d. F G \\U\\h\\r"
 
-#: include/identity.php:452 include/identity.php:536
+#: include/identity.php:458 include/identity.php:548
 msgid "F d"
 msgstr "d. F"
 
-#: include/identity.php:497 include/identity.php:582
+#: include/identity.php:509 include/identity.php:594
 msgid "[today]"
 msgstr "[heute]"
 
-#: include/identity.php:509
+#: include/identity.php:521
 msgid "Birthday Reminders"
 msgstr "Geburtstagserinnerungen"
 
-#: include/identity.php:510
+#: include/identity.php:522
 msgid "Birthdays this week:"
 msgstr "Geburtstage diese Woche:"
 
-#: include/identity.php:569
+#: include/identity.php:581
 msgid "[No description]"
 msgstr "[keine Beschreibung]"
 
-#: include/identity.php:593
+#: include/identity.php:605
 msgid "Event Reminders"
 msgstr "Veranstaltungserinnerungen"
 
-#: include/identity.php:594
+#: include/identity.php:606
 msgid "Events this week:"
 msgstr "Veranstaltungen diese Woche"
 
-#: include/identity.php:614 mod/settings.php:1279
+#: include/identity.php:626 mod/settings.php:1286
 msgid "Full Name:"
 msgstr "Kompletter Name:"
 
-#: include/identity.php:621
+#: include/identity.php:633
 msgid "j F, Y"
 msgstr "j F, Y"
 
-#: include/identity.php:622
+#: include/identity.php:634
 msgid "j F"
 msgstr "j F"
 
-#: include/identity.php:633
+#: include/identity.php:645
 msgid "Age:"
 msgstr "Alter:"
 
-#: include/identity.php:642
+#: include/identity.php:656
 #, php-format
 msgid "for %1$d %2$s"
 msgstr "für %1$d %2$s"
 
-#: include/identity.php:645 mod/profiles.php:710
+#: include/identity.php:660 mod/profiles.php:702
 msgid "Sexual Preference:"
 msgstr "Sexuelle Vorlieben:"
 
-#: include/identity.php:649 mod/profiles.php:737
+#: include/identity.php:668 mod/profiles.php:729
 msgid "Hometown:"
 msgstr "Heimatort:"
 
-#: include/identity.php:651 mod/notifications.php:236 mod/contacts.php:634
-#: mod/follow.php:134
+#: include/identity.php:672 mod/follow.php:137 mod/contacts.php:642
+#: mod/notifications.php:242
 msgid "Tags:"
 msgstr "Tags:"
 
-#: include/identity.php:653 mod/profiles.php:738
+#: include/identity.php:676 mod/profiles.php:730
 msgid "Political Views:"
 msgstr "Politische Ansichten:"
 
-#: include/identity.php:655
+#: include/identity.php:680
 msgid "Religion:"
 msgstr "Religion:"
 
-#: include/identity.php:659
+#: include/identity.php:688
 msgid "Hobbies/Interests:"
 msgstr "Hobbies/Interessen:"
 
-#: include/identity.php:661 mod/profiles.php:742
+#: include/identity.php:692 mod/profiles.php:734
 msgid "Likes:"
 msgstr "Likes:"
 
-#: include/identity.php:663 mod/profiles.php:743
+#: include/identity.php:696 mod/profiles.php:735
 msgid "Dislikes:"
 msgstr "Dislikes:"
 
-#: include/identity.php:666
+#: include/identity.php:700
 msgid "Contact information and Social Networks:"
 msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/identity.php:668
+#: include/identity.php:704
 msgid "Musical interests:"
 msgstr "Musikalische Interessen:"
 
-#: include/identity.php:670
+#: include/identity.php:708
 msgid "Books, literature:"
 msgstr "Literatur/Bücher:"
 
-#: include/identity.php:672
+#: include/identity.php:712
 msgid "Television:"
 msgstr "Fernsehen:"
 
-#: include/identity.php:674
+#: include/identity.php:716
 msgid "Film/dance/culture/entertainment:"
 msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/identity.php:676
+#: include/identity.php:720
 msgid "Love/Romance:"
 msgstr "Liebesleben:"
 
-#: include/identity.php:678
+#: include/identity.php:724
 msgid "Work/employment:"
 msgstr "Arbeit/Beschäftigung:"
 
-#: include/identity.php:680
+#: include/identity.php:728
 msgid "School/education:"
 msgstr "Schule/Ausbildung:"
 
-#: include/identity.php:684
+#: include/identity.php:733
 msgid "Forums:"
 msgstr "Foren:"
 
-#: include/identity.php:692 mod/events.php:507
+#: include/identity.php:742 mod/events.php:514
 msgid "Basic"
 msgstr "Allgemein"
 
-#: include/identity.php:693 mod/events.php:508 mod/admin.php:959
-#: mod/contacts.php:870
+#: include/identity.php:743 mod/contacts.php:878 mod/events.php:515
+#: mod/admin.php:980
 msgid "Advanced"
 msgstr "Erweitert"
 
-#: include/identity.php:717 mod/contacts.php:836 mod/follow.php:142
+#: include/identity.php:769 mod/follow.php:145 mod/contacts.php:844
 msgid "Status Messages and Posts"
 msgstr "Statusnachrichten und Beiträge"
 
-#: include/identity.php:725 mod/contacts.php:844
+#: include/identity.php:777 mod/contacts.php:852
 msgid "Profile Details"
 msgstr "Profildetails"
 
-#: include/identity.php:733 mod/photos.php:87
+#: include/identity.php:785 mod/photos.php:89
 msgid "Photo Albums"
 msgstr "Fotoalben"
 
-#: include/identity.php:772 mod/notes.php:46
+#: include/identity.php:824 mod/notes.php:47
 msgid "Personal Notes"
 msgstr "Persönliche Notizen"
 
-#: include/identity.php:775
+#: include/identity.php:827
 msgid "Only You Can See This"
 msgstr "Nur Du kannst das sehen"
 
-#: include/items.php:1575 mod/dfrn_confirm.php:730 mod/dfrn_request.php:746
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: include/items.php:1930 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/display.php:103 mod/display.php:279 mod/display.php:478
-#: mod/admin.php:234 mod/admin.php:1471 mod/admin.php:1705
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:1969
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:1971 mod/api.php:105 mod/message.php:217
-#: mod/profiles.php:648 mod/profiles.php:651 mod/profiles.php:677
-#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/contacts.php:442 mod/dfrn_request.php:862 mod/follow.php:110
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:2134 mod/notes.php:22 mod/uimport.php:23
-#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/editpost.php:10 mod/group.php:19 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:79 mod/wallmessage.php:103
-#: mod/api.php:26 mod/api.php:31 mod/ostatus_subscribe.php:9
-#: mod/message.php:46 mod/message.php:182 mod/manage.php:96
-#: mod/crepair.php:100 mod/fsuggest.php:78 mod/mood.php:114 mod/poke.php:150
-#: mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18 mod/dirfind.php:11
-#: mod/display.php:475 mod/events.php:190 mod/suggest.php:58
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:128 mod/settings.php:665
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wall_upload.php:77
-#: mod/wall_upload.php:80 mod/contacts.php:350 mod/dfrn_confirm.php:61
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/item.php:199
-#: mod/item.php:211 mod/network.php:4 mod/viewcontacts.php:45 index.php:401
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:2239
-msgid "Archives"
-msgstr "Archiv"
-
-#: include/oembed.php:264
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
-
-#: include/oembed.php:272
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
-
-#: include/ostatus.php:1825
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: include/ostatus.php:1826
-msgid "following"
-msgstr "folgen"
-
-#: include/ostatus.php:1829
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
-
-#: include/ostatus.php:1830
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
-
 #: include/text.php:304
 msgid "newer"
 msgstr "neuer"
@@ -2788,697 +2831,940 @@ msgstr "Das Ende"
 msgid "No contacts"
 msgstr "Keine Kontakte"
 
-#: include/text.php:912
+#: include/text.php:914
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d Kontakt"
 msgstr[1] "%d Kontakte"
 
-#: include/text.php:925
+#: include/text.php:927
 msgid "View Contacts"
 msgstr "Kontakte anzeigen"
 
-#: include/text.php:1013 mod/notes.php:61 mod/filer.php:31
-#: mod/editpost.php:109
+#: include/text.php:1015 mod/filer.php:31 mod/notes.php:62 mod/editpost.php:99
 msgid "Save"
 msgstr "Speichern"
 
-#: include/text.php:1076
+#: include/text.php:1078
 msgid "poke"
 msgstr "anstupsen"
 
-#: include/text.php:1076
+#: include/text.php:1078
 msgid "poked"
 msgstr "stupste"
 
-#: include/text.php:1077
+#: include/text.php:1079
 msgid "ping"
 msgstr "anpingen"
 
-#: include/text.php:1077
+#: include/text.php:1079
 msgid "pinged"
 msgstr "pingte"
 
-#: include/text.php:1078
+#: include/text.php:1080
 msgid "prod"
 msgstr "knuffen"
 
-#: include/text.php:1078
+#: include/text.php:1080
 msgid "prodded"
 msgstr "knuffte"
 
-#: include/text.php:1079
+#: include/text.php:1081
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: include/text.php:1079
+#: include/text.php:1081
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: include/text.php:1080
+#: include/text.php:1082
 msgid "finger"
 msgstr "befummeln"
 
-#: include/text.php:1080
+#: include/text.php:1082
 msgid "fingered"
 msgstr "befummelte"
 
-#: include/text.php:1081
+#: include/text.php:1083
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: include/text.php:1081
+#: include/text.php:1083
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: include/text.php:1095
+#: include/text.php:1097
 msgid "happy"
 msgstr "glücklich"
 
-#: include/text.php:1096
+#: include/text.php:1098
 msgid "sad"
 msgstr "traurig"
 
-#: include/text.php:1097
+#: include/text.php:1099
 msgid "mellow"
 msgstr "sanft"
 
-#: include/text.php:1098
+#: include/text.php:1100
 msgid "tired"
 msgstr "müde"
 
-#: include/text.php:1099
+#: include/text.php:1101
 msgid "perky"
 msgstr "frech"
 
-#: include/text.php:1100
+#: include/text.php:1102
 msgid "angry"
 msgstr "sauer"
 
-#: include/text.php:1101
+#: include/text.php:1103
 msgid "stupified"
 msgstr "verblüfft"
 
-#: include/text.php:1102
+#: include/text.php:1104
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: include/text.php:1103
+#: include/text.php:1105
 msgid "interested"
 msgstr "interessiert"
 
-#: include/text.php:1104
+#: include/text.php:1106
 msgid "bitter"
 msgstr "verbittert"
 
-#: include/text.php:1105
+#: include/text.php:1107
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: include/text.php:1106
+#: include/text.php:1108
 msgid "alive"
 msgstr "lebendig"
 
-#: include/text.php:1107
+#: include/text.php:1109
 msgid "annoyed"
 msgstr "verärgert"
 
-#: include/text.php:1108
+#: include/text.php:1110
 msgid "anxious"
 msgstr "unruhig"
 
-#: include/text.php:1109
+#: include/text.php:1111
 msgid "cranky"
 msgstr "schrullig"
 
-#: include/text.php:1110
+#: include/text.php:1112
 msgid "disturbed"
 msgstr "verstört"
 
-#: include/text.php:1111
+#: include/text.php:1113
 msgid "frustrated"
 msgstr "frustriert"
 
-#: include/text.php:1112
+#: include/text.php:1114
 msgid "motivated"
 msgstr "motiviert"
 
-#: include/text.php:1113
+#: include/text.php:1115
 msgid "relaxed"
 msgstr "entspannt"
 
-#: include/text.php:1114
+#: include/text.php:1116
 msgid "surprised"
 msgstr "überrascht"
 
-#: include/text.php:1324 mod/videos.php:380
+#: include/text.php:1326 mod/videos.php:384
 msgid "View Video"
 msgstr "Video ansehen"
 
-#: include/text.php:1356
+#: include/text.php:1358
 msgid "bytes"
 msgstr "Byte"
 
-#: include/text.php:1388 include/text.php:1400
+#: include/text.php:1390 include/text.php:1402
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: include/text.php:1526
+#: include/text.php:1528
 msgid "View on separate page"
 msgstr "Auf separater Seite ansehen"
 
-#: include/text.php:1527
+#: include/text.php:1529
 msgid "view on separate page"
 msgstr "auf separater Seite ansehen"
 
-#: include/text.php:1806
+#: include/text.php:1808
 msgid "activity"
 msgstr "Aktivität"
 
-#: include/text.php:1808 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: include/text.php:1810 mod/content.php:623 object/Item.php:446
+#: object/Item.php:458
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
+
+#: include/text.php:1811
+msgid "post"
+msgstr "Beitrag"
+
+#: include/text.php:1979
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
+
+#: include/Contact.php:450
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
+
+#: include/Contact.php:827
+msgid "Organisation"
+msgstr "Organisation"
+
+#: include/Contact.php:830
+msgid "News"
+msgstr "Nachrichten"
+
+#: include/Contact.php:833
+msgid "Forum"
+msgstr "Forum"
+
+#: include/items.php:1584 mod/dfrn_confirm.php:735 mod/dfrn_request.php:754
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
+
+#: include/items.php:1939 mod/notice.php:15 mod/viewsrc.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:484
+#: mod/admin.php:235 mod/admin.php:1492 mod/admin.php:1738
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
+
+#: include/items.php:1978
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
+
+#: include/items.php:1980 mod/api.php:105 mod/follow.php:113
+#: mod/register.php:245 mod/settings.php:1171 mod/settings.php:1177
+#: mod/settings.php:1184 mod/settings.php:1188 mod/settings.php:1193
+#: mod/settings.php:1198 mod/settings.php:1203 mod/settings.php:1208
+#: mod/settings.php:1234 mod/settings.php:1235 mod/settings.php:1236
+#: mod/settings.php:1237 mod/settings.php:1238 mod/suggest.php:29
+#: mod/contacts.php:452 mod/message.php:206 mod/dfrn_request.php:875
+#: mod/profiles.php:640 mod/profiles.php:643 mod/profiles.php:669
+msgid "Yes"
+msgstr "Ja"
+
+#: include/items.php:2143 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/crepair.php:102 mod/delegate.php:12
+#: mod/dirfind.php:11 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/fsuggest.php:79 mod/group.php:19 mod/invite.php:15 mod/invite.php:103
+#: mod/manage.php:98 mod/mood.php:115 mod/nogroup.php:27 mod/notes.php:23
+#: mod/ostatus_subscribe.php:9 mod/poke.php:154 mod/profile_photo.php:19
+#: mod/profile_photo.php:180 mod/profile_photo.php:191
+#: mod/profile_photo.php:204 mod/register.php:42 mod/regmod.php:113
+#: mod/repair_ostatus.php:9 mod/settings.php:22 mod/settings.php:130
+#: mod/settings.php:668 mod/suggest.php:58 mod/uimport.php:24
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/cal.php:299
+#: mod/contacts.php:360 mod/dfrn_confirm.php:61 mod/editpost.php:10
+#: mod/events.php:195 mod/item.php:193 mod/item.php:205 mod/message.php:46
+#: mod/message.php:171 mod/wall_upload.php:77 mod/wall_upload.php:80
+#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:73
+#: mod/wallmessage.php:97 mod/photos.php:161 mod/photos.php:1092
+#: mod/profiles.php:166 mod/profiles.php:607 mod/display.php:481
+#: mod/viewcontacts.php:46 mod/network.php:4 mod/notifications.php:71
+#: index.php:407
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
+
+#: include/items.php:2248
+msgid "Archives"
+msgstr "Archiv"
+
+#: include/dbstructure.php:33
+#, 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:38
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+
+#: include/dbstructure.php:195
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+
+#: include/dbstructure.php:329 include/dbstructure.php:337
+#: include/dbstructure.php:345 include/dbstructure.php:350
+#: include/dbstructure.php:355
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+
+#: include/network.php:619
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
+
+#: mod/allfriends.php:46
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
+
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
+
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
+
+#: mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+
+#: mod/api.php:106 mod/follow.php:113 mod/register.php:246
+#: mod/settings.php:1171 mod/settings.php:1177 mod/settings.php:1184
+#: mod/settings.php:1188 mod/settings.php:1193 mod/settings.php:1198
+#: mod/settings.php:1203 mod/settings.php:1208 mod/settings.php:1234
+#: mod/settings.php:1235 mod/settings.php:1236 mod/settings.php:1237
+#: mod/settings.php:1238 mod/dfrn_request.php:875 mod/profiles.php:640
+#: mod/profiles.php:644 mod/profiles.php:669
+msgid "No"
+msgstr "Nein"
+
+#: mod/apps.php:7 index.php:248
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+
+#: mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
+
+#: mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
+
+#: mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
+
+#: mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
+
+#: mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
+
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+
+#: mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
+
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
+
+#: mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
+
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
+
+#: mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
+
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
+
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
+
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
+
+#: mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
+
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
+
+#: mod/common.php:141 mod/contacts.php:871
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
+
+#: mod/community.php:22 mod/directory.php:37 mod/videos.php:198
+#: mod/photos.php:964 mod/dfrn_request.php:799 mod/display.php:200
+#: mod/viewcontacts.php:36 mod/search.php:93 mod/search.php:99
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
+
+#: mod/community.php:27
+msgid "Not available."
+msgstr "Nicht verfügbar."
+
+#: mod/community.php:66 mod/community.php:75 mod/search.php:224
+msgid "No results."
+msgstr "Keine Ergebnisse."
+
+#: mod/content.php:119 mod/network.php:468
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
+
+#: mod/content.php:130 mod/group.php:203 mod/network.php:495
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
+
+#: mod/content.php:135 mod/network.php:499
+#, php-format
+msgid "Group: %s"
+msgstr "Gruppe: %s"
+
+#: mod/content.php:325 object/Item.php:96
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
+
+#: mod/content.php:621 object/Item.php:444
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
+
+#: mod/content.php:638 mod/photos.php:1402 object/Item.php:117
+msgid "Private Message"
+msgstr "Private Nachricht"
+
+#: mod/content.php:702 mod/photos.php:1590 object/Item.php:274
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
+
+#: mod/content.php:702 object/Item.php:274
+msgid "like"
+msgstr "mag ich"
+
+#: mod/content.php:703 mod/photos.php:1591 object/Item.php:275
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
+
+#: mod/content.php:703 object/Item.php:275
+msgid "dislike"
+msgstr "mag ich nicht"
+
+#: mod/content.php:705 object/Item.php:278
+msgid "Share this"
+msgstr "Weitersagen"
+
+#: mod/content.php:705 object/Item.php:278
+msgid "share"
+msgstr "Teilen"
+
+#: mod/content.php:725 mod/photos.php:1609 mod/photos.php:1657
+#: mod/photos.php:1743 object/Item.php:729
+msgid "This is you"
+msgstr "Das bist Du"
+
+#: mod/content.php:727 mod/content.php:950 mod/photos.php:1611
+#: mod/photos.php:1659 mod/photos.php:1745 object/Item.php:418
+#: object/Item.php:731
+msgid "Comment"
+msgstr "Kommentar"
+
+#: mod/content.php:728 mod/crepair.php:156 mod/fsuggest.php:108
+#: mod/invite.php:142 mod/localtime.php:45 mod/manage.php:145 mod/mood.php:138
+#: mod/poke.php:203 mod/contacts.php:585 mod/events.php:513
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1124
+#: mod/photos.php:1246 mod/photos.php:1562 mod/photos.php:1612
+#: mod/photos.php:1660 mod/photos.php:1746 mod/install.php:276
+#: mod/install.php:316 mod/profiles.php:680 object/Item.php:732
+#: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
+#: view/theme/duepuntozero/config.php:61 view/theme/clean/config.php:87
+#: view/theme/frio/config.php:64
+msgid "Submit"
+msgstr "Senden"
+
+#: mod/content.php:729 object/Item.php:733
+msgid "Bold"
+msgstr "Fett"
+
+#: mod/content.php:730 object/Item.php:734
+msgid "Italic"
+msgstr "Kursiv"
+
+#: mod/content.php:731 object/Item.php:735
+msgid "Underline"
+msgstr "Unterstrichen"
+
+#: mod/content.php:732 object/Item.php:736
+msgid "Quote"
+msgstr "Zitat"
 
-#: include/text.php:1809
-msgid "post"
-msgstr "Beitrag"
+#: mod/content.php:733 object/Item.php:737
+msgid "Code"
+msgstr "Code"
 
-#: include/text.php:1977
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: mod/content.php:734 object/Item.php:738
+msgid "Image"
+msgstr "Bild"
 
-#: include/user.php:39 mod/settings.php:373
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+#: mod/content.php:735 object/Item.php:739
+msgid "Link"
+msgstr "Link"
 
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: mod/content.php:736 object/Item.php:740
+msgid "Video"
+msgstr "Video"
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: mod/content.php:746 mod/settings.php:743 object/Item.php:122
+#: object/Item.php:124
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: mod/content.php:772 object/Item.php:238
+msgid "add star"
+msgstr "markieren"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: mod/content.php:773 object/Item.php:239
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: mod/content.php:774 object/Item.php:240
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: mod/content.php:777 object/Item.php:243
+msgid "starred"
+msgstr "markiert"
 
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+#: mod/content.php:778 mod/content.php:800 object/Item.php:263
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: include/user.php:118
-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."
+#: mod/content.php:789 object/Item.php:251
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: mod/content.php:790 object/Item.php:252
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: mod/content.php:791 object/Item.php:253
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: include/user.php:140
-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."
+#: mod/content.php:794 mod/ostatus_subscribe.php:73 object/Item.php:256
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: mod/content.php:805 object/Item.php:141
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: include/user.php:157
-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."
+#: mod/content.php:853 object/Item.php:212
+msgid "I will attend"
+msgstr "Ich werde teilnehmen"
 
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: mod/content.php:853 object/Item.php:212
+msgid "I will not attend"
+msgstr "Ich werde nicht teilnehmen"
 
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: mod/content.php:853 object/Item.php:212
+msgid "I might attend"
+msgstr "Ich werde eventuell teilnehmen"
 
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "Standard"
+#: mod/content.php:917 object/Item.php:384
+msgid "to"
+msgstr "zu"
 
-#: include/user.php:266
-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."
+#: mod/content.php:918 object/Item.php:386
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: include/user.php:326 include/user.php:333 include/user.php:340
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: mod/content.php:919 object/Item.php:387
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: include/user.php:414
-#, php-format
+#: mod/credits.php:16
+msgid "Credits"
+msgstr "Credits"
+
+#: mod/credits.php:17
 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."
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
 
-#: include/user.php:424
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
+#: mod/crepair.php:89
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: include/user.php:434
-#, 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."
+#: mod/crepair.php:91
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: include/user.php:438
-#, php-format
+#: mod/crepair.php:116 mod/fsuggest.php:21 mod/fsuggest.php:93
+#: mod/dfrn_confirm.php:126
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
+
+#: mod/crepair.php:122
 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."
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: include/user.php:470 mod/admin.php:1213
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: mod/crepair.php:123
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: mod/crepair.php:136
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: mod/crepair.php:136 mod/crepair.php:138
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: mod/notify.php:60
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: mod/crepair.php:152
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: mod/notify.php:64 mod/notifications.php:111
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: mod/crepair.php:154
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
 
-#: mod/search.php:25 mod/network.php:191
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/crepair.php:158
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: mod/search.php:93 mod/search.php:99 mod/community.php:22
-#: mod/directory.php:37 mod/display.php:200 mod/photos.php:944
-#: mod/videos.php:194 mod/dfrn_request.php:791 mod/viewcontacts.php:35
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: mod/crepair.php:161
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: mod/crepair.php:163
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+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/search.php:124
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1417 mod/admin.php:1430 mod/admin.php:1443 mod/admin.php:1459
+msgid "Name"
+msgstr "Name"
 
-#: mod/search.php:125
-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/crepair.php:168
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: mod/search.php:224 mod/community.php:66 mod/community.php:75
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: mod/crepair.php:169
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: mod/search.php:230
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: mod/crepair.php:170
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: mod/search.php:232 mod/contacts.php:797 mod/network.php:146
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: mod/crepair.php:171
+msgid "Friend Request URL"
+msgstr "URL für Kontaktschaftsanfragen"
 
-#: mod/friendica.php:70
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: mod/crepair.php:172
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Kontaktanfragen"
 
-#: mod/friendica.php:71
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: mod/crepair.php:173
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: mod/friendica.php:73
-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/crepair.php:174
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: mod/friendica.php:75
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: mod/crepair.php:175
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: mod/friendica.php:75
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
+#: mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: mod/friendica.php:76
+#: mod/delegate.php:132
 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"
+"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/friendica.php:90
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps:"
+#: mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: mod/friendica.php:103
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: mod/delegate.php:139 mod/tagrm.php:95
+msgid "Remove"
+msgstr "Entfernen"
 
-#: mod/lostpass.php:42
-#, 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/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/lostpass.php:53
-#, 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/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/lostpass.php:72
+#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:539
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
-
-#: mod/lostpass.php:92
-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."
-
-#: mod/lostpass.php:109 boot.php:1807
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/directory.php:199 view/theme/vier/theme.php:196
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/directory.php:201
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/directory.php:203
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/lostpass.php:113
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/directory.php:205
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/lostpass.php:114
-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/directory.php:212
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/lostpass.php:125
+#: mod/dirfind.php:37
 #, 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)."
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/lostpass.php:131
+#: mod/dirfind.php:48
 #, 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."
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: mod/dirfind.php:245 mod/match.php:109
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: mod/lostpass.php:160
-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/follow.php:19 mod/dfrn_request.php:888
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/lostpass.php:161 boot.php:1795
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/follow.php:30
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/lostpass.php:162
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: mod/help.php:41
-msgid "Help:"
-msgstr "Hilfe:"
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
 
-#: mod/help.php:53 mod/p.php:16 mod/p.php:43 mod/p.php:52 mod/fetch.php:12
-#: mod/fetch.php:39 mod/fetch.php:48 index.php:288
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: mod/follow.php:112 mod/dfrn_request.php:874
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/help.php:56 index.php:291
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: mod/follow.php:113 mod/dfrn_request.php:875
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/lockview.php:31 mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: mod/follow.php:114 mod/dfrn_request.php:879
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: mod/follow.php:120 mod/dfrn_request.php:885
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/follow.php:129 mod/contacts.php:632 mod/notifications.php:249
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: mod/openid.php:60
-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/follow.php:186
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/uimport.php:50 mod/register.php:198
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+#: mod/fsuggest.php:64
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/uimport.php:64 mod/register.php:295
-msgid "Import"
-msgstr "Import"
+#: mod/fsuggest.php:98
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: mod/fsuggest.php:100
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
+
+#: mod/group.php:49 mod/group.php:150
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
+
+#: mod/group.php:63
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
+
+#: mod/group.php:76 mod/profperm.php:20 index.php:406
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
+#: mod/group.php:91
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+#: mod/group.php:97
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+#: mod/group.php:122
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/nogroup.php:41 mod/contacts.php:586 mod/contacts.php:930
-#: mod/viewcontacts.php:97
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: mod/group.php:124
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/nogroup.php:42 mod/contacts.php:931
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: mod/group.php:187
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: mod/group.php:200
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/uexport.php:29
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/group.php:202 mod/contacts.php:700
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: mod/uexport.php:29
-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/group.php:233 mod/profperm.php:107
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: mod/uexport.php:30
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/hcard.php:11
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: mod/uexport.php:30
-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/help.php:41
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: mod/uexport.php:37 mod/settings.php:95
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/help.php:53 mod/fetch.php:12 mod/fetch.php:39 mod/fetch.php:48
+#: mod/p.php:16 mod/p.php:43 mod/p.php:52 index.php:292
+msgid "Not Found"
+msgstr "Nicht gefunden"
+
+#: mod/help.php:56 index.php:295
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
+
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: mod/invite.php:27
+#: mod/invite.php:28
 msgid "Total invitation limit exceeded."
 msgstr "Limit für Einladungen erreicht."
 
-#: mod/invite.php:49
+#: mod/invite.php:51
 #, php-format
 msgid "%s : Not a valid email address."
 msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/invite.php:73
+#: mod/invite.php:76
 msgid "Please join us on Friendica"
 msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/invite.php:84
+#: mod/invite.php:87
 msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: mod/invite.php:89
+#: mod/invite.php:91
 #, php-format
 msgid "%s : Message delivery failed."
 msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/invite.php:93
+#: mod/invite.php:95
 #, php-format
 msgid "%d message sent."
 msgid_plural "%d messages sent."
 msgstr[0] "%d Nachricht gesendet."
 msgstr[1] "%d Nachrichten gesendet."
 
-#: mod/invite.php:112
+#: mod/invite.php:114
 msgid "You have no more invitations available"
 msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/invite.php:120
+#: mod/invite.php:122
 #, php-format
 msgid ""
 "Visit %s for a list of public sites that you can join. Friendica members on "
@@ -3486,14 +3772,14 @@ msgid ""
 " 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/invite.php:122
+#: mod/invite.php:124
 #, 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/invite.php:123
+#: mod/invite.php:125
 #, php-format
 msgid ""
 "Friendica sites all inter-connect to create a huge privacy-enhanced social "
@@ -3502,192 +3788,246 @@ msgid ""
 "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/invite.php:126
+#: mod/invite.php:128
 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/invite.php:132
+#: mod/invite.php:134
 msgid "Send invitations"
 msgstr "Einladungen senden"
 
-#: mod/invite.php:133
+#: mod/invite.php:135
 msgid "Enter email addresses, one per line:"
 msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/invite.php:134 mod/wallmessage.php:151 mod/message.php:351
-#: mod/message.php:541
+#: mod/invite.php:136 mod/message.php:332 mod/message.php:515
+#: mod/wallmessage.php:135
 msgid "Your message:"
 msgstr "Deine Nachricht:"
 
-#: mod/invite.php:135
+#: mod/invite.php:137
 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/invite.php:137
+#: mod/invite.php:139
 msgid "You will need to supply this invitation code: $invite_code"
 msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/invite.php:137
+#: mod/invite.php:139
 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/invite.php:139
+#: mod/invite.php:141
 msgid ""
 "For more information about the Friendica project and why we feel it is "
 "important, please visit http://friendica.com"
 msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: mod/invite.php:140 mod/localtime.php:45 mod/message.php:357
-#: mod/message.php:547 mod/manage.php:143 mod/crepair.php:154
-#: mod/content.php:728 mod/fsuggest.php:107 mod/mood.php:137 mod/poke.php:199
-#: mod/profiles.php:688 mod/events.php:506 mod/photos.php:1104
-#: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
-#: mod/photos.php:1638 mod/photos.php:1724 mod/contacts.php:577
-#: mod/install.php:272 mod/install.php:312 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
-#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Senden"
+#: mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: mod/fbrowser.php:133
-msgid "Files"
-msgstr "Dateien"
+#: mod/localtime.php:26
+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."
 
-#: mod/profperm.php:19 mod/group.php:72 index.php:400
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: mod/profperm.php:25 mod/profperm.php:56
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: mod/profperm.php:102
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: mod/profperm.php:106 mod/group.php:223
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: mod/profperm.php:115
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: mod/lockview.php:32 mod/lockview.php:40
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: mod/profperm.php:131
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: mod/lockview.php:49
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: mod/lostpass.php:41
+#, 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/tagrm.php:93 mod/delegate.php:139
-msgid "Remove"
-msgstr "Entfernen"
+#: mod/lostpass.php:52
+#, 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/repair_ostatus.php:14
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: mod/lostpass.php:71
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: mod/repair_ostatus.php:30
-msgid "Error"
-msgstr "Fehler"
+#: mod/lostpass.php:91
+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."
 
-#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51
-msgid "Done"
-msgstr "Erledigt"
+#: mod/lostpass.php:110 boot.php:1848
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: mod/lostpass.php:111
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: mod/lostpass.php:112
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: mod/delegate.php:132
+#: mod/lostpass.php:113
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+
+#: mod/lostpass.php:114
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
+
+#: mod/lostpass.php:115
 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!"
+"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/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: mod/lostpass.php:125
+#, 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/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/lostpass.php:131
+#, 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/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
 
-#: mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/lostpass.php:160
+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/lostpass.php:161 boot.php:1836
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/credits.php:16
-msgid "Credits"
-msgstr "Credits"
+#: mod/lostpass.php:162
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: mod/credits.php:17
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: mod/manage.php:141
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: mod/manage.php:142
+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."
 
-#: mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: mod/manage.php:143
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: mod/match.php:35
+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/apps.php:7 index.php:244
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: mod/match.php:88
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: mod/match.php:102
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: mod/mood.php:134
+msgid "Mood"
+msgstr "Stimmung"
 
-#: mod/p.php:9
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: mod/mood.php:135
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
 
 #: mod/newmember.php:6
 msgid "Welcome to Friendica"
@@ -3739,7 +4079,7 @@ msgid ""
 "potential friends know exactly how to find you."
 msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
 
-#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:707
+#: mod/newmember.php:36 mod/profile_photo.php:256 mod/profiles.php:699
 msgid "Upload Profile Photo"
 msgstr "Profilbild hochladen"
 
@@ -3858,236 +4198,40 @@ msgid ""
 " features and resources."
 msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: mod/removeme.php:46 mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
-
-#: mod/removeme.php:47
-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/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
-
-#: mod/editpost.php:17 mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
-
-#: mod/editpost.php:40
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
-
-#: mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
-
-#: mod/localtime.php:26
-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."
-
-#: mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
-
-#: mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
-
-#: mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
-
-#: mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
-
-#: mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
-
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
-
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
-
-#: mod/group.php:47 mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
-
-#: mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
-
-#: mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
-
-#: mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
-
-#: mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
-
-#: mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
-
-#: mod/group.php:177
-msgid "Group Editor"
-msgstr "Gruppeneditor"
-
-#: mod/group.php:190
-msgid "Members"
-msgstr "Mitglieder"
-
-#: mod/group.php:192 mod/contacts.php:692
-msgid "All Contacts"
-msgstr "Alle Kontakte"
-
-#: mod/group.php:193 mod/content.php:130 mod/network.php:496
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
-
-#: mod/wallmessage.php:42 mod/wallmessage.php:112
-#, 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/wallmessage.php:56 mod/message.php:71
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
-
-#: mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
-
-#: mod/wallmessage.php:62 mod/message.php:78
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
-
-#: mod/wallmessage.php:65 mod/message.php:81
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
-
-#: mod/wallmessage.php:68 mod/message.php:84
-msgid "Message sent."
-msgstr "Nachricht gesendet."
-
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
-
-#: mod/wallmessage.php:142 mod/message.php:341
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
-
-#: mod/wallmessage.php:143
+#: mod/nogroup.php:43 mod/contacts.php:594 mod/contacts.php:938
+#: mod/viewcontacts.php:102
 #, 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/wallmessage.php:144 mod/message.php:342 mod/message.php:536
-msgid "To:"
-msgstr "An:"
-
-#: mod/wallmessage.php:145 mod/message.php:347 mod/message.php:538
-msgid "Subject:"
-msgstr "Betreff:"
-
-#: mod/share.php:38
-msgid "link"
-msgstr "Link"
-
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
-
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
-
-#: mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
-
-#: mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
-
-#: mod/api.php:106 mod/profiles.php:648 mod/profiles.php:652
-#: mod/profiles.php:677 mod/register.php:246 mod/settings.php:1163
-#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
-#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
-#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
-#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
-#: mod/dfrn_request.php:862 mod/follow.php:110
-msgid "No"
-msgstr "Nein"
-
-#: mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
-
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
-
-#: mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
-
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
-
-#: mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/nogroup.php:44 mod/contacts.php:939
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/nogroup.php:65
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: mod/notify.php:65
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: mod/notify.php:69 mod/notifications.php:111
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/oexchange.php:21
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: mod/openid.php:60
+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/ostatus_subscribe.php:14
 msgid "Subscribing to OStatus contacts"
@@ -4097,1076 +4241,1060 @@ msgstr "OStatus Kontakten folgen"
 msgid "No contact provided."
 msgstr "Keine Kontakte gefunden."
 
-#: mod/ostatus_subscribe.php:30
+#: mod/ostatus_subscribe.php:31
 msgid "Couldn't fetch information for contact."
 msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/ostatus_subscribe.php:38
+#: mod/ostatus_subscribe.php:40
 msgid "Couldn't fetch friends for contact."
 msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/ostatus_subscribe.php:65
+#: mod/ostatus_subscribe.php:54 mod/repair_ostatus.php:44
+msgid "Done"
+msgstr "Erledigt"
+
+#: mod/ostatus_subscribe.php:68
 msgid "success"
 msgstr "Erfolg"
 
-#: mod/ostatus_subscribe.php:67
+#: mod/ostatus_subscribe.php:70
 msgid "failed"
 msgstr "Fehlgeschlagen"
 
-#: mod/ostatus_subscribe.php:69 mod/content.php:792 object/Item.php:245
-msgid "ignored"
-msgstr "Ignoriert"
+#: mod/ostatus_subscribe.php:78 mod/repair_ostatus.php:50
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/dfrn_poll.php:104 mod/dfrn_poll.php:537
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+#: mod/poke.php:196
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: mod/message.php:75
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/poke.php:197
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: mod/message.php:215
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/poke.php:198
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: mod/message.php:235
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/poke.php:199
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: mod/message.php:266
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/poke.php:202
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: mod/message.php:383
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/profile.php:154 mod/cal.php:143 mod/display.php:328
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: mod/message.php:426
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/profile.php:174
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/message.php:503
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/message.php:529 mod/message.php:609
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/profile_photo.php:77 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: mod/profile_photo.php:323
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: mod/message.php:531
+#: mod/profile_photo.php:127
 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:535
-msgid "Send Reply"
-msgstr "Antwort senden"
-
-#: mod/message.php:579
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+"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/message.php:581
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: mod/profile_photo.php:137
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/message.php:583
+#: mod/profile_photo.php:156 mod/wall_upload.php:151 mod/photos.php:803
 #, php-format
-msgid "%s and You"
-msgstr "%s und Du"
-
-#: mod/message.php:612
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
 
-#: mod/message.php:615
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: mod/profile_photo.php:165 mod/wall_upload.php:186 mod/photos.php:844
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: mod/manage.php:139
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/profile_photo.php:254
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/manage.php:140
-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."
+#: mod/profile_photo.php:255
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/manage.php:141
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/profile_photo.php:257
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: mod/profile_photo.php:260
+msgid "or"
+msgstr "oder"
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: mod/profile_photo.php:260
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: mod/crepair.php:114 mod/fsuggest.php:20 mod/fsuggest.php:92
-#: mod/dfrn_confirm.php:126
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: mod/profile_photo.php:260
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/crepair.php:120
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+#: mod/profile_photo.php:274
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/crepair.php:121
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
+#: 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/crepair.php:134 mod/crepair.php:136
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: mod/profile_photo.php:277
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/crepair.php:134
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: mod/profile_photo.php:313
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/crepair.php:134 mod/crepair.php:136
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: mod/profile_photo.php:315 mod/wall_upload.php:219 mod/photos.php:871
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/crepair.php:150
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: mod/profperm.php:26 mod/profperm.php:57
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: mod/crepair.php:152
-msgid "Refetch contact data"
-msgstr "Kontaktdaten neu laden"
+#: mod/profperm.php:103
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: mod/crepair.php:156
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: mod/profperm.php:116
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: mod/crepair.php:159
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: mod/profperm.php:132
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: mod/crepair.php:161
+#: mod/register.php:93
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-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:165 mod/settings.php:680 mod/settings.php:706
-#: mod/admin.php:1396 mod/admin.php:1409 mod/admin.php:1422 mod/admin.php:1438
-msgid "Name"
-msgstr "Name"
-
-#: mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
-
-#: mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
-
-#: mod/crepair.php:168
-msgid "Account URL"
-msgstr "Konto-URL"
-
-#: mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL für Kontaktschaftsanfragen"
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Kontaktanfragen"
+#: mod/register.php:98
+#, 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/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: mod/register.php:105
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
 
-#: mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/content.php:119 mod/network.php:469
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: mod/register.php:198 mod/uimport.php:51
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
 
-#: mod/content.php:135 mod/network.php:500
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+#: mod/register.php:226
+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/content.php:325 object/Item.php:95
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: mod/register.php:227
+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/content.php:621 object/Item.php:429
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: mod/content.php:638 mod/photos.php:1379 object/Item.php:117
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/content.php:702 mod/photos.php:1567 object/Item.php:263
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
 
-#: mod/content.php:702 object/Item.php:263
-msgid "like"
-msgstr "mag ich"
+#: mod/register.php:267
+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/content.php:703 mod/photos.php:1568 object/Item.php:264
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: mod/content.php:703 object/Item.php:264
-msgid "dislike"
-msgstr "mag ich nicht"
+#: mod/register.php:269
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: mod/content.php:705 object/Item.php:266
-msgid "Share this"
-msgstr "Weitersagen"
+#: mod/register.php:272 mod/admin.php:977
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/content.php:705 object/Item.php:266
-msgid "share"
-msgstr "Teilen"
+#: mod/register.php:280
+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/content.php:725 mod/photos.php:1587 mod/photos.php:1635
-#: mod/photos.php:1721 object/Item.php:717
-msgid "This is you"
-msgstr "Das bist Du"
+#: mod/register.php:281
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
-#: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:971
-msgid "Comment"
-msgstr "Kommentar"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/content.php:729 object/Item.php:721
-msgid "Bold"
-msgstr "Fett"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/content.php:730 object/Item.php:722
-msgid "Italic"
-msgstr "Kursiv"
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/content.php:731 object/Item.php:723
-msgid "Underline"
-msgstr "Unterstrichen"
+#: mod/register.php:285
+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/content.php:732 object/Item.php:724
-msgid "Quote"
-msgstr "Zitat"
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: mod/content.php:733 object/Item.php:725
-msgid "Code"
-msgstr "Code"
+#: mod/register.php:295 mod/uimport.php:66
+msgid "Import"
+msgstr "Import"
 
-#: mod/content.php:734 object/Item.php:726
-msgid "Image"
-msgstr "Bild"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/content.php:735 object/Item.php:727
-msgid "Link"
-msgstr "Link"
+#: mod/regmod.php:58
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: mod/content.php:736 object/Item.php:728
-msgid "Video"
-msgstr "Video"
+#: mod/regmod.php:95
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
-#: object/Item.php:124
-msgid "Edit"
-msgstr "Bearbeiten"
+#: mod/regmod.php:107
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/content.php:771 object/Item.php:227
-msgid "add star"
-msgstr "markieren"
+#: mod/removeme.php:52 mod/removeme.php:55
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: mod/content.php:772 object/Item.php:228
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: mod/removeme.php:53
+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/content.php:773 object/Item.php:229
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: mod/removeme.php:54
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: mod/content.php:776 object/Item.php:232
-msgid "starred"
-msgstr "markiert"
+#: mod/repair_ostatus.php:14
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
 
-#: mod/content.php:777 mod/content.php:798 object/Item.php:252
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: mod/repair_ostatus.php:30
+msgid "Error"
+msgstr "Fehler"
 
-#: mod/content.php:787 object/Item.php:240
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: mod/settings.php:36 mod/photos.php:107
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/content.php:788 object/Item.php:241
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: mod/settings.php:43 mod/admin.php:1417
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/content.php:789 object/Item.php:242
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/settings.php:52 mod/admin.php:161
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/content.php:803 object/Item.php:137
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: mod/settings.php:60
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will attend"
-msgstr "Ich werde teilnehmen"
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I will not attend"
-msgstr "Ich werde nicht teilnehmen"
+#: mod/settings.php:74 mod/admin.php:159 mod/admin.php:1543 mod/admin.php:1606
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/content.php:848 object/Item.php:201
-msgid "I might attend"
-msgstr "Ich werde eventuell teilnehmen"
+#: mod/settings.php:88
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/content.php:912 object/Item.php:369
-msgid "to"
-msgstr "zu"
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/content.php:913 object/Item.php:371
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: mod/settings.php:102
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/content.php:914 object/Item.php:372
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: mod/settings.php:157
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: mod/settings.php:160 mod/settings.php:707 mod/contacts.php:812
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: mod/settings.php:271
+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/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: mod/settings.php:276
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: mod/settings.php:291
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Kontakten"
+#: mod/settings.php:361
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: mod/settings.php:380
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: mod/settings.php:388
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: mod/settings.php:399
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: mod/settings.php:481
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/settings.php:483
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91
-#: mod/profile_photo.php:314
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: mod/settings.php:492
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/profile_photo.php:124
-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/settings.php:497
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/settings.php:503
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
+#: mod/settings.php:559
+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/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: mod/settings.php:563
+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/profile_photo.php:248
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/settings.php:603
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/profile_photo.php:249
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/profile_photo.php:251
-msgid "Upload"
-msgstr "Hochladen"
+#: mod/settings.php:681 mod/settings.php:792 mod/settings.php:841
+#: mod/settings.php:908 mod/settings.php:1005 mod/settings.php:1271
+#: mod/admin.php:976 mod/admin.php:1607 mod/admin.php:1864 mod/admin.php:1938
+#: mod/admin.php:2088
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/profile_photo.php:254
-msgid "or"
-msgstr "oder"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/profile_photo.php:254
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/profile_photo.php:254
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/profile_photo.php:268
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/profile_photo.php:269
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/settings.php:698
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/profile_photo.php:271
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/settings.php:741
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/settings.php:745
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: mod/settings.php:746
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/regmod.php:55
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: mod/settings.php:747
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/regmod.php:104
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: mod/settings.php:768
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
+msgid "Off"
+msgstr "Aus"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:252
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/settings.php:782 mod/admin.php:2077 mod/admin.php:2078
+msgid "On"
+msgstr "An"
 
-#: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:251 mod/contacts.php:606 mod/contacts.php:806
-#: mod/contacts.php:991
-msgid "Ignore"
-msgstr "Ignorieren"
+#: mod/settings.php:790
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/notifications.php:105
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: mod/settings.php:810
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: mod/settings.php:812
+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/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/settings.php:820
+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/notifications.php:164 mod/notifications.php:222
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/notifications.php:172 mod/notifications.php:239 mod/contacts.php:613
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: mod/settings.php:836
+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/notifications.php:173 mod/notifications.php:240
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/notifications.php:173 mod/notifications.php:240
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/settings.php:848 mod/settings.php:849
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1412
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "ja"
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "nein"
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/notifications.php:197
-msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
-"you allow to read but you do not want to read theirs. Approve as: "
-msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/notifications.php:200
+#: mod/settings.php:896
 msgid ""
-"Shall your connection be bidirectional or not? \"Friend\" implies that you "
-"allow to read and you subscribe to their posts. \"Sharer\" means that you "
-"allow to read but you do not want to read theirs. Approve as: "
-msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
+"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/notifications.php:209
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/settings.php:897
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/notifications.php:210
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/settings.php:899
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/notifications.php:210
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: mod/settings.php:900
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/notifications.php:243 mod/contacts.php:624 mod/follow.php:126
-msgid "Profile URL"
-msgstr "Profil URL"
+#: mod/settings.php:901
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/notifications.php:260
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
+msgstr "Keine"
 
-#: mod/notifications.php:299
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: mod/settings.php:902
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/notifications.php:299
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: mod/settings.php:903
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/notifications.php:305
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: mod/settings.php:904
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/profiles.php:19 mod/profiles.php:134 mod/profiles.php:180
-#: mod/profiles.php:617 mod/dfrn_confirm.php:70
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/settings.php:906
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/profiles.php:56 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/settings.php:906
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/profiles.php:75 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/settings.php:907
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/settings.php:943 mod/admin.php:863
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/profiles.php:190
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/settings.php:1003
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/profiles.php:338
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/profiles.php:342
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/settings.php:1010
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/profiles.php:354
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/settings.php:1011
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/profiles.php:357
-msgid "Religion"
-msgstr "Religion"
+#: mod/settings.php:1011
+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:361
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/profiles.php:365
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/settings.php:1012
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
 
-#: mod/profiles.php:369
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/settings.php:1013
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/profiles.php:373
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/profiles.php:377
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/settings.php:1014
+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:381 mod/profiles.php:702
-msgid "Interests"
-msgstr "Interessen"
+#: mod/settings.php:1015
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/profiles.php:385
-msgid "Address"
-msgstr "Adresse"
+#: mod/settings.php:1016
+msgid "Calendar"
+msgstr "Kalender"
+
+#: mod/settings.php:1017
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
+
+#: mod/settings.php:1018
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/profiles.php:392 mod/profiles.php:698
-msgid "Location"
-msgstr "Wohnort"
+#: mod/settings.php:1019
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/profiles.php:477
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/settings.php:1020
+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:564
-msgid " and "
-msgstr " und "
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/profiles.php:572
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/settings.php:1021
+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:575
-#, 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:1023
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/profiles.php:576
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/profiles.php:579
-#, 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:1025
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/profiles.php:645
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/settings.php:1026 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114 view/theme/duepuntozero/config.php:63
+#: view/theme/clean/config.php:89 view/theme/frio/config.php:66
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/profiles.php:650
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/settings.php:1110
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/profiles.php:674
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/profiles.php:686
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/profiles.php:687
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/settings.php:1119
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/profiles.php:689
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/profiles.php:690
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/settings.php:1123
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/profiles.php:692
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
+msgstr "Diese Konto ist ein Profil für eine Organisation"
 
-#: mod/profiles.php:693
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/settings.php:1127
+msgid "News Page"
+msgstr "Nachrichtenseite"
 
-#: mod/profiles.php:694
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
+msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
 
-#: mod/profiles.php:696
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/settings.php:1131
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
 
-#: mod/profiles.php:697
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/settings.php:1132
+msgid ""
+"This account is a community forum where people can discuss with each other"
+msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
 
-#: mod/profiles.php:699
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/settings.php:1135
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/profiles.php:700
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/profiles.php:701
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/profiles.php:704
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/profiles.php:708
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/settings.php:1143
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/profiles.php:709
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/settings.php:1144
+msgid "Automatically approve all contact requests"
+msgstr "Bestätige alle Kontaktanfragen automatisch"
 
-#: mod/profiles.php:711
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/settings.php:1147
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/profiles.php:716
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/settings.php:1148
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/profiles.php:716 mod/events.php:484 mod/events.php:496
-msgid "Required"
-msgstr "Benötigt"
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/profiles.php:718
-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:1152
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/profiles.php:719
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/settings.php:1163
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/profiles.php:720
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/settings.php:1163
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/profiles.php:723
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/settings.php:1171
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/profiles.php:724
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/settings.php:1177
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/profiles.php:725
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/settings.php:1184
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/profiles.php:726
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/settings.php:1188
+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/profiles.php:727
-msgid "Country:"
-msgstr "Land:"
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/profiles.php:731
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/profiles.php:731
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/settings.php:1203
+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/profiles.php:732
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/profiles.php:734
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/profiles.php:735
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/settings.php:1224
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/profiles.php:735
-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:1231
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/profiles.php:736
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/settings.php:1231
+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/profiles.php:739
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/profiles.php:740
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/profiles.php:740
-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:1234
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/profiles.php:741
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/settings.php:1235
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/profiles.php:741
-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:1236
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/profiles.php:744
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/settings.php:1237
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
+
+#: mod/settings.php:1238
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/profiles.php:745
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/settings.php:1269
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/profiles.php:746
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/settings.php:1277
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/profiles.php:747
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/settings.php:1279
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/profiles.php:748
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/settings.php:1280
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/profiles.php:749
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/settings.php:1280 mod/settings.php:1281
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/profiles.php:750
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/settings.php:1281
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/profiles.php:751
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/settings.php:1285
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/profiles.php:752
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/settings.php:1287
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/settings.php:1288
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: mod/settings.php:1289
+msgid "Your Language:"
+msgstr "Deine Sprache:"
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: mod/settings.php:1289
+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/cal.php:276 mod/events.php:380
-msgid "View"
-msgstr "Ansehen"
+#: mod/settings.php:1290
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
-msgstr "Vorherige"
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Nächste"
+#: mod/settings.php:1294
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
-msgstr "Liste"
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/cal.php:297
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: mod/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: mod/settings.php:1298
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/cal.php:330
-msgid "calendar"
-msgstr "Kalender"
+#: mod/settings.php:1307 mod/photos.php:1185 mod/photos.php:1567
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: mod/settings.php:1308 mod/photos.php:1186 mod/photos.php:1568
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: mod/settings.php:1309
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/settings.php:1310
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/directory.php:201
-msgid "Results for:"
-msgstr "Ergebnisse für:"
+#: mod/settings.php:1329
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: mod/settings.php:1330
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: mod/settings.php:1331
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/settings.php:1332
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: mod/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: mod/settings.php:1334
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/settings.php:1335
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/settings.php:1336
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/events.php:482
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/settings.php:1339
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/settings.php:1344
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Titel:"
+#: mod/settings.php:1348
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/match.php:33
-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/settings.php:1354
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: mod/settings.php:1355
+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/match.php:100
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/share.php:38
+msgid "link"
+msgstr "Link"
+
+#: mod/subthread.php:104
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
 #: mod/suggest.php:27
 msgid "Do you really want to delete this suggestion?"
@@ -5182,3524 +5310,3562 @@ msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde,
 msgid "Ignore/Hide"
 msgstr "Ignorieren/Verbergen"
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
-
-#: mod/photos.php:88 mod/photos.php:1856
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
-
-#: mod/photos.php:91 mod/photos.php:1283 mod/photos.php:1858
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
-
-#: mod/photos.php:105 mod/settings.php:36
-msgid "everybody"
-msgstr "jeder"
-
-#: mod/photos.php:169
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
-
-#: mod/photos.php:190
-msgid "Album not found."
-msgstr "Album nicht gefunden."
-
-#: mod/photos.php:220 mod/photos.php:232 mod/photos.php:1227
-msgid "Delete Album"
-msgstr "Album löschen"
-
-#: mod/photos.php:230
-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/tagrm.php:43
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: mod/photos.php:308 mod/photos.php:319 mod/photos.php:1540
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: mod/tagrm.php:82
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: mod/photos.php:317
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: mod/tagrm.php:84
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: mod/photos.php:688
-#, 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/uexport.php:37
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: mod/photos.php:688
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/uexport.php:37
+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/photos.php:794
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/uexport.php:38
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: mod/photos.php:954
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: mod/uexport.php:38
+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/photos.php:1054 mod/videos.php:305
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/uimport.php:68
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: mod/photos.php:1114
-#, 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/uimport.php:69
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: mod/photos.php:1148
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: mod/uimport.php:70
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: mod/photos.php:1152 mod/photos.php:1222
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: mod/uimport.php:71
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
 
-#: mod/photos.php:1153
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/uimport.php:72
+msgid "Account file"
+msgstr "Account Datei"
 
-#: mod/photos.php:1154
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/uimport.php:72
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/photos.php:1167
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/videos.php:129
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/photos.php:1168
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/videos.php:208
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/photos.php:1234
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/videos.php:309 mod/photos.php:1074
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/photos.php:1240
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/videos.php:391 mod/photos.php:1867
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/photos.php:1242
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/videos.php:400
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/photos.php:1269 mod/photos.php:1841
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/videos.php:402
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/photos.php:1315
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: mod/photos.php:1317
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: mod/photos.php:1372
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/wall_attach.php:94
+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/photos.php:1372
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: mod/photos.php:1373
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: mod/photos.php:1398
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/wall_attach.php:158 mod/wall_attach.php:174
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: mod/photos.php:1484
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/cal.php:271 mod/events.php:387
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/photos.php:1487
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/cal.php:272 mod/events.php:389
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/photos.php:1526
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/cal.php:273 mod/events.php:390 mod/install.php:235
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/photos.php:1527
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: mod/cal.php:282 mod/events.php:399
+msgid "list"
+msgstr "Liste"
 
-#: mod/photos.php:1528
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/cal.php:292
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/photos.php:1528
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: mod/cal.php:308
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: mod/photos.php:1529
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: mod/cal.php:310
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: mod/photos.php:1530
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/cal.php:325
+msgid "calendar"
+msgstr "Kalender"
 
-#: mod/photos.php:1531
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/contacts.php:134
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: mod/photos.php:1546
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/contacts.php:169 mod/contacts.php:378
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: mod/photos.php:1547
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/contacts.php:183
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: mod/photos.php:1770
-msgid "Map"
-msgstr "Karte"
+#: mod/contacts.php:216
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: mod/photos.php:1847 mod/videos.php:387
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/contacts.php:218 mod/dfrn_request.php:588
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: mod/contacts.php:399
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: mod/register.php:98
-#, 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/contacts.php:399
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
+#: mod/contacts.php:410
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/contacts.php:410
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/contacts.php:422
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: mod/register.php:226
-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/contacts.php:422
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: mod/register.php:227
-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/contacts.php:447
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: mod/contacts.php:450 mod/contacts.php:809
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/contacts.php:469
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/contacts.php:506
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: mod/register.php:267
-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/contacts.php:510
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
+
+#: mod/contacts.php:515
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/contacts.php:535
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/contacts.php:538 mod/admin.php:899
+msgid "Never"
+msgstr "Niemals"
 
-#: mod/register.php:272 mod/admin.php:956
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/contacts.php:542
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: mod/register.php:280
-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/contacts.php:542
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/contacts.php:544 mod/contacts.php:972
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/register.php:283 mod/settings.php:1271
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/contacts.php:548
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/contacts.php:561
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: mod/register.php:284 mod/settings.php:1272
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/contacts.php:564
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/register.php:285
-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/contacts.php:565 mod/admin.php:908
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/contacts.php:565
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/contacts.php:565
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: mod/settings.php:43 mod/admin.php:1396
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/contacts.php:583
+msgid "Contact"
+msgstr "Kontakt"
 
-#: mod/settings.php:52 mod/admin.php:160
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/contacts.php:586
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Anzeige"
+#: mod/contacts.php:587
+#, 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/settings.php:67 mod/settings.php:886
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/contacts.php:588
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: mod/settings.php:74 mod/admin.php:158 mod/admin.php:1522 mod/admin.php:1582
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/contacts.php:589
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/contacts.php:595
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/contacts.php:596
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: mod/settings.php:155
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/contacts.php:597
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: mod/settings.php:158 mod/settings.php:704 mod/contacts.php:804
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/contacts.php:598
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: 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/contacts.php:604
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: mod/settings.php:274
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/contacts.php:606
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/settings.php:289
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/contacts.php:608 mod/contacts.php:982
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/settings.php:359
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1437
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/settings.php:378
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
+#: mod/admin.php:1436
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/settings.php:386
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/settings.php:397
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
+#: mod/notifications.php:60 mod/notifications.php:179
+#: mod/notifications.php:257
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: mod/settings.php:399
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/contacts.php:618
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/settings.php:479
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/contacts.php:619
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/settings.php:481
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/contacts.php:620
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/settings.php:490
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: mod/settings.php:495
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/contacts.php:621
+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/settings.php:501
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: mod/contacts.php:622
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: 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/contacts.php:622
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: 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/contacts.php:625
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/settings.php:601
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/contacts.php:625
+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/settings.php:677 mod/settings.php:703 mod/settings.php:739
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/contacts.php:643
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/settings.php:678 mod/settings.php:788 mod/settings.php:835
-#: mod/settings.php:904 mod/settings.php:996 mod/settings.php:1264
-#: mod/admin.php:955 mod/admin.php:1583 mod/admin.php:1831 mod/admin.php:1905
-#: mod/admin.php:2055
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/contacts.php:646
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/contacts.php:692
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/settings.php:682 mod/settings.php:708
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/contacts.php:695
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/settings.php:683 mod/settings.php:709
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/contacts.php:703
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/contacts.php:708
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/settings.php:695
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/contacts.php:711
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/settings.php:738
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/contacts.php:717
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/settings.php:742
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/contacts.php:720
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/settings.php:743
-msgid "No name"
-msgstr "Kein Name"
+#: mod/contacts.php:726
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/settings.php:744
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/contacts.php:729
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/settings.php:756
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/contacts.php:735
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/settings.php:764
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/contacts.php:738
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "Off"
-msgstr "Aus"
+#: mod/contacts.php:744
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/settings.php:778 mod/admin.php:2044 mod/admin.php:2045
-msgid "On"
-msgstr "An"
+#: mod/contacts.php:747
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/settings.php:786
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/contacts.php:804
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/settings.php:796 mod/settings.php:800
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/contacts.php:805 mod/network.php:145 mod/search.php:232
+#, php-format
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
-#: mod/settings.php:806
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/contacts.php:815 mod/contacts.php:1007
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/settings.php:808
-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/contacts.php:815 mod/contacts.php:1007
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/settings.php:814
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/contacts.php:818
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/settings.php:816
-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/contacts.php:864
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:822
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/contacts.php:874
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/settings.php:828
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/contacts.php:881
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/settings.php:830
-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/contacts.php:915
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/settings.php:833
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
+#: mod/contacts.php:919
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/settings.php:842 mod/settings.php:843
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: mod/contacts.php:923
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/contacts.php:993
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/settings.php:842 mod/settings.php:843
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/contacts.php:1001
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/settings.php:843
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/contacts.php:1009
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/settings.php:879
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/contacts.php:1017
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/settings.php:891
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:134
+#: mod/profiles.php:180 mod/profiles.php:619
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/settings.php:892
+#: mod/dfrn_confirm.php:127
 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."
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: mod/settings.php:893
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/settings.php:895
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/settings.php:896
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/settings.php:897
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/settings.php:897 mod/settings.php:902
-msgid "None"
-msgstr "Keine"
+#: mod/dfrn_confirm.php:281
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: mod/settings.php:898
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: mod/settings.php:899
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/settings.php:900
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/settings.php:901
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/dfrn_confirm.php:569
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: mod/settings.php:902
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/dfrn_confirm.php:580
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: mod/settings.php:902
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/dfrn_confirm.php:601
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: mod/settings.php:903
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/dfrn_confirm.php:615
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: mod/settings.php:934 mod/admin.php:862
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/dfrn_confirm.php:635
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: mod/settings.php:994
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/dfrn_confirm.php:646
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: mod/settings.php:1000 mod/settings.php:1023
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/dfrn_confirm.php:708
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: mod/settings.php:1001
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/dfrn_confirm.php:780
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/settings.php:1002
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/editpost.php:17 mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: mod/settings.php:1002
-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/editpost.php:32
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: mod/settings.php:1003
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/events.php:100 mod/events.php:102
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/settings.php:1003
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
+#: mod/events.php:109 mod/events.php:111
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/settings.php:1004
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/events.php:388
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/settings.php:1004 mod/settings.php:1005
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/events.php:489
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/settings.php:1005
-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/events.php:490
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/settings.php:1006
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/events.php:491 mod/events.php:492
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/settings.php:1007
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/events.php:491 mod/events.php:503 mod/profiles.php:708
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/settings.php:1008
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/events.php:493 mod/events.php:509
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/settings.php:1009
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/events.php:495 mod/events.php:496
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/settings.php:1010
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/events.php:497 mod/events.php:510
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/settings.php:1011
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
+#: mod/events.php:499
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/settings.php:1012
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/events.php:503 mod/events.php:505
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/settings.php:1012
-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/events.php:506 mod/events.php:507
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/settings.php:1014
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+#: mod/fbrowser.php:132
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/settings.php:1015
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/friendica.php:72
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/settings.php:1016
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/friendica.php:73
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: mod/settings.php:1017 view/theme/frio/config.php:61
-#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
-#: view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: 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/settings.php:1099
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/settings.php:1100
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/settings.php:1101
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/friendica.php:78
+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/settings.php:1108
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/friendica.php:92
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps:"
 
-#: mod/settings.php:1109
-msgid "This account is a regular personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/friendica.php:105
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/settings.php:1112
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/item.php:118
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/settings.php:1113
-msgid "This account is a profile for an organisation"
-msgstr "Diese Konto ist ein Profil für eine Organisation"
+#: mod/item.php:336
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/settings.php:1116
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/item.php:889
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/settings.php:1117
-msgid "This account is a news account/reflector"
-msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
+#: mod/item.php:979
+#, 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."
 
-#: mod/settings.php:1120
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+#: mod/item.php:981
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/settings.php:1121
+#: mod/item.php:982
 msgid ""
-"This account is a community forum where people can discuss with each other"
-msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
+"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/settings.php:1124
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/item.php:986
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/settings.php:1125
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/message.php:60 mod/wallmessage.php:50
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/settings.php:1128
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/message.php:64
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/settings.php:1129
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: mod/message.php:67 mod/wallmessage.php:56
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/settings.php:1132
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
+#: mod/message.php:70 mod/wallmessage.php:59
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/settings.php:1133
-msgid "Automatically approve all contact requests"
-msgstr "Bestätige alle Kontaktanfragen automatisch"
+#: mod/message.php:73 mod/wallmessage.php:62
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/settings.php:1136
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/settings.php:1137
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: mod/message.php:224
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/settings.php:1140
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/settings.php:1141
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: mod/message.php:322 mod/wallmessage.php:126
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: mod/settings.php:1153
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/message.php:323 mod/message.php:510 mod/wallmessage.php:128
+msgid "To:"
+msgstr "An:"
 
-#: mod/settings.php:1153
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: mod/message.php:328 mod/message.php:512 mod/wallmessage.php:129
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/settings.php:1163
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: mod/message.php:364
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/settings.php:1169
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/settings.php:1177
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: mod/message.php:477
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/settings.php:1181
+#: mod/message.php:503 mod/message.php:583
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
+
+#: mod/message.php:505
 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"
+"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/settings.php:1186
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/settings.php:1192
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/message.php:553
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/settings.php:1198
-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/message.php:555
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/settings.php:1204
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/message.php:557
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/settings.php:1212
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/message.php:586
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/settings.php:1220
+#: mod/message.php:589
 #, 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:1227
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/settings.php:1227
-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/p.php:9
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: mod/settings.php:1228
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/ping.php:270
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/settings.php:1229
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/ping.php:285
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/settings.php:1230
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/ping.php:300
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/settings.php:1231
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/wallmessage.php:42 mod/wallmessage.php:106
+#, 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/settings.php:1232
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/wallmessage.php:53
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: mod/settings.php:1233
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/wallmessage.php:80 mod/wallmessage.php:89
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: mod/settings.php:1234
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/wallmessage.php:127
+#, 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/settings.php:1262
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/photos.php:90 mod/photos.php:1876
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/settings.php:1270
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/photos.php:93 mod/photos.php:1303 mod/photos.php:1878
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/settings.php:1272
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: mod/photos.php:171
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/settings.php:1273
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/photos.php:192
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/settings.php:1273 mod/settings.php:1274
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: mod/photos.php:225 mod/photos.php:237 mod/photos.php:1247
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/settings.php:1274
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/photos.php:235
+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/settings.php:1278
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/photos.php:317 mod/photos.php:328 mod/photos.php:1563
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/settings.php:1280
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/photos.php:326
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/settings.php:1281
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/photos.php:705
+#, 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/settings.php:1282
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/photos.php:705
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/settings.php:1282
-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/photos.php:811
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/settings.php:1283
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: mod/photos.php:974
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/settings.php:1284
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/photos.php:1134
+#, 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/settings.php:1287
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/photos.php:1168
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/settings.php:1289
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/photos.php:1172 mod/photos.php:1242
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/settings.php:1289 mod/settings.php:1319
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/photos.php:1173
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/settings.php:1290
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/photos.php:1174
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/settings.php:1291
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: mod/photos.php:1187
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/settings.php:1302
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/photos.php:1188
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/settings.php:1303
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/photos.php:1254
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/settings.php:1307
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/photos.php:1260
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/settings.php:1319
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/photos.php:1262
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/settings.php:1322
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/photos.php:1289 mod/photos.php:1861
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/settings.php:1323
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/photos.php:1335
+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:1324
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/photos.php:1337
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/settings.php:1325
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/photos.php:1395
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/settings.php:1326
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
+#: mod/photos.php:1395
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/settings.php:1327
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/photos.php:1396
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/settings.php:1328
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/photos.php:1421
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/settings.php:1329
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/photos.php:1507
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/settings.php:1330
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/photos.php:1510
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/settings.php:1331
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/photos.php:1549
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/settings.php:1332
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/photos.php:1550
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/settings.php:1333
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/photos.php:1551
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/settings.php:1334
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/photos.php:1551
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/settings.php:1335
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/photos.php:1552
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/settings.php:1337
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/photos.php:1553
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/settings.php:1337
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/photos.php:1554
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/settings.php:1339
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/photos.php:1569
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/settings.php:1341
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: mod/photos.php:1570
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/settings.php:1343
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/photos.php:1792
+msgid "Map"
+msgstr "Karte"
 
-#: mod/settings.php:1344
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: mod/settings.php:1347
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:523
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: mod/settings.php:1348
-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/dfrn_request.php:129 mod/dfrn_request.php:528
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: mod/settings.php:1349
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:531
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:535
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/dfrn_request.php:225
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/dfrn_request.php:253
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/dfrn_request.php:280
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
 
-#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: mod/dfrn_request.php:281
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: mod/wall_attach.php:94
-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/dfrn_request.php:282
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: mod/dfrn_request.php:344
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: mod/dfrn_request.php:353
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: mod/dfrn_request.php:378
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/dfrn_request.php:481
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/admin.php:156 mod/admin.php:954
-msgid "Site"
-msgstr "Seite"
+#: mod/dfrn_request.php:485
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
 
-#: mod/admin.php:157 mod/admin.php:898 mod/admin.php:1404 mod/admin.php:1420
-msgid "Users"
-msgstr "Nutzer"
+#: mod/dfrn_request.php:506
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/admin.php:159 mod/admin.php:1780 mod/admin.php:1830
-msgid "Themes"
-msgstr "Themen"
+#: mod/dfrn_request.php:609
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/dfrn_request.php:651
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
+msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
 
-#: mod/admin.php:162 mod/admin.php:406
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/dfrn_request.php:672
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/admin.php:163 mod/admin.php:372
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/dfrn_request.php:682
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1904
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/dfrn_request.php:696 mod/dfrn_request.php:713
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: mod/admin.php:178 mod/admin.php:1972
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/dfrn_request.php:708
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/dfrn_request.php:711
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/dfrn_request.php:712
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/dfrn_request.php:843
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
+
+#: mod/dfrn_request.php:867
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
+"join us today</a>."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/dfrn_request.php:872
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/dfrn_request.php:873
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: mod/admin.php:306
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/dfrn_request.php:882
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/admin.php:365
+#: mod/dfrn_request.php:884
+#, php-format
 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."
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
 
-#: mod/admin.php:366
-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/install.php:140
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:484 mod/admin.php:953
-#: mod/admin.php:1403 mod/admin.php:1521 mod/admin.php:1581 mod/admin.php:1779
-#: mod/admin.php:1829 mod/admin.php:1903 mod/admin.php:1971
-msgid "Administration"
-msgstr "Administration"
+#: mod/install.php:146
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/admin.php:378
-#, 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/install.php:150
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/admin.php:408
-msgid "ID"
-msgstr "ID"
+#: mod/install.php:156
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/admin.php:409
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/install.php:161
+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:410
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/install.php:162 mod/install.php:234 mod/install.php:609
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/admin.php:412
-msgid "Created"
-msgstr "Erstellt"
+#: mod/install.php:174
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/admin.php:413
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/install.php:231
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/admin.php:414
+#: mod/install.php:236
+msgid "Check again"
+msgstr "Noch einmal testen"
+
+#: mod/install.php:255
+msgid "Database connection"
+msgstr "Datenbankverbindung"
+
+#: mod/install.php:256
 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."
+"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:439
-#, php-format
+#: mod/install.php:257
 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 "
-"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
-"Friendica installation.<br />"
-msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
+"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:444
+#: mod/install.php:258
 msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
-msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
+"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:448 mod/admin.php:1352
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/install.php:262
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/admin.php:449 mod/admin.php:1353
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: mod/install.php:263
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/admin.php:450 mod/admin.php:1354
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: mod/install.php:264
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/admin.php:451 mod/admin.php:1355
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/install.php:264
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
 
-#: mod/admin.php:452
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/install.php:265
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/admin.php:453
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: mod/install.php:266 mod/install.php:307
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/admin.php:479
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/install.php:266 mod/install.php:307
+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/admin.php:485
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/install.php:270 mod/install.php:310
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/admin.php:488
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/install.php:297
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/admin.php:490
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/install.php:311
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/admin.php:491
-msgid "Version"
-msgstr "Version"
+#: mod/install.php:311
+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/admin.php:496
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/install.php:351
+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/admin.php:521
-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/install.php:352
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/admin.php:826
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "RINO2 benötigt die PHP Extension mcrypt."
+#: mod/install.php:356
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/admin.php:834
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/install.php:356
+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/admin.php:881
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/install.php:361
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/admin.php:882
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/install.php:370
+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/admin.php:883
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/install.php:371
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/admin.php:888 mod/contacts.php:530
-msgid "Never"
-msgstr "Niemals"
+#: mod/install.php:373
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/admin.php:889
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/install.php:384
+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/admin.php:897 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/install.php:385
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/admin.php:899
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/install.php:387
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/admin.php:900
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/install.php:410
+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/admin.php:904
-msgid "One month"
-msgstr "ein Monat"
+#: mod/install.php:411
+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/admin.php:905
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/install.php:413
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/admin.php:906
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/install.php:420
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/admin.php:907
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/install.php:421
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/admin.php:912
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/install.php:422
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/admin.php:935
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/install.php:423
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: mod/admin.php:936
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/install.php:424
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/admin.php:937
-msgid "Open"
-msgstr "Offen"
+#: mod/install.php:425
+msgid "mcrypt PHP module"
+msgstr "PHP mcrypt Modul"
 
-#: mod/admin.php:941
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/install.php:426
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
+
+#: mod/install.php:427
+msgid "iconv module"
+msgstr "iconv module"
+
+#: mod/install.php:431 mod/install.php:433
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
+
+#: mod/install.php:431
+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/admin.php:942
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/install.php:439
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: mod/admin.php:943
-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/install.php:443
+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/admin.php:957
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/install.php:447
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:958
-msgid "Policies"
-msgstr "Regeln"
+#: mod/install.php:451
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:960
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/install.php:455
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: mod/admin.php:961
-msgid "Performance"
-msgstr "Performance"
+#: mod/install.php:459
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
 
-#: mod/admin.php:962
-msgid "Worker"
-msgstr "Worker"
+#: mod/install.php:463
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:963
+#: mod/install.php:472
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
+msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
 
-#: mod/admin.php:966
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/install.php:475
+msgid ""
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
+msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
 
-#: mod/admin.php:967
-msgid "Host name"
-msgstr "Host Name"
+#: mod/install.php:477
+msgid "mcrypt_create_iv() function"
+msgstr "mcrypt_create_iv() function"
 
-#: mod/admin.php:968
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/install.php:485
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/admin.php:968
+#: mod/install.php:500
 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."
+"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/admin.php:969
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/install.php:501
+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/admin.php:970
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/install.php:502
+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/admin.php:970
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/install.php:503
+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/admin.php:971
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/install.php:506
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/admin.php:971
-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/install.php:516
+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/admin.php:972
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/install.php:517
+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/admin.php:972
-#, php-format
+#: mod/install.php:518
 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."
+"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/admin.php:973
-msgid "System language"
-msgstr "Systemsprache"
+#: mod/install.php:519
+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/admin.php:974
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/install.php:522
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/admin.php:974
+#: mod/install.php:538
 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>"
+"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/admin.php:975
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/install.php:540
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/admin.php:975
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/install.php:559
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/admin.php:976
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/install.php:561
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/admin.php:976
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/install.php:563
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/admin.php:977
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/install.php:570
+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/admin.php:977
+#: mod/install.php:607
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
+
+#: mod/install.php:608
 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."
+"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/admin.php:978
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: mod/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/admin.php:978
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: mod/profiles.php:56 mod/profiles.php:90
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/admin.php:979
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/profiles.php:75 mod/profiles.php:118
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/admin.php:979
-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/profiles.php:96
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/admin.php:980
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: mod/profiles.php:190
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/admin.php:980
-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/profiles.php:338
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/admin.php:981
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/profiles.php:342
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/admin.php:981
-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/profiles.php:354
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/admin.php:982
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/profiles.php:357
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/admin.php:982
-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/profiles.php:361
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/admin.php:983
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/profiles.php:365
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/admin.php:983
-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/profiles.php:369
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/admin.php:985
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/profiles.php:373
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:986
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/profiles.php:377
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/admin.php:986
-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/profiles.php:381 mod/profiles.php:694
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/admin.php:987
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/profiles.php:385
+msgid "Address"
+msgstr "Adresse"
+
+#: mod/profiles.php:392 mod/profiles.php:690
+msgid "Location"
+msgstr "Wohnort"
+
+#: mod/profiles.php:477
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
+
+#: mod/profiles.php:565
+msgid " and "
+msgstr " und "
 
-#: mod/admin.php:987
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/admin.php:988
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/profiles.php:576
+#, 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/admin.php:988
-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/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/admin.php:989
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/profiles.php:580
+#, 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/admin.php:989
-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/profiles.php:637
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/admin.php:990
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/profiles.php:642
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/admin.php:990
-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."
+#: mod/profiles.php:666
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/admin.php:991
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/profiles.php:678
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/admin.php:991
-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/profiles.php:679
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/admin.php:992
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/profiles.php:681
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/admin.php:992
-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/profiles.php:682
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/admin.php:993
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/profiles.php:684
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/admin.php:993
-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/profiles.php:685
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/admin.php:994
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: mod/profiles.php:686
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/admin.php:994
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: mod/profiles.php:688
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/admin.php:995
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/profiles.php:689
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/admin.php:995
-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/profiles.php:691
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/admin.php:996
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/profiles.php:692
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/admin.php:996
-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/profiles.php:693
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:997
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/profiles.php:696
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/admin.php:997
-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/profiles.php:700
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/admin.php:998
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/profiles.php:701
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/admin.php:998
-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/profiles.php:703
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/admin.php:999
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/profiles.php:708
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/admin.php:999
+#: mod/profiles.php:710
 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."
+"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/admin.php:1000
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/profiles.php:711
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/admin.php:1000
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/profiles.php:712
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/admin.php:1001
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/profiles.php:715
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/admin.php:1001
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/profiles.php:716
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/admin.php:1002
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/profiles.php:717
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/admin.php:1002
-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/profiles.php:718
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/admin.php:1003
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: mod/profiles.php:719
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/admin.php:1003
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: mod/profiles.php:723
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/admin.php:1004
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/profiles.php:723
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:1004
-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/profiles.php:724
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/admin.php:1005
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
+
+#: mod/profiles.php:727
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/admin.php:1005
+#: mod/profiles.php:727
 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 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/admin.php:1006
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/profiles.php:728
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/admin.php:1006
-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/profiles.php:731
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
+
+#: mod/profiles.php:732
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/admin.php:1007
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: mod/profiles.php:732
+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/admin.php:1007
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
+#: mod/profiles.php:733
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/admin.php:1008
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/profiles.php:733
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: mod/admin.php:1008
-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/profiles.php:736
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/admin.php:1009
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/profiles.php:737
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/admin.php:1011
-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/profiles.php:738
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/admin.php:1012
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/profiles.php:739
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/admin.php:1012
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/profiles.php:740
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/admin.php:1013
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/profiles.php:741
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/admin.php:1013
-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/profiles.php:742
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/admin.php:1014
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: mod/profiles.php:743
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/admin.php:1014
-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/profiles.php:744
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/admin.php:1015
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/profiles.php:788
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/admin.php:1016
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/display.php:479
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: mod/admin.php:1017
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/admin.php:92
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/admin.php:1017
-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:157 mod/admin.php:975
+msgid "Site"
+msgstr "Seite"
 
-#: mod/admin.php:1018
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: mod/admin.php:158 mod/admin.php:909 mod/admin.php:1425 mod/admin.php:1441
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/admin.php:1018
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+#: mod/admin.php:160 mod/admin.php:1813 mod/admin.php:1863
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/admin.php:1019
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: mod/admin.php:162
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/admin.php:1019
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+#: mod/admin.php:163 mod/admin.php:407
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/admin.php:1020
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/admin.php:164 mod/admin.php:373
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/admin.php:1020
-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:178 mod/admin.php:189 mod/admin.php:1937
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/admin.php:1021
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/admin.php:179 mod/admin.php:2005
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/admin.php:1021
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/admin.php:180
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/admin.php:1022
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/admin.php:181
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/admin.php:1022
-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:188
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/admin.php:1023
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/admin.php:190
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/admin.php:1023
-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:191
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/admin.php:1025
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
+#: mod/admin.php:307
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/admin.php:1025
+#: mod/admin.php:366
 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:1026
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+"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:1026
-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:367
+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:1027
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/admin.php:372 mod/admin.php:406 mod/admin.php:485 mod/admin.php:974
+#: mod/admin.php:1424 mod/admin.php:1542 mod/admin.php:1605 mod/admin.php:1812
+#: mod/admin.php:1862 mod/admin.php:1936 mod/admin.php:2004
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/admin.php:1027
-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:379
+#, 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:1028
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/admin.php:409
+msgid "ID"
+msgstr "ID"
 
-#: mod/admin.php:1028
-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:410
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/admin.php:1029
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/admin.php:411
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/admin.php:1029
-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:413
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/admin.php:1031
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/admin.php:414
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/admin.php:1031
+#: mod/admin.php:415
 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."
+"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/admin.php:1033
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: mod/admin.php:440
+#, 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 "
+"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
+"Friendica installation.<br />"
+msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
 
-#: mod/admin.php:1033
+#: mod/admin.php:445
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
 
-#: mod/admin.php:1034
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: mod/admin.php:449 mod/admin.php:1373
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/admin.php:1034
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: mod/admin.php:450 mod/admin.php:1374
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: mod/admin.php:1035
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/admin.php:451 mod/admin.php:1375
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: mod/admin.php:1035
-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:452 mod/admin.php:1376
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/admin.php:1036
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/admin.php:453
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/admin.php:1036
-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:454
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/admin.php:1037
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/admin.php:480
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/admin.php:1037
-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:486
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/admin.php:1038
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/admin.php:489
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/admin.php:1038
-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:491
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/admin.php:1039
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: mod/admin.php:492
+msgid "Version"
+msgstr "Version"
 
-#: mod/admin.php:1039
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
+#: mod/admin.php:497
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/admin.php:1040
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/admin.php:522
+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:1040
-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/admin.php:827
+msgid "RINO2 needs mcrypt php extension to work."
+msgstr "RINO2 benötigt die PHP Extension mcrypt."
 
-#: mod/admin.php:1041
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/admin.php:835
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/admin.php:1041
-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/admin.php:892
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/admin.php:1042
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/admin.php:893
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/admin.php:1042
-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:894
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/admin.php:1043
-msgid "Enable old style pager"
-msgstr "Den Old-Style Pager aktiviren"
+#: mod/admin.php:900
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/admin.php:1043
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
+#: mod/admin.php:910
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/admin.php:1044
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/admin.php:911
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/admin.php:1044
-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:915
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/admin.php:1046
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/admin.php:916
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/admin.php:1046
-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."
+#: mod/admin.php:917
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/admin.php:1048
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/admin.php:918
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/admin.php:1048
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/admin.php:923
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/admin.php:1049
-msgid "Embedly API key"
-msgstr "Embedly  API Schlüssel"
+#: mod/admin.php:946
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/admin.php:1049
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
+#: mod/admin.php:947
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/admin.php:1051
-msgid "Enable 'worker' background processing"
-msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
+#: mod/admin.php:948
+msgid "Open"
+msgstr "Offen"
 
-#: mod/admin.php:1051
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
+#: mod/admin.php:952
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/admin.php:1052
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/admin.php:953
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/admin.php:1052
-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:954
+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:1053
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/admin.php:978
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/admin.php:1053
-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/admin.php:979
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/admin.php:1054
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/admin.php:981
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/admin.php:1054
-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/admin.php:982
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/admin.php:1055
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/admin.php:983
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/admin.php:1055
+#: mod/admin.php:984
 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 yourdomain.tld/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. The worker background process needs to be activated for "
-"this."
-msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/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. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/admin.php:1084
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/admin.php:987
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/admin.php:1092
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/admin.php:988
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/admin.php:1095
-#, 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:989
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/admin.php:1107
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/admin.php:989
+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:1110
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/admin.php:990
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/admin.php:1114
-#, 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:991
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/admin.php:1116
-#, 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:991
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/admin.php:1135
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/admin.php:992
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/admin.php:1136
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/admin.php:992
+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:1141
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/admin.php:993
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1142
+#: mod/admin.php:993
+#, php-format
 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."
+"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:1143
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/admin.php:994
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/admin.php:1144
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/admin.php:995
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/admin.php:1178
-#, php-format
+#: mod/admin.php:995
 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."
+"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:1181
-#, 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/admin.php:996
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/admin.php:1225
-#, 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:996
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/admin.php:1232
-#, 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:997
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/admin.php:1279
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/admin.php:997
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/admin.php:998
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/admin.php:1287
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: mod/admin.php:998
+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:1396 mod/admin.php:1422
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/admin.php:999
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/admin.php:999
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: mod/admin.php:1396 mod/admin.php:1422
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/admin.php:1000
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/admin.php:1405
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/admin.php:1000
+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:1406
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/admin.php:1001
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/admin.php:1407
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/admin.php:1001
+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:1408
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/admin.php:1002
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/admin.php:1409
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/admin.php:1002
+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:1410
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/admin.php:1003
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/admin.php:1411
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/admin.php:1003
+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:1413
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/admin.php:1004
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/admin.php:1415 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Block"
-msgstr "Sperren"
+#: mod/admin.php:1004
+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:1416 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:983
-msgid "Unblock"
-msgstr "Entsperren"
+#: mod/admin.php:1006
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/admin.php:1417
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/admin.php:1007
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/admin.php:1418
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/admin.php:1007
+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:1421
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/admin.php:1008
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/admin.php:1422
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/admin.php:1008
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/admin.php:1427
-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:1009
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/admin.php:1428
+#: mod/admin.php:1009
 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?"
+"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:1010
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/admin.php:1438
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/admin.php:1010
+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:1439
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/admin.php:1011
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/admin.php:1439
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/admin.php:1011
+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."
 
-#: mod/admin.php:1440
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/admin.php:1012
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/admin.php:1483
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: mod/admin.php:1012
+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:1487
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: mod/admin.php:1013
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/admin.php:1498 mod/admin.php:1734
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/admin.php:1013
+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:1500 mod/admin.php:1736
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/admin.php:1014
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/admin.php:1523 mod/admin.php:1781
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/admin.php:1014
+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:1531 mod/admin.php:1790
-msgid "Author: "
-msgstr "Autor:"
+#: mod/admin.php:1015
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/admin.php:1532 mod/admin.php:1791
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/admin.php:1015
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/admin.php:1584
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/admin.php:1016
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/admin.php:1589
-#, php-format
+#: mod/admin.php:1016
 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."
+"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:1694
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/admin.php:1017
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/admin.php:1772
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/admin.php:1017
+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:1832
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/admin.php:1018
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/admin.php:1837
-#, 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:1018
+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:1838
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/admin.php:1019
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/admin.php:1839
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/admin.php:1019
+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:1863
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/admin.php:1020
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/admin.php:1895
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/admin.php:1020
+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:1897
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/admin.php:1021
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/admin.php:1906
-msgid "Clear"
-msgstr "löschen"
+#: mod/admin.php:1021
+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:1911
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/admin.php:1022
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/admin.php:1912
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/admin.php:1022
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
+
+#: mod/admin.php:1023
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/admin.php:1912
+#: mod/admin.php:1023
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+"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:1913
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/admin.php:1024
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: mod/admin.php:1916
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/admin.php:1024
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: mod/admin.php:1917
-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."
+#: mod/admin.php:1025
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: mod/admin.php:2045
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/admin.php:1025
+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:2053
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/admin.php:1026
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: mod/admin.php:1026
+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."
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/admin.php:1027
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/admin.php:1027
+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/contacts.php:206
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/admin.php:1028
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: mod/contacts.php:208 mod/dfrn_request.php:583
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: mod/admin.php:1028
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/admin.php:1029
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/admin.php:1029
+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/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/admin.php:1030
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/admin.php:1032
+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/contacts.php:412
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/admin.php:1033
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/admin.php:1033
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: mod/admin.php:1034
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/admin.php:1034
+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/contacts.php:457
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/admin.php:1035
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/admin.php:1035
+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/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/admin.php:1036
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: mod/admin.php:1037
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: mod/admin.php:1038
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/admin.php:1038
+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/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/admin.php:1039
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: mod/contacts.php:536 mod/contacts.php:964
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/admin.php:1039
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: mod/admin.php:1040
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/admin.php:1040
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/admin.php:1041
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/admin.php:1041
+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/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/admin.php:1042
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr "Kontakt"
+#: mod/admin.php:1042
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/admin.php:1043
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/contacts.php:579
-#, php-format
+#: mod/admin.php:1043
 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."
+"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/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/admin.php:1044
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/admin.php:1044
+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/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/admin.php:1046
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/admin.php:1046
+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/contacts.php:589
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/admin.php:1047
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/admin.php:1047
+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:596
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/admin.php:1048
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/admin.php:1048
+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:600 mod/contacts.php:974
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: mod/admin.php:1049
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:991
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/admin.php:1049
+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:610
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/admin.php:1050
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/admin.php:1050
+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:612
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/admin.php:1052
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/contacts.php:613
+#: mod/admin.php:1052
 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"
+"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:614
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/admin.php:1054
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: mod/contacts.php:614
-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:1054
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/admin.php:1055
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: mod/contacts.php:617
-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:1055
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: mod/contacts.php:635
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/admin.php:1056
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/admin.php:1056
+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:684
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/admin.php:1057
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/admin.php:1057
+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:695
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1058
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/admin.php:1058
+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:703
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/admin.php:1059
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/admin.php:1059
+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:712
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/admin.php:1060
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/admin.php:1060
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
+msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/admin.php:1061
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/admin.php:1061
+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:730
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/admin.php:1062
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/admin.php:1062
+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:739
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/admin.php:1063
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/admin.php:1063
+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:807 mod/contacts.php:999
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/admin.php:1064
+msgid "Enable old style pager"
+msgstr "Den Old-Style Pager aktiviren"
 
-#: mod/contacts.php:807 mod/contacts.php:999
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/admin.php:1064
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/admin.php:1065
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1065
+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:866
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1067
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/admin.php:1067
+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."
 
-#: mod/contacts.php:907
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/admin.php:1069
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
 
-#: mod/contacts.php:911
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/admin.php:1069
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/contacts.php:915
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/admin.php:1070
+msgid "Embedly API key"
+msgstr "Embedly  API Schlüssel"
 
-#: mod/contacts.php:985
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/admin.php:1070
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
+msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
 
-#: mod/contacts.php:993
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/admin.php:1072
+msgid "Enable 'worker' background processing"
+msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
 
-#: mod/contacts.php:1001
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/admin.php:1072
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
+msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
 
-#: mod/contacts.php:1009
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/admin.php:1073
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/dfrn_confirm.php:127
+#: mod/admin.php:1073
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+"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/dfrn_confirm.php:246
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: mod/admin.php:1074
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: mod/dfrn_confirm.php:255 mod/dfrn_confirm.php:260
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: mod/admin.php:1074
+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/dfrn_confirm.php:269
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: mod/admin.php:1075
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
 
-#: mod/dfrn_confirm.php:271 mod/dfrn_confirm.php:285 mod/dfrn_confirm.php:292
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: mod/admin.php:1075
+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/dfrn_confirm.php:283
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: mod/admin.php:1076
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
 
-#: mod/dfrn_confirm.php:290
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: mod/admin.php:1076
+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 yourdomain.tld/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. The worker background process needs to be activated for "
+"this."
+msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte yourdomain.tld/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. Damit diese Option einen Effekt hat, muss der Worker Prozess aktiviert sein."
 
-#: mod/dfrn_confirm.php:419
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: mod/admin.php:1105
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/dfrn_confirm.php:557
+#: mod/admin.php:1113
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/dfrn_confirm.php:567
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: mod/admin.php:1116
+#, 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/dfrn_confirm.php:578
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: mod/admin.php:1128
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/dfrn_confirm.php:599
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: mod/admin.php:1131
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: mod/dfrn_confirm.php:613
+#: mod/admin.php:1135
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: mod/dfrn_confirm.php:633
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
+#: mod/admin.php:1137
+#, 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/dfrn_confirm.php:644
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: mod/admin.php:1156
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/dfrn_confirm.php:703
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: mod/admin.php:1157
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/dfrn_confirm.php:775
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: mod/admin.php:1162
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/admin.php:1163
+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/dfrn_request.php:124 mod/dfrn_request.php:520
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: mod/admin.php:1164
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:525
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: mod/admin.php:1165
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/dfrn_request.php:131 mod/dfrn_request.php:527
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: mod/admin.php:1199
+#, 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:1202
+#, 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/dfrn_request.php:134 mod/dfrn_request.php:530
+#: mod/admin.php:1246
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
-
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: mod/dfrn_request.php:222
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: mod/admin.php:1253
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/dfrn_request.php:250
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/admin.php:1300
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/dfrn_request.php:277
+#: mod/admin.php:1308
 #, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/dfrn_request.php:278
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: mod/admin.php:1308
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/dfrn_request.php:279
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/dfrn_request.php:341
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/dfrn_request.php:350
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/admin.php:1417 mod/admin.php:1443
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/dfrn_request.php:375
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: mod/admin.php:1426
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/dfrn_request.php:478
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/admin.php:1427
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/dfrn_request.php:482
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
+#: mod/admin.php:1428
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/dfrn_request.php:503
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/admin.php:1429
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/dfrn_request.php:604
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: mod/admin.php:1430
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/dfrn_request.php:644
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
-msgstr "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   "
+#: mod/admin.php:1431
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/dfrn_request.php:664
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/admin.php:1432
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/dfrn_request.php:674
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+#: mod/admin.php:1433 mod/notifications.php:176 mod/notifications.php:255
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/dfrn_request.php:688 mod/dfrn_request.php:705
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/admin.php:1434
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/dfrn_request.php:700
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/admin.php:1438
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/dfrn_request.php:703
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: mod/admin.php:1439
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/dfrn_request.php:704
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+#: mod/admin.php:1442
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/dfrn_request.php:833
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
+#: mod/admin.php:1443
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/dfrn_request.php:854
-#, php-format
+#: mod/admin.php:1448
 msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"%s/siteinfo\">follow this link to find a public Friendica site and "
-"join us today</a>."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
-
-#: mod/dfrn_request.php:859
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+"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/dfrn_request.php:860
+#: mod/admin.php:1449
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+"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/dfrn_request.php:861 mod/follow.php:109
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/admin.php:1459
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/dfrn_request.php:862 mod/follow.php:110
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: mod/admin.php:1460
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/dfrn_request.php:866 mod/follow.php:111
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: mod/admin.php:1460
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/dfrn_request.php:869
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/admin.php:1461
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/dfrn_request.php:871
+#: mod/admin.php:1504
 #, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
-
-#: mod/dfrn_request.php:872 mod/follow.php:117
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
-
-#: mod/dfrn_request.php:875 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/admin.php:1508
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/admin.php:1519 mod/admin.php:1767
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
+#: mod/admin.php:1521 mod/admin.php:1769
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."
+#: mod/admin.php:1544 mod/admin.php:1814
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/follow.php:180
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: mod/admin.php:1552 mod/admin.php:1823
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/admin.php:1553 mod/admin.php:1824
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/admin.php:1608
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/admin.php:1613
+#, php-format
+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/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/admin.php:1727
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/install.php:160
-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:1805
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:607
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/admin.php:1865
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/admin.php:1870
+#, 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/install.php:227
-msgid "System check"
-msgstr "Systemtest"
+#: mod/admin.php:1871
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/admin.php:1872
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/admin.php:1896
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/install.php:252
-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:1928
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/install.php:253
-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."
+#: mod/admin.php:1930
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/install.php:254
-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:1939
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/admin.php:1944
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/admin.php:1945
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/admin.php:1945
+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:261
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/admin.php:1946
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/admin.php:1949
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
 
-#: mod/install.php:262 mod/install.php:303
+#: mod/admin.php:1950
 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/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+"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/install.php:293
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/admin.php:2078
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/admin.php:2086
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
-#: mod/install.php:307
-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/viewcontacts.php:75
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: mod/install.php:347
-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/network.php:190 mod/search.php:25
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/install.php:348
+#: mod/network.php:397
+#, php-format
 msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+"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/install.php:352
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/network.php:400
+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/install.php:352
-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/network.php:528
+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/install.php:357
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/network.php:533
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/install.php:366
-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/network.php:827
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/network.php:830
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/network.php:835
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/install.php:380
-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/network.php:838
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/network.php:849
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/network.php:857
+msgid "New"
+msgstr "Neue"
 
-#: mod/install.php:404
-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/network.php:860
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/install.php:405
-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/network.php:868
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/network.php:871
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/network.php:879
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/network.php:882
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/search.php:125
+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/install.php:419
-msgid "mcrypt PHP module"
-msgstr "PHP mcrypt Modul"
+#: mod/search.php:230
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
 
-#: mod/install.php:420
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/install.php:421
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:258
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/notifications.php:105
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/install.php:425
-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/notifications.php:117
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/notifications.php:123
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/install.php:437
-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/notifications.php:152
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: mod/notifications.php:164 mod/notifications.php:228
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/notifications.php:167
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
+#: mod/notifications.php:173 mod/notifications.php:246
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/notifications.php:173 mod/notifications.php:246
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
+#: mod/notifications.php:196
+msgid "yes"
+msgstr "ja"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr "mcrypt_create_iv() function"
+#: mod/notifications.php:196
+msgid "no"
+msgstr "nein"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/notifications.php:197 mod/notifications.php:202
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
 
-#: mod/install.php:494
+#: mod/notifications.php:198 mod/notifications.php:203
+#, php-format
 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."
+"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/install.php:495
+#: mod/notifications.php:199
+#, php-format
 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."
+"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/install.php:496
+#: mod/notifications.php:204
+#, php-format
 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."
+"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/install.php:497
-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/notifications.php:215
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/notifications.php:216
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/install.php:510
-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/notifications.php:216
+msgid "Subscriber"
+msgstr "Abonnent"
+
+#: mod/notifications.php:266
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
+
+#: mod/notifications.php:307
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/install.php:511
-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/notifications.php:307
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: mod/install.php:512
-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/notifications.php:313
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: mod/install.php:513
-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."
+#: object/Item.php:385
+msgid "via"
+msgstr "via"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: view/theme/quattro/config.php:70
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: mod/install.php:532
-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."
+#: view/theme/quattro/config.php:70
+msgid "Left"
+msgstr "Links"
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: view/theme/quattro/config.php:70
+msgid "Center"
+msgstr "Mitte"
 
-#: mod/install.php:552
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: view/theme/quattro/config.php:71 view/theme/clean/config.php:108
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: mod/install.php:555
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: view/theme/quattro/config.php:72
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: mod/install.php:557
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: view/theme/quattro/config.php:73
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: mod/install.php:566
-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."
+#: view/theme/vier/config.php:69
+msgid "Comma separated list of helper forums"
+msgstr "Komma-Separierte Liste der Helfer-Foren"
 
-#: mod/install.php:605
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: view/theme/vier/config.php:115
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: mod/install.php:606
-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."
+#: view/theme/vier/config.php:116
+msgid "Community Pages"
+msgstr "Foren"
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: view/theme/vier/config.php:117 view/theme/vier/theme.php:146
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: mod/item.php:341
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: view/theme/vier/config.php:118
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: mod/item.php:902
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: view/theme/vier/config.php:119 view/theme/vier/theme.php:385
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: mod/item.php:992
-#, 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."
+#: view/theme/vier/config.php:120 view/theme/vier/theme.php:194
+msgid "Find Friends"
+msgstr "Kontakte finden"
 
-#: mod/item.php:994
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: view/theme/vier/config.php:121 view/theme/vier/theme.php:176
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: mod/item.php:995
-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."
+#: view/theme/vier/theme.php:195
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: mod/item.php:999
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: view/theme/vier/theme.php:286
+msgid "Quick Start"
+msgstr "Schnell-Start"
 
-#: mod/network.php:398
-#, 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."
+#: view/theme/duepuntozero/config.php:44
+msgid "greenzero"
+msgstr "greenzero"
 
-#: mod/network.php:401
-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."
+#: view/theme/duepuntozero/config.php:45
+msgid "purplezero"
+msgstr "purplezero"
 
-#: mod/network.php:529
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: view/theme/duepuntozero/config.php:46
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: mod/network.php:534
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: view/theme/duepuntozero/config.php:47
+msgid "darkzero"
+msgstr "darkzero"
 
-#: mod/network.php:826
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: view/theme/duepuntozero/config.php:48
+msgid "comix"
+msgstr "comix"
 
-#: mod/network.php:829
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: view/theme/duepuntozero/config.php:49
+msgid "slackr"
+msgstr "slackr"
 
-#: mod/network.php:834
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: view/theme/duepuntozero/config.php:64
+msgid "Variations"
+msgstr "Variationen"
 
-#: mod/network.php:837
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: view/theme/clean/config.php:61
+msgid "Midnight"
+msgstr "Mitternacht"
 
-#: mod/network.php:848
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: view/theme/clean/config.php:62
+msgid "Zenburn"
+msgstr "Zenburn"
 
-#: mod/network.php:856
-msgid "New"
-msgstr "Neue"
+#: view/theme/clean/config.php:63
+msgid "Bootstrap"
+msgstr "Bootstrap"
 
-#: mod/network.php:859
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: view/theme/clean/config.php:64
+msgid "Shades of Pink"
+msgstr "Shades of Pink"
 
-#: mod/network.php:867
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: view/theme/clean/config.php:65
+msgid "Lime and Orange"
+msgstr "Lime and Orange"
 
-#: mod/network.php:870
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: view/theme/clean/config.php:66
+msgid "GeoCities Retro"
+msgstr "GeoCities Retro"
 
-#: mod/network.php:878
-msgid "Starred"
-msgstr "Markierte"
+#: view/theme/clean/config.php:92
+msgid "Background Image"
+msgstr "Hintergrundbild"
 
-#: mod/network.php:881
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: view/theme/clean/config.php:94
+msgid ""
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
+msgstr "Die URL zum Bild (z.B. aus deinem Foto Album), das als Hintergrundbild verwendet werden soll."
 
-#: mod/ping.php:261
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: view/theme/clean/config.php:99
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
 
-#: mod/ping.php:276
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: view/theme/clean/config.php:101
+msgid "HEX value for the background color. Don't include the #"
+msgstr "HEX Wert der Hintergrundfarbe, ohne das #"
 
-#: mod/ping.php:291
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: view/theme/clean/config.php:115
+msgid "font size"
+msgstr "Zeichengröße"
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: view/theme/clean/config.php:117
+msgid "base font size for your interface"
+msgstr "Basiszeichengröße für das Interface"
 
-#: object/Item.php:370
-msgid "via"
-msgstr "via"
+#: view/theme/clean/config.php:122
+msgid "Display Accesskeys"
+msgstr "Accesskeys anzeigen"
+
+#: view/theme/clean/config.php:124
+msgid ""
+"Diaplay the access keys assigned to some menu element in the web interface."
+msgstr "Einige Menüelemente sind über Accesskeys aufrufbar. Sollen diese angezeigt werden?"
 
 #: view/theme/frio/php/Image.php:23
 msgid "Repeat the image"
@@ -8733,195 +8899,103 @@ msgstr "Größe anpassen - Optimale Größe"
 msgid "Resize to best fit and retain aspect ratio."
 msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
 
-#: view/theme/frio/config.php:42
+#: view/theme/frio/config.php:47
 msgid "Default"
 msgstr "Standard"
 
-#: view/theme/frio/config.php:54
+#: view/theme/frio/config.php:59
 msgid "Note: "
 msgstr "Hinweis:"
 
-#: view/theme/frio/config.php:54
+#: view/theme/frio/config.php:59
 msgid "Check image permissions if all users are allowed to visit the image"
 msgstr "Überprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
 
-#: view/theme/frio/config.php:62
+#: view/theme/frio/config.php:67
 msgid "Select scheme"
 msgstr "Schema auswählen"
 
-#: view/theme/frio/config.php:63
+#: view/theme/frio/config.php:68
 msgid "Navigation bar background color"
 msgstr "Hintergrundfarbe der Navigationsleiste"
 
-#: view/theme/frio/config.php:64
+#: view/theme/frio/config.php:69
 msgid "Navigation bar icon color "
 msgstr "Icon Farbe in der Navigationsleiste"
 
-#: view/theme/frio/config.php:65
+#: view/theme/frio/config.php:70
 msgid "Link color"
 msgstr "Linkfarbe"
 
-#: view/theme/frio/config.php:66
+#: view/theme/frio/config.php:71
 msgid "Set the background color"
 msgstr "Hintergrundfarbe festlegen"
 
-#: view/theme/frio/config.php:67
+#: view/theme/frio/config.php:72
 msgid "Content background transparency"
 msgstr "Transparanz des Hintergrunds von Beiträgem"
 
-#: view/theme/frio/config.php:68
+#: view/theme/frio/config.php:73
 msgid "Set the background image"
 msgstr "Hintergrundbild festlegen"
 
-#: view/theme/frio/theme.php:229
+#: view/theme/frio/theme.php:226
 msgid "Guest"
 msgstr "Gast"
 
-#: view/theme/frio/theme.php:235
+#: view/theme/frio/theme.php:232
 msgid "Visitor"
 msgstr "Besucher"
 
-#: view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
-
-#: view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
-
-#: view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
-
-#: view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
-
-#: view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
-
-#: view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
-
-#: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-msgid "Community Profiles"
-msgstr "Community-Profile"
-
-#: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-msgid "Last users"
-msgstr "Letzte Nutzer"
-
-#: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-msgid "Find Friends"
-msgstr "Kontakte finden"
-
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
-
-#: view/theme/vier/theme.php:291
-msgid "Quick Start"
-msgstr "Schnell-Start"
-
-#: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
-
-#: view/theme/vier/config.php:64
-msgid "Comma separated list of helper forums"
-msgstr "Komma-Separierte Liste der Helfer-Foren"
-
-#: view/theme/vier/config.php:110
-msgid "Set style"
-msgstr "Stil auswählen"
-
-#: view/theme/vier/config.php:111
-msgid "Community Pages"
-msgstr "Foren"
-
-#: view/theme/vier/config.php:113
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
-
-#: view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
-
-#: view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
-
-#: view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
-
-#: view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
-
-#: view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
-
-#: view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
-
-#: view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variationen"
+#: index.php:457
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
 #: boot.php:970
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: boot.php:973
+#: boot.php:972
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:1655
+#: boot.php:1696
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:1767
+#: boot.php:1808
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:1796
+#: boot.php:1837
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:1797
+#: boot.php:1838
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:1800
+#: boot.php:1841
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:1806
+#: boot.php:1847
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:1809
+#: boot.php:1850
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:1810
+#: boot.php:1851
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:1812
+#: boot.php:1853
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:1813
+#: boot.php:1854
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
-
-#: index.php:451
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
index a0dd93da59f7159d357cebb7f6b6df8e62460026..e88b6ff1e412972b07673e571be6556a0b7cd004 100644 (file)
@@ -5,35 +5,6 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Find"] = "Finde";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["%d contact in common"] = array(
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
-);
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["Forums"] = "Foren";
-$a->strings["External link to forum"] = "Externer Link zum Forum";
 $a->strings["Male"] = "Männlich";
 $a->strings["Female"] = "Weiblich";
 $a->strings["Currently Male"] = "Momentan männlich";
@@ -95,108 +66,37 @@ $a->strings["Uncertain"] = "Unsicher";
 $a->strings["It's complicated"] = "Ist kompliziert";
 $a->strings["Don't care"] = "Ist mir nicht wichtig";
 $a->strings["Ask me"] = "Frag mich";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["Forums"] = "Foren";
+$a->strings["External link to forum"] = "Externer Link zum Forum";
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
 $a->strings["Logged out."] = "Abgemeldet.";
 $a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
 $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
 $a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Edit groups"] = "Gruppen bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-Mail";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["GNU Social"] = "GNU Social";
-$a->strings["App.net"] = "App.net";
-$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Close"] = "Schließen";
-$a->strings["photo"] = "Foto";
-$a->strings["status"] = "Status";
-$a->strings["event"] = "Event";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$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["[no subject]"] = "[kein Betreff]";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$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["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       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["Miscellaneous"] = "Verschiedenes";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["year"] = "Jahr";
-$a->strings["years"] = "Jahre";
-$a->strings["month"] = "Monat";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["day"] = "Tag";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
+$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
 $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
 $a->strings["Thank You,"] = "Danke,";
 $a->strings["%s Administrator"] = "der Administrator von %s";
@@ -257,56 +157,38 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D
 $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
 $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
 $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Sun"] = "So";
-$a->strings["Mon"] = "Mo";
-$a->strings["Tue"] = "Di";
-$a->strings["Wed"] = "Mi";
-$a->strings["Thu"] = "Do";
-$a->strings["Fri"] = "Fr";
-$a->strings["Sat"] = "Sa";
-$a->strings["Sunday"] = "Sonntag";
-$a->strings["Monday"] = "Montag";
-$a->strings["Tuesday"] = "Dienstag";
-$a->strings["Wednesday"] = "Mittwoch";
-$a->strings["Thursday"] = "Donnerstag";
-$a->strings["Friday"] = "Freitag";
-$a->strings["Saturday"] = "Samstag";
-$a->strings["Jan"] = "Jan";
-$a->strings["Feb"] = "Feb";
-$a->strings["Mar"] = "März";
-$a->strings["Apr"] = "Apr";
-$a->strings["May"] = "Mai";
-$a->strings["Jun"] = "Jun";
-$a->strings["Jul"] = "Juli";
-$a->strings["Aug"] = "Aug";
-$a->strings["Sept"] = "Sep";
-$a->strings["Oct"] = "Okt";
-$a->strings["Nov"] = "Nov";
-$a->strings["Dec"] = "Dez";
-$a->strings["January"] = "Januar";
-$a->strings["February"] = "Februar";
-$a->strings["March"] = "März";
-$a->strings["April"] = "April";
-$a->strings["June"] = "Juni";
-$a->strings["July"] = "Juli";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "Oktober";
-$a->strings["November"] = "November";
-$a->strings["December"] = "Dezember";
-$a->strings["today"] = "Heute";
-$a->strings["all-day"] = "ganztägig";
-$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Export"] = "Exportieren";
-$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
-$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$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["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Edit groups"] = "Gruppen bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["add"] = "hinzufügen";
+$a->strings["photo"] = "Foto";
+$a->strings["status"] = "Status";
+$a->strings["event"] = "Event";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$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["[no subject]"] = "[kein Betreff]";
 $a->strings["Nothing new here"] = "Keine Neuigkeiten";
 $a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
 $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
@@ -326,7 +208,6 @@ $a->strings["Personal notes"] = "Persönliche Notizen";
 $a->strings["Your personal notes"] = "Deine persönlichen Notizen";
 $a->strings["Login"] = "Anmeldung";
 $a->strings["Sign in"] = "Anmelden";
-$a->strings["Home"] = "Pinnwand";
 $a->strings["Home Page"] = "Homepage";
 $a->strings["Register"] = "Registrieren";
 $a->strings["Create an account"] = "Nutzerkonto erstellen";
@@ -347,11 +228,9 @@ $a->strings["Directory"] = "Verzeichnis";
 $a->strings["People directory"] = "Nutzerverzeichnis";
 $a->strings["Information"] = "Information";
 $a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Network"] = "Netzwerk";
 $a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
 $a->strings["Network Reset"] = "Netzwerk zurücksetzen";
 $a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Introductions"] = "Kontaktanfragen";
 $a->strings["Friend Requests"] = "Kontaktanfragen";
 $a->strings["Notifications"] = "Benachrichtigungen";
 $a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
@@ -375,52 +254,64 @@ $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["Contact Photos"] = "Kontaktbilder";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$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["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["System"] = "System";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$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["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["View Contact"] = "Kontakt anzeigen";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Poke"] = "Anstupsen";
-$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["Image/photo"] = "Bild/Foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
-$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       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["Post to Email"] = "An E-Mail senden";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Close"] = "Schließen";
 $a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
 $a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
 $a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
@@ -449,6 +340,14 @@ $a->strings["Please wait"] = "Bitte warten";
 $a->strings["remove"] = "löschen";
 $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
 $a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["View Contact"] = "Kontakt anzeigen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
 $a->strings["%s likes this."] = "%s mag das.";
 $a->strings["%s doesn't like this."] = "%s mag das nicht.";
 $a->strings["%s attends."] = "%s nimmt teil.";
@@ -514,7 +413,7 @@ $a->strings["Not Attending"] = array(
        0 => "Nicht teilnehmend ",
        1 => "Nicht teilnehmend",
 );
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["(no subject)"] = "(kein Betreff)";
 $a->strings["General Features"] = "Allgemeine Features";
 $a->strings["Multiple Profiles"] = "Mehrere Profile";
 $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
@@ -523,8 +422,6 @@ $a->strings["Photo metadata is normally stripped. This extracts the location (if
 $a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
 $a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den öffentlichen Kalender herunter zu laden";
 $a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
 $a->strings["Post Preview"] = "Beitragsvorschau";
 $a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
 $a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
@@ -556,6 +453,7 @@ $a->strings["Tagging"] = "Tagging";
 $a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
 $a->strings["Post Categories"] = "Beitragskategorien";
 $a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
 $a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
 $a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
 $a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
@@ -565,18 +463,140 @@ $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stum
 $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
 $a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$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["Contact Photos"] = "Kontaktbilder";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["year"] = "Jahr";
+$a->strings["years"] = "Jahre";
+$a->strings["month"] = "Monat";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["day"] = "Tag";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Sun"] = "So";
+$a->strings["Mon"] = "Mo";
+$a->strings["Tue"] = "Di";
+$a->strings["Wed"] = "Mi";
+$a->strings["Thu"] = "Do";
+$a->strings["Fri"] = "Fr";
+$a->strings["Sat"] = "Sa";
+$a->strings["Sunday"] = "Sonntag";
+$a->strings["Monday"] = "Montag";
+$a->strings["Tuesday"] = "Dienstag";
+$a->strings["Wednesday"] = "Mittwoch";
+$a->strings["Thursday"] = "Donnerstag";
+$a->strings["Friday"] = "Freitag";
+$a->strings["Saturday"] = "Samstag";
+$a->strings["Jan"] = "Jan";
+$a->strings["Feb"] = "Feb";
+$a->strings["Mar"] = "März";
+$a->strings["Apr"] = "Apr";
+$a->strings["May"] = "Mai";
+$a->strings["Jun"] = "Jun";
+$a->strings["Jul"] = "Juli";
+$a->strings["Aug"] = "Aug";
+$a->strings["Sept"] = "Sep";
+$a->strings["Oct"] = "Okt";
+$a->strings["Nov"] = "Nov";
+$a->strings["Dec"] = "Dez";
+$a->strings["January"] = "Januar";
+$a->strings["February"] = "Februar";
+$a->strings["March"] = "März";
+$a->strings["April"] = "April";
+$a->strings["June"] = "Juni";
+$a->strings["July"] = "Juli";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "Oktober";
+$a->strings["November"] = "November";
+$a->strings["December"] = "Dezember";
+$a->strings["today"] = "Heute";
+$a->strings["all-day"] = "ganztägig";
+$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Export"] = "Exportieren";
+$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
+$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-Mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["GNU Social"] = "GNU Social";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Find"] = "Finde";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["%d contact in common"] = array(
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
+);
+$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["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
 $a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
 $a->strings["Edit profile"] = "Profil bearbeiten";
@@ -630,18 +650,6 @@ $a->strings["Profile Details"] = "Profildetails";
 $a->strings["Photo Albums"] = "Fotoalben";
 $a->strings["Personal Notes"] = "Persönliche Notizen";
 $a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$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["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$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["prev"] = "vorige";
@@ -701,94 +709,167 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "Beitrag";
 $a->strings["Item filed"] = "Beitrag abgelegt";
-$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["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$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["\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["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
+$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$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.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["No"] = "Nein";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
 $a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$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["Not available."] = "Nicht verfügbar.";
 $a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
-$a->strings["Results for: %s"] = "Ergebnisse für: %s";
-$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["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
-$a->strings["\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."] = "\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.";
-$a->strings["\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"] = "\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";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
-$a->strings["\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"] = "\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).";
-$a->strings["\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"] = "\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.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
-$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: %s"] = "Gruppe: %s";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
+);
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Submit"] = "Senden";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["I will attend"] = "Ich werde teilnehmen";
+$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
+$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
+$a->strings["to"] = "zu";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Credits"] = "Credits";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Name"] = "Name";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["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."] = "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!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$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";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
+$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["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Profile URL"] = "Profil URL";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$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.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
 $a->strings["No profile"] = "Kein Profil";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
 $a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["Import"] = "Import";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["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)"] = "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).";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
 $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";
@@ -810,39 +891,42 @@ $a->strings["You are cordially invited to join me and other close friends on Fri
 $a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
 $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
 $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Submit"] = "Senden";
-$a->strings["Files"] = "Dateien";
-$a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
-$a->strings["Error"] = "Fehler";
-$a->strings["Done"] = "Erledigt";
-$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["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."] = "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!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Credits"] = "Credits";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Not Extended"] = "Nicht erweitert.";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
+$a->strings["\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."] = "\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.";
+$a->strings["\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"] = "\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";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
+$a->strings["\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"] = "\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).";
+$a->strings["\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"] = "\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.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
+$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$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["Welcome to Friendica"] = "Willkommen bei Friendica";
 $a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
 $a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
@@ -874,160 +958,29 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
 $a->strings["Getting Help"] = "Hilfe bekommen";
 $a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
 $a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$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.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["link"] = "Link";
-$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.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["No"] = "Nein";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
 $a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
 $a->strings["No contact provided."] = "Keine Kontakte gefunden.";
 $a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
 $a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
+$a->strings["Done"] = "Erledigt";
 $a->strings["success"] = "Erfolg";
 $a->strings["failed"] = "Fehlgeschlagen";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group: %s"] = "Gruppe: %s";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
-);
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["I will attend"] = "Ich werde teilnehmen";
-$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
-$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
-$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["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
 $a->strings["Poke/Prod"] = "Anstupsen";
 $a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
 $a->strings["Recipient"] = "Empfänger";
 $a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
 $a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
 $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
 $a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
@@ -1045,228 +998,50 @@ $a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bi
 $a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
 $a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
 $a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Registration successful."] = "Registrierung erfolgreich.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Note for the admin"] = "Hinweis für den Admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "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.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
 $a->strings["Account approved."] = "Konto freigegeben.";
 $a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
 $a->strings["Please login."] = "Bitte melde Dich an.";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
-$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Kontakt\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
-$a->strings["Friend"] = "Kontakt";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Profile URL"] = "Profil URL";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Show unread"] = "Ungelesene anzeigen";
-$a->strings["Show all"] = "Alle anzeigen";
-$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["XMPP"] = "XMPP";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
-$a->strings["Profile Actions"] = "Profilaktionen";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Basic information"] = "Grundinformationen";
-$a->strings["Profile picture"] = "Profilbild";
-$a->strings["Preferences"] = "Vorlieben";
-$a->strings["Status information"] = "Status Informationen";
-$a->strings["Additional information"] = "Zusätzliche Informationen";
-$a->strings["Relation"] = "Beziehung";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
-$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
-$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$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["No friends to display."] = "Keine Kontakte zum Anzeigen.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["View"] = "Ansehen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["list"] = "Liste";
-$a->strings["User not found"] = "Nutzer nicht gefunden";
-$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
-$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
-$a->strings["calendar"] = "Kalender";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$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";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
+$a->strings["Error"] = "Fehler";
 $a->strings["everybody"] = "jeder";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Nicht rotieren";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Map"] = "Karte";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
-$a->strings["Registration successful."] = "Registrierung erfolgreich.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Note for the admin"] = "Hinweis für den Admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "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.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
 $a->strings["Account"] = "Nutzerkonto";
 $a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display"] = "Anzeige";
 $a->strings["Social Networks"] = "Soziale Netzwerke";
 $a->strings["Plugins"] = "Plugins";
 $a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
 $a->strings["Remove account"] = "Konto löschen";
 $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
 $a->strings["Update"] = "Aktualisierungen";
@@ -1413,6 +1188,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfrage
 $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
 $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
 $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
 $a->strings["Default Private Post"] = "Privater Standardbeitrag";
 $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
 $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@@ -1440,16 +1217,440 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
+$a->strings["link"] = "Link";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["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)"] = "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).";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
 $a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
 $a->strings["Delete Video"] = "Video Löschen";
 $a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["View Album"] = "Album betrachten";
 $a->strings["Recent Videos"] = "Neueste Videos";
 $a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Access denied."] = "Zugriff verweigert.";
 $a->strings["Invalid request."] = "Ungültige Anfrage";
 $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
 $a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
 $a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
 $a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["View"] = "Ansehen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["list"] = "Liste";
+$a->strings["User not found"] = "Nutzer nicht gefunden";
+$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
+$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
+$a->strings["calendar"] = "Kalender";
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
+);
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Drop contact"] = "Kontakt löschen";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["Never"] = "Niemals";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Disabled"] = "Deaktiviert";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$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";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$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["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$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=\"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["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
+$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Not Extended"] = "Nicht erweitert.";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Nicht rotieren";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Map"] = "Karte";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
+$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$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["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 background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</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["mysqli PHP module"] = "PHP: mysqli-Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["mcrypt PHP module"] = "PHP mcrypt 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: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP 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: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
+$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
+$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
+$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["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["XMPP"] = "XMPP";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
+$a->strings["Profile Actions"] = "Profilaktionen";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Basic information"] = "Grundinformationen";
+$a->strings["Profile picture"] = "Profilbild";
+$a->strings["Preferences"] = "Vorlieben";
+$a->strings["Status information"] = "Status Informationen";
+$a->strings["Additional information"] = "Zusätzliche Informationen";
+$a->strings["Relation"] = "Beziehung";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
+$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
+$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch über XMPP mit dir in Kontakt treten können.";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$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["Item has been removed."] = "Eintrag wurde entfernt.";
 $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
@@ -1495,9 +1696,7 @@ $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
 $a->strings["No community page"] = "Keine Gemeinschaftsseite";
 $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
 $a->strings["Global community page"] = "Globale Gemeinschaftsseite";
-$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
-$a->strings["Disabled"] = "Deaktiviert";
 $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
 $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
 $a->strings["One month"] = "ein Monat";
@@ -1687,290 +1886,68 @@ $a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich
 $a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
 $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
 $a->strings["\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."] = "\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.";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s Benutzer geblockt/freigegeben",
-       1 => "%s Benutzer geblockt/freigegeben",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s Nutzer gelöscht",
-       1 => "%s Nutzer gelöscht",
-);
-$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
-$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
-$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
-$a->strings["Register date"] = "Anmeldedatum";
-$a->strings["Last login"] = "Letzte Anmeldung";
-$a->strings["Last item"] = "Letzter Beitrag";
-$a->strings["Add User"] = "Nutzer hinzufügen";
-$a->strings["select all"] = "Alle auswählen";
-$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
-$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
-$a->strings["Request date"] = "Anfragedatum";
-$a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Note from the user"] = "Hinweis vom Nutzer";
-$a->strings["Deny"] = "Verwehren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Site admin"] = "Seitenadministrator";
-$a->strings["Account expired"] = "Account ist abgelaufen";
-$a->strings["New User"] = "Neuer Nutzer";
-$a->strings["Deleted since"] = "Gelöscht seit";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
-$a->strings["Name of the new user."] = "Name des neuen Nutzers";
-$a->strings["Nickname"] = "Spitzname";
-$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
-$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
-$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
-$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
-$a->strings["Disable"] = "Ausschalten";
-$a->strings["Enable"] = "Einschalten";
-$a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor:";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["Reload active plugins"] = "Aktive Plugins neu laden";
-$a->strings["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"] = "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.";
-$a->strings["No themes found."] = "Keine Themen gefunden.";
-$a->strings["Screenshot"] = "Bildschirmfoto";
-$a->strings["Reload active themes"] = "Aktives Theme neu laden";
-$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s patziert werden.";
-$a->strings["[Experimental]"] = "[Experimentell]";
-$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
-$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
-$a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert.";
-$a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert.";
-$a->strings["Clear"] = "löschen";
-$a->strings["Enable Debugging"] = "Protokoll führen";
-$a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
-$a->strings["Log level"] = "Protokoll-Level";
-$a->strings["PHP logging"] = "PHP Protokollieren";
-$a->strings["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."] = "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.";
-$a->strings["Lock feature %s"] = "Feature festlegen: %s";
-$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
-);
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Drop contact"] = "Kontakt löschen";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Contact"] = "Kontakt";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$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["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$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["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s Benutzer geblockt/freigegeben",
+       1 => "%s Benutzer geblockt/freigegeben",
 );
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Kontaktanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s in Kontakt stehst.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "Entferntes abon­nie­ren kann für dein Netzwerk nicht durchgeführt werden. Bitte nutze direkt die Abonnieren-Funktion deines Systems.   ";
-$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"%s/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$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["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden.";
-$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["Contact added"] = "Kontakt hinzugefügt";
-$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["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 background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</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["mysqli PHP module"] = "PHP: mysqli-Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["mcrypt PHP module"] = "PHP mcrypt 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: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP 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: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
-$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
-$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
-$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["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
-$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
-$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
+$a->strings["%s user deleted"] = array(
+       0 => "%s Nutzer gelöscht",
+       1 => "%s Nutzer gelöscht",
+);
+$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
+$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
+$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
+$a->strings["Register date"] = "Anmeldedatum";
+$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Add User"] = "Nutzer hinzufügen";
+$a->strings["select all"] = "Alle auswählen";
+$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
+$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
+$a->strings["Request date"] = "Anfragedatum";
+$a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Note from the user"] = "Hinweis vom Nutzer";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Deny"] = "Verwehren";
+$a->strings["Site admin"] = "Seitenadministrator";
+$a->strings["Account expired"] = "Account ist abgelaufen";
+$a->strings["New User"] = "Neuer Nutzer";
+$a->strings["Deleted since"] = "Gelöscht seit";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
+$a->strings["Name of the new user."] = "Name des neuen Nutzers";
+$a->strings["Nickname"] = "Spitzname";
+$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
+$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
+$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
+$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
+$a->strings["Disable"] = "Ausschalten";
+$a->strings["Enable"] = "Einschalten";
+$a->strings["Toggle"] = "Umschalten";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["Reload active plugins"] = "Aktive Plugins neu laden";
+$a->strings["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"] = "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.";
+$a->strings["No themes found."] = "Keine Themen gefunden.";
+$a->strings["Screenshot"] = "Bildschirmfoto";
+$a->strings["Reload active themes"] = "Aktives Theme neu laden";
+$a->strings["No themes found on the system. They should be paced in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s patziert werden.";
+$a->strings["[Experimental]"] = "[Experimentell]";
+$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
+$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
+$a->strings["PHP log currently enabled."] = "PHP Protokollierung ist derzeit aktiviert.";
+$a->strings["PHP log currently disabled."] = "PHP Protokollierung ist derzeit nicht aktiviert.";
+$a->strings["Clear"] = "löschen";
+$a->strings["Enable Debugging"] = "Protokoll führen";
+$a->strings["Log file"] = "Protokolldatei";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
+$a->strings["Log level"] = "Protokoll-Level";
+$a->strings["PHP logging"] = "PHP Protokollieren";
+$a->strings["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."] = "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.";
+$a->strings["Lock feature %s"] = "Feature festlegen: %s";
+$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$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.",
@@ -1989,11 +1966,73 @@ $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["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["No contacts."] = "Keine Kontakte.";
+$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["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$a->strings["Shall your connection be bidirectional or not?"] = "Soll die Verbindung beidseitig sein oder nicht?";
+$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s.";
+$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "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.";
+$a->strings["Accepting %s as a sharer allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "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.";
+$a->strings["Friend"] = "Kontakt";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Subscriber"] = "Abonnent";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Show unread"] = "Ungelesene anzeigen";
+$a->strings["Show all"] = "Alle anzeigen";
+$a->strings["No more %s notifications."] = "Keine weiteren %s Benachrichtigungen";
 $a->strings["via"] = "via";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$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["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Quick Start"] = "Schnell-Start";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
+$a->strings["Midnight"] = "Mitternacht";
+$a->strings["Zenburn"] = "Zenburn";
+$a->strings["Bootstrap"] = "Bootstrap";
+$a->strings["Shades of Pink"] = "Shades of Pink";
+$a->strings["Lime and Orange"] = "Lime and Orange";
+$a->strings["GeoCities Retro"] = "GeoCities Retro";
+$a->strings["Background Image"] = "Hintergrundbild";
+$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL zum Bild (z.B. aus deinem Foto Album), das als Hintergrundbild verwendet werden soll.";
+$a->strings["Background Color"] = "Hintergrundfarbe";
+$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe, ohne das #";
+$a->strings["font size"] = "Zeichengröße";
+$a->strings["base font size for your interface"] = "Basiszeichengröße für das Interface";
+$a->strings["Display Accesskeys"] = "Accesskeys anzeigen";
+$a->strings["Diaplay the access keys assigned to some menu element in the web interface."] = "Einige Menüelemente sind über Accesskeys aufrufbar. Sollen diese angezeigt werden?";
 $a->strings["Repeat the image"] = "Bild wiederholen";
 $a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
 $a->strings["Stretch"] = "Strecken";
@@ -2014,29 +2053,7 @@ $a->strings["Content background transparency"] = "Transparanz des Hintergrunds v
 $a->strings["Set the background image"] = "Hintergrundbild festlegen";
 $a->strings["Guest"] = "Gast";
 $a->strings["Visitor"] = "Besucher";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$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["Community Profiles"] = "Community-Profile";
-$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["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
 $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.";
@@ -2049,4 +2066,3 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
 $a->strings["terms of service"] = "Nutzungsbedingungen";
 $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
 $a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
index 2edfddb885f277bbae863ea9cf1b0b2ea04c494f..e670222d4d2855dd8b31d813aa303e178dd7afc9 100644 (file)
@@ -56,7 +56,6 @@
        {{include file="field_select.tpl" field=$theme_mobile}}
        {{include file="field_select.tpl" field=$ssl_policy}}
        {{if $ssl_policy.2 == 1}}{{include file="field_checkbox.tpl" field=$force_ssl}}{{/if}}
-       {{include file="field_checkbox.tpl" field=$old_share}}
        {{include file="field_checkbox.tpl" field=$hide_help}}
        {{include file="field_select.tpl" field=$singleuser}}
        <div class="submit"><input type="submit" name="page_site" value="{{$submit|escape:'html'}}" /></div>
        {{include file="field_input.tpl" field=$lockpath}}
        {{include file="field_input.tpl" field=$temppath}}
        {{include file="field_input.tpl" field=$basepath}}
-       {{include file="field_checkbox.tpl" field=$suppress_language}}
        {{include file="field_checkbox.tpl" field=$suppress_tags}}
        {{include file="field_checkbox.tpl" field=$nodeinfo}}
        {{include file="field_input.tpl" field=$embedly}}
        {{include file="field_input.tpl" field=$itemcache_duration}}
        {{include file="field_input.tpl" field=$max_comments}}
        {{include file="field_checkbox.tpl" field=$proxy_disabled}}
-       {{include file="field_checkbox.tpl" field=$old_pager}}
        <div class="submit"><input type="submit" name="page_site" value="{{$submit|escape:'html'}}" /></div>
 
        <h3>{{$worker_title}}</h3>
index 767cc0699fee744c7d6a07952a5e36617ce849aa..465d7eb2ba896738f8073f4b6fa8f2af12521404 100644 (file)
@@ -1,5 +1,9 @@
 
-<div class="intro-approve-as-friend-desc">{{$approve_as}}</div>
+<div class="intro-approve-as-friend-desc">
+  <p>{{$approve_as1}}</p>
+  <p>{{$approve_as2}}</p>
+  <p>{{$approve_as3}}</p>
+</div>
 
 <div class="intro-approve-as-friend-wrapper">
        <label class="intro-approve-as-friend-label" for="intro-approve-as-friend-{{$intro_id}}">{{$as_friend}}</label>
index 21d56509aabe83de3d1e3266f1a4cd7979b9ff11..fcd580b0715aede0b680bb4aa8062e8cdcfa53f8 100644 (file)
@@ -2,7 +2,7 @@
        {{if $pager}}\r
        {{if $pager.prev}}<span class="pager_prev {{$pager.prev.class}}"><a href="{{$pager.prev.url}}">{{$pager.prev.text}}</a></span>{{/if}}\r
 \r
-       {{if $pager.first}}<span class="pager_first $pager.first.class"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></span>{{/if}}\r
+       {{if $pager.first}}<span class="pager_first {{$pager.first.class}}"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></span>{{/if}}\r
 \r
        {{foreach $pager.pages as $p}}<span class="pager_{{$p.class}}"><a href="{{$p.url}}">{{$p.text}}</a></span>{{/foreach}}\r
 \r
index c1e8067443a3f35af95c939b74ad119669ba9bad..8e2c5d44780129bbe25c8345b9932403f5f310ba 100644 (file)
@@ -1552,6 +1552,9 @@ blockquote.shared_content {
   clear:left;
 }
 
+.pager .disabled {
+       display: none;
+}
 
 .pager_first,
 .pager_last,
index 4e189b11fe5a046c0ec9121b910a4f8238057f68..4e3dc9749cf1008590222a9477ef9d92d772a5b1 100644 (file)
@@ -2514,6 +2514,24 @@ body .tread-wrapper .hovercard:hover .hover-card-content a {
     color: $link_color !important;
 }
 
+/* Pagination improvements */
+.pagination > li > a,
+.pagination > li > span {
+       color: $link_color;
+}
+.pagination>.active>a,
+.pagination>.active>a:focus,
+.pagination>.active>a:hover,
+.pagination>.active>span,
+.pagination>.active>span:focus,
+.pagination>.active>span:hover {
+       background-color: $link_color;
+    border-color: $link_color;
+}
+.disabled > a {
+       pointer-events: none;
+}
+
 /*
  * some temporary workarounds until this will solved
  * elsewhere (e.g. new templates)
index 86608821e5cd2ca86190ed1c8742216da5441ad3..ed126d60cdb19f2f4417d1fca9434b9cac30a587 100644 (file)
@@ -4,8 +4,9 @@
 
 // Catch the GUID from the URL
 var itemGuid = window.location.pathname.split("/").pop();
+var itemGuidSafe = itemGuid.replace(/%.*/, '');
 
 $(window).load(function(){
        // Scroll to the Item by its GUID
-       scrollToItem('item-'+itemGuid);
+       scrollToItem('item-' + itemGuidSafe);
 });
index 9226646b7be1d50c2f7cfb7c572e7627cbb8a56f..02191f33dee6ba2a71639553f3e74bcfc39249ef 100644 (file)
@@ -162,21 +162,29 @@ function qCommentInsert(obj,id) {
 
 function confirmDelete() { return confirm(aStr.delitem); }
 
-function dropItem(url, object) {
+/**
+ * Hide and removes an item element from the DOM after the deletion url is
+ * successful, restore it else.
+ *
+ * @param {string} url The item removal URL
+ * @param {string} elementId The DOM id of the item element
+ * @returns {undefined}
+ */
+function dropItem(url, elementId) {
        var confirm = confirmDelete();
 
-       //if the first character of the object is #, remove it because
-       // we use getElementById which don't need the #
-       // getElementByID selects elements even if there are special characters
-       // in the ID (like %) which won't work with jQuery
-       /// @todo ceck if we can solve this in the template
-       object = object.indexOf('#') == 0 ? object.substring(1) : object;
-
-       if(confirm) {
+       if (confirm) {
                $('body').css('cursor', 'wait');
-               $(document.getElementById(object)).fadeTo('fast', 0.33, function () {
-                       $.get(url).done(function() {
-                               $(document.getElementById(object)).remove();
+
+               var $el = $(document.getElementById(elementId));
+
+               $el.fadeTo('fast', 0.33, function () {
+                       $.get(url).then(function() {
+                               $el.remove();
+                       }).error(function() {
+                               // @todo Show related error message
+                               $el.show();
+                       }).always(function() {
                                $('body').css('cursor', 'auto');
                        });
                });
index b4ba2fd357d7ff7366718b3db2b221149f5b2b7d..62cd85df9b53975e96ced89b868c78a489cae9ff 100644 (file)
@@ -573,31 +573,38 @@ String.prototype.rtrim = function() {
        return trimmed;
 };
 
-// Scroll to a specific item and highlight it
-// Note: jquery.color.js is needed
-function scrollToItem(itemID) {
-       if( typeof itemID === "undefined")
+/**
+ * Scroll the screen to the item element whose id is provided, then highlights it
+ *
+ * Note: jquery.color.js is required
+ *
+ * @param {string} elementId The item element id
+ * @returns {undefined}
+ */
+function scrollToItem(elementId) {
+       if (typeof elementId === "undefined") {
                return;
+       }
 
-       var elm = $('#'+itemID);
+       var $el = $(document.getElementById(elementId));
        // Test if the Item exists
-       if(!elm.length)
+       if (!$el.length) {
                return;
+       }
 
        // Define the colors which are used for highlighting
        var colWhite = {backgroundColor:'#F5F5F5'};
        var colShiny = {backgroundColor:'#FFF176'};
 
-       // Get the Item Position (we need to substract 100 to match
-       // correct position
-       var itemPos = $(elm).offset().top - 100;
+       // Get the Item Position (we need to substract 100 to match correct position
+       var itemPos = $el.offset().top - 100;
 
        // Scroll to the DIV with the ID (GUID)
        $('html, body').animate({
                scrollTop: itemPos
        }, 400, function() {
                // Highlight post/commenent with ID  (GUID)
-               $(elm).animate(colWhite, 1000).animate(colShiny).animate(colWhite, 600);
+               $el.animate(colWhite, 1000).animate(colShiny).animate(colWhite, 600);
        });
 }
 
diff --git a/view/theme/frio/php/Colors.php b/view/theme/frio/php/Colors.php
deleted file mode 100644 (file)
index d6ba15f..0000000
+++ /dev/null
@@ -1,292 +0,0 @@
-<?php
-
-class colors {
-
-/* Convert hexdec color string to rgb(a) string */
-       function hex2rgba($color, $opacity = false) {
-
-               $default = 'rgb(0,0,0)';
-
-               //Return default if no color provided
-               if(empty($color))
-                 return $default; 
-
-               //Sanitize $color if "#" is provided 
-               if ($color[0] == '#' ) {
-                       $color = substr( $color, 1 );
-               }
-
-               //Check if color has 6 or 3 characters and get values
-               if (strlen($color) == 6) {
-                       $hex = array( $color[0] . $color[1], $color[2] . $color[3], $color[4] . $color[5] );
-               } elseif ( strlen( $color ) == 3 ) {
-                       $hex = array( $color[0] . $color[0], $color[1] . $color[1], $color[2] . $color[2] );
-               } else {
-                       return $default;
-               }
-
-               //Convert hexadec to rgb
-               $rgb =  array_map('hexdec', $hex);
-
-               //Check if opacity is set(rgba or rgb)
-               if($opacity){
-                       if(abs($opacity) > 1)
-                               $opacity = 1.0;
-                       $output = 'rgba('.implode(",",$rgb).','.$opacity.')';
-               } else {
-                       $output = 'rgb('.implode(",",$rgb).')';
-               }
-
-               //Return rgb(a) color string
-               return $output;
-       }
-
-       function hex2rgb( $colour ) {
-               if ( $colour[0] == '#' ) {
-                       $colour = substr( $colour, 1 );
-               }
-               if ( strlen( $colour ) == 6 ) {
-                       list( $r, $g, $b ) = array( $colour[0] . $colour[1], $colour[2] . $colour[3], $colour[4] . $colour[5] );
-               } elseif ( strlen( $colour ) == 3 ) {
-                       list( $r, $g, $b ) = array( $colour[0] . $colour[0], $colour[1] . $colour[1], $colour[2] . $colour[2] );
-               } else {
-                       return false;
-               }
-               $r = hexdec( $r );
-               $g = hexdec( $g );
-               $b = hexdec( $b );
-               return array( 'red' => $r, 'green' => $g, 'blue' => $b );
-       }
-
-
-       function rgbToHsl( $r, $g, $b ) {
-               $oldR = $r;
-               $oldG = $g;
-               $oldB = $b;
-               $r /= 255;
-               $g /= 255;
-               $b /= 255;
-               $max = max( $r, $g, $b );
-               $min = min( $r, $g, $b );
-               $h;
-               $s;
-               $l = ( $max + $min ) / 2;
-               $d = $max - $min;
-
-               if( $d == 0 ){
-                       $h = $s = 0; // achromatic
-               } else {
-                       $s = $d / ( 1 - abs( 2 * $l - 1 ) );
-                       switch( $max ){
-                               case $r:
-                                       $h = 60 * fmod( ( ( $g - $b ) / $d ), 6 ); 
-                                       if ($b > $g) {
-                                               $h += 360;
-                                       }
-                                       break;
-                               case $g: 
-                                       $h = 60 * ( ( $b - $r ) / $d + 2 ); 
-                                       break;
-                               case $b: 
-                                       $h = 60 * ( ( $r - $g ) / $d + 4 ); 
-                                       break;
-                       }
-               }
-
-               return array( round( $h, 2 ), round( $s, 2 ), round( $l, 2 ) );
-       }
-       function hslToRgb( $h, $s, $l ){
-               $r = ""; 
-               $g = ""; 
-               $b = "";
-
-               $c = ( 1 - abs( 2 * $l - 1 ) ) * $s;
-               $x = $c * ( 1 - abs( fmod( ( $h / 60 ), 2 ) - 1 ) );
-               $m = $l - ( $c / 2 );
-               if ( $h < 60 ) {
-                       $r = $c;
-                       $g = $x;
-                       $b = 0;
-               } else if ( $h < 120 ) {
-                       $r = $x;
-                       $g = $c;
-                       $b = 0;
-               } else if ( $h < 180 ) {
-                       $r = 0;
-                       $g = $c;
-                       $b = $x;
-               } else if ( $h < 240 ) {
-                       $r = 0;
-                       $g = $x;
-                       $b = $c;
-               } else if ( $h < 300 ) {
-                       $r = $x;
-                       $g = 0;
-                       $b = $c;
-               } else {
-                       $r = $c;
-                       $g = 0;
-                       $b = $x;
-               }
-
-               $r = ( $r + $m ) * 255;
-               $g = ( $g + $m ) * 255;
-               $b = ( $b + $m  ) * 255;
-
-               return array( floor( $r ), floor( $g ), floor( $b ) );
-       }
-
-       /*
-        * Som more example code - this needs to be deletet if we don't need it in
-        * the future
-        */
-
-         function HTMLToRGB($htmlCode)
-         {
-           if($htmlCode[0] == '#')
-             $htmlCode = substr($htmlCode, 1);
-
-           if (strlen($htmlCode) == 3)
-           {
-             $htmlCode = $htmlCode[0] . $htmlCode[0] . $htmlCode[1] . $htmlCode[1] . $htmlCode[2] . $htmlCode[2];
-           }
-
-           $r = hexdec($htmlCode[0] . $htmlCode[1]);
-           $g = hexdec($htmlCode[2] . $htmlCode[3]);
-           $b = hexdec($htmlCode[4] . $htmlCode[5]);
-
-           return $b + ($g << 0x8) + ($r << 0x10);
-         }
-
-         function RGBToHTML($RGB)
-         {
-           $r = 0xFF & ($RGB >> 0x10);
-           $g = 0xFF & ($RGB >> 0x8);
-           $b = 0xFF & $RGB;
-
-           $r = dechex($r);
-           $g = dechex($g);
-           $b = dechex($b);
-
-           return "#" . str_pad($r, 2, "0", STR_PAD_LEFT) . str_pad($g, 2, "0", STR_PAD_LEFT) . str_pad($b, 2, "0", STR_PAD_LEFT);
-         }
-
-         function ChangeLuminosity($RGB, $LuminosityPercent)
-         {
-           $HSL = RGBToHSL($RGB);
-           $NewHSL = (int)(((float)$LuminosityPercent / 100) * 255) + (0xFFFF00 & $HSL);
-           return HSLToRGB($NewHSL);
-         }
-
-         function RGBToHSL($RGB)
-         {
-           $r = 0xFF & ($RGB >> 0x10);
-           $g = 0xFF & ($RGB >> 0x8);
-           $b = 0xFF & $RGB;
-
-           $r = ((float)$r) / 255.0;
-           $g = ((float)$g) / 255.0;
-           $b = ((float)$b) / 255.0;
-
-           $maxC = max($r, $g, $b);
-           $minC = min($r, $g, $b);
-
-           $l = ($maxC + $minC) / 2.0;
-
-           if($maxC == $minC)
-           {
-             $s = 0;
-             $h = 0;
-           }
-           else
-           {
-             if($l < .5)
-             {
-               $s = ($maxC - $minC) / ($maxC + $minC);
-             }
-             else
-             {
-               $s = ($maxC - $minC) / (2.0 - $maxC - $minC);
-             }
-             if($r == $maxC)
-               $h = ($g - $b) / ($maxC - $minC);
-             if($g == $maxC)
-               $h = 2.0 + ($b - $r) / ($maxC - $minC);
-             if($b == $maxC)
-               $h = 4.0 + ($r - $g) / ($maxC - $minC);
-
-             $h = $h / 6.0; 
-           }
-
-           $h = (int)round(255.0 * $h);
-           $s = (int)round(255.0 * $s);
-           $l = (int)round(255.0 * $l);
-
-           $HSL = $l + ($s << 0x8) + ($h << 0x10);
-           return $HSL;
-         }
-
-         function HSLToRGB($HSL)
-         {
-           $h = 0xFF & ($HSL >> 0x10);
-           $s = 0xFF & ($HSL >> 0x8);
-           $l = 0xFF & $HSL;
-
-           $h = ((float)$h) / 255.0;
-           $s = ((float)$s) / 255.0;
-           $l = ((float)$l) / 255.0;
-
-           if($s == 0)
-           {
-             $r = $l;
-             $g = $l;
-             $b = $l;
-           }
-           else
-           {
-             if($l < .5)
-             {
-               $t2 = $l * (1.0 + $s);
-             }
-             else
-             {
-               $t2 = ($l + $s) - ($l * $s);
-             }
-             $t1 = 2.0 * $l - $t2;
-
-             $rt3 = $h + 1.0/3.0;
-             $gt3 = $h;
-             $bt3 = $h - 1.0/3.0;
-
-             if($rt3 < 0) $rt3 += 1.0;
-             if($rt3 > 1) $rt3 -= 1.0;
-             if($gt3 < 0) $gt3 += 1.0;
-             if($gt3 > 1) $gt3 -= 1.0;
-             if($bt3 < 0) $bt3 += 1.0;
-             if($bt3 > 1) $bt3 -= 1.0;
-
-             if(6.0 * $rt3 < 1) $r = $t1 + ($t2 - $t1) * 6.0 * $rt3;
-             elseif(2.0 * $rt3 < 1) $r = $t2;
-             elseif(3.0 * $rt3 < 2) $r = $t1 + ($t2 - $t1) * ((2.0/3.0) - $rt3) * 6.0;
-             else $r = $t1;
-
-             if(6.0 * $gt3 < 1) $g = $t1 + ($t2 - $t1) * 6.0 * $gt3;
-             elseif(2.0 * $gt3 < 1) $g = $t2;
-             elseif(3.0 * $gt3 < 2) $g = $t1 + ($t2 - $t1) * ((2.0/3.0) - $gt3) * 6.0;
-             else $g = $t1;
-
-             if(6.0 * $bt3 < 1) $b = $t1 + ($t2 - $t1) * 6.0 * $bt3;
-             elseif(2.0 * $bt3 < 1) $b = $t2;
-             elseif(3.0 * $bt3 < 2) $b = $t1 + ($t2 - $t1) * ((2.0/3.0) - $bt3) * 6.0;
-             else $b = $t1;
-           }
-
-           $r = (int)round(255.0 * $r);
-           $g = (int)round(255.0 * $g);
-           $b = (int)round(255.0 * $b);
-
-           $RGB = $b + ($g << 0x8) + ($r << 0x10);
-           return $RGB;
-         }
-}
\ No newline at end of file
diff --git a/view/theme/frio/templates/paginate.tpl b/view/theme/frio/templates/paginate.tpl
new file mode 100644 (file)
index 0000000..ab65cdd
--- /dev/null
@@ -0,0 +1,14 @@
+{{* Pager template, uses output of paginate_data() in include/text.php *}}\r
+{{if $pager}}\r
+<div class="{{$pager.class}}">\r
+       {{if $pager.first}}<li class="pager_first {{$pager.first.class}}"><a href="{{$pager.first.url}}">{{$pager.first.text}}</a></li>{{/if}}\r
+\r
+       {{if $pager.prev}}<li class="pager_prev {{$pager.prev.class}}"><a href="{{$pager.prev.url}}">{{$pager.prev.text}}</a></li>{{/if}}\r
+\r
+       {{foreach $pager.pages as $p}}<li class="pager_{{$p.class}}"><a href="{{$p.url}}">{{$p.text}}</a></li>{{/foreach}}\r
+\r
+       {{if $pager.next}}<li class="pager_next {{$pager.next.class}}"><a href="{{$pager.next.url}}">{{$pager.next.text}}</a></li>{{/if}}\r
+\r
+       {{if $pager.last}}&nbsp;<li class="pager_last {{$pager.last.class}}"><a href="{{$pager.last.url}}">{{$pager.last.text}}</a></li>{{/if}}\r
+</div>\r
+{{/if}}\r
index bf90f8606bffd53cc3eb0e43889b5cf9b35b3612..2faa31475c2ba1ce1703afdd9b5b36c60a530be5 100644 (file)
@@ -7,7 +7,7 @@
 <!-- ./TODO => Unknow block -->
 
 
-<div class="panel">
+<div class="panel" id="item-{{$item.guid}}">
        <div class="wall-item-container panel-body{{$item.indent}} {{$item.shiny}} {{$item.previewing}}" >
                <div class="media">
                        {{* Put additional actions in a top-right dropdown menu *}}
@@ -54,7 +54,7 @@
                                                {{if $item.drop.dropping}}
                                                <li role="separator" class="divider"></li>
                                                <li role="menuitem">
-                                                       <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', '#item-{{$item.guid}}'); return false;" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
+                                                       <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', 'item-{{$item.guid}}'); return false;" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
                                                </li>
                                                {{/if}}
                                        </ul>
index 6f7de795fc21a2a6a585f0b29fb24d9376e3d427..4024ce7810d61e408f4b9be824c342e04438bf9b 100644 (file)
@@ -129,7 +129,7 @@ as the value of $top_child_total (this is done at the end of this file)
 
                                        {{if $item.drop.dropping}}
                                        <li role="menuitem">
-                                               <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', '#item-{{$item.guid}}'); return false;" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
+                                               <button type="button" class="btn-link navicon delete" onclick="dropItem('item/drop/{{$item.id}}', 'item-{{$item.guid}}'); return false;" title="{{$item.drop.delete}}"><i class="fa fa-trash"></i> {{$item.drop.delete}}</button>
                                        </li>
                                        {{/if}}
                                </ul>
index c005e838f163e44b56290cf891de8d7dc848c1c3..7c5d2c7609d09f26a2a1beb943fecf24debd44a1 100644 (file)
@@ -1909,6 +1909,9 @@ input#profile-jot-email {
        -webkit-border-radius: 10px;\r
 }\r
 \r
+.pager .disabled {\r
+       display: none;\r
+}\r
 \r
 .pager_first,\r
 .pager_last,\r
index 46eb650ec1db93278ff68c9b1955acd2f18cf26c..9b65da9c8c81251e0d10aad3f933f21699448088 100644 (file)
@@ -1866,6 +1866,9 @@ input#dfrn-url {
        -webkit-border-radius: 10px;
 }
 
+.pager .disabled {
+       display: none;
+}
 
 .pager_first,
 .pager_last,
index 8eba0e4cf723a861698407ebd018eeee5044c7ab..af5cfcedf0bc175ae156c35044d487ba6de0c6d6 100644 (file)
@@ -2481,6 +2481,9 @@ footer {
   margin-top: 25px;
   clear: both;
 }
+.pager .disabled {
+       display: none;
+}
 /**
  * ADMIN
  */
index b424534206328ead1dd3e9fc28e44d97c7c5f452..0c17b00331d1651159d8a6d298bdea3827186e1a 100644 (file)
@@ -2481,6 +2481,9 @@ footer {
   margin-top: 25px;
   clear: both;
 }
+.pager .disabled {
+       display: none;
+}
 /**
  * ADMIN
  */
index 6c019868889f80ff684d10e853d9a67e76150108..53bb7e38a6d9d5bb97458a7f1dcf3c4b70acea5a 100644 (file)
@@ -1675,6 +1675,9 @@ footer { height: 100px; display: table-row; }
         margin-top: 25px;
         clear: both;
 }
+.pager .disabled {
+       display: none;
+}
 
 /**
  * ADMIN
index e91eccfe174e5e3af54d5de4c915968e7b6ab802..ec52277bddf6d6ace4076d2f0442c4758a73d182 100644 (file)
@@ -396,6 +396,10 @@ ul.menu-popup li a:hover {
        margin: 4px;
 }
 
+.pager .disabled {
+       display: none;
+}
+
 .pager_current {
        background-color: #1873a2;
        color: #ffffff;
index 8454c7e0ae610c46fb3987f825ace15afafc7ea7..32617867cb391d7d2d790c09ffdf127db4dd6e11 100644 (file)
@@ -247,6 +247,10 @@ div.pager {
   float: left;
 }
 
+.pager .disabled {
+       display: none;
+}
+
 .hide-comments-outer {
   margin-left: 80px;
   margin-bottom: 5px;