]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'develop' into improvement/move-app-to-src-2
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 7 May 2017 16:58:11 +0000 (12:58 -0400)
committerGitHub <noreply@github.com>
Sun, 7 May 2017 16:58:11 +0000 (12:58 -0400)
21 files changed:
boot.php
doc/api.md
include/Probe.php
include/acl_selectors.php
include/api.php
include/dba.php
include/dbstructure.php
include/diaspora.php
include/ostatus.php
include/pubsubpublish.php
include/socgraph.php
js/autocomplete.js
mod/admin.php
mod/contacts.php
mod/receive.php
update.php
util/messages.po
view/lang/de/messages.po
view/lang/de/strings.php
view/theme/frio/templates/admin_aside.tpl [new file with mode: 0644]
view/theme/frio/templates/generic_links_widget.tpl [new file with mode: 0644]

index df62a81cfd212a263b15bedd8490452ee6dc3abe..5815b8db1d12b23a8eefb9c8fca455cfbb5d9935 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
 define ( 'FRIENDICA_VERSION',      '3.5.2-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1222      );
+define ( 'DB_UPDATE_VERSION',      1224      );
 
 /**
  * @brief Constant with a HTML line break.
index b759b4697c0dbd51721745f2102939bbca8deed0..2cafecac18522df676fc8824d4535527a7c96a62 100644 (file)
@@ -172,6 +172,11 @@ On error:
 HTTP 400 BadRequest\r
 * on friendica_verbose=true: different JSON returns {"result":"error","message":"xyz"}\r
 \r
+---\r
+### externalprofile/show (*)\r
+#### Parameters\r
+* profileurl: profile url\r
+\r
 ---\r
 ### favorites (*; AUTH)\r
 #### Parameters\r
index 89145298675aa2d833d6f8c16620fc0325ff16ec..85f64d29bc2e8a4f6d64842a5dc39e819e5daa42 100644 (file)
@@ -175,6 +175,9 @@ class Probe {
                                return array();
 
                        $host = $parts["host"];
+                       if (isset($parts["port"])) {
+                               $host .= ':'.$parts["port"];
+                       }
 
                        $path_parts = explode("/", trim($parts["path"], "/"));
 
@@ -335,8 +338,10 @@ class Probe {
 
                if (isset($parts["scheme"]) AND isset($parts["host"]) AND isset($parts["path"])) {
 
-                       /// @todo: Ports?
                        $host = $parts["host"];
+                       if (isset($parts["port"])) {
+                               $host .= ':'.$parts["port"];
+                       }
 
                        if ($host == 'twitter.com') {
                                return array("network" => NETWORK_TWITTER);
@@ -789,7 +794,7 @@ class Probe {
 
                if (sizeof($avatar)) {
                        ksort($avatar);
-                       $data["photo"] = array_pop($avatar);
+                       $data["photo"] = self::fix_avatar(array_pop($avatar), $data["baseurl"]);
                }
 
                if ($dfrn) {
@@ -960,7 +965,7 @@ class Probe {
                        $data["nick"] = $feed_data["header"]["author-nick"];
                }
                if ($feed_data["header"]["author-avatar"] != "") {
-                       $data["photo"] = ostatus::fix_avatar($feed_data["header"]["author-avatar"], $data["url"]);
+                       $data["photo"] = self::fix_avatar($feed_data["header"]["author-avatar"], $data["url"]);
                }
                if ($feed_data["header"]["author-id"] != "") {
                        $data["alias"] = $feed_data["header"]["author-id"];
@@ -1219,4 +1224,41 @@ class Probe {
 
                return $data;
        }
+
+       /**
+        * @brief Mix two paths together to possibly fix missing parts
+        *
+        * @param string $avatar Path to the avatar
+        * @param string $base Another path that is hopefully complete
+        *
+        * @return string fixed avatar path
+        */
+       public static function fix_avatar($avatar, $base) {
+               $base_parts = parse_url($base);
+
+               // Remove all parts that could create a problem
+               unset($base_parts['path']);
+               unset($base_parts['query']);
+               unset($base_parts['fragment']);
+
+               $avatar_parts = parse_url($avatar);
+
+               // Now we mix them
+               $parts = array_merge($base_parts, $avatar_parts);
+
+               // And put them together again
+               $scheme   = isset($parts['scheme']) ? $parts['scheme'] . '://' : '';
+               $host     = isset($parts['host']) ? $parts['host'] : '';
+               $port     = isset($parts['port']) ? ':' . $parts['port'] : '';
+               $path     = isset($parts['path']) ? $parts['path'] : '';
+               $query    = isset($parts['query']) ? '?' . $parts['query'] : '';
+               $fragment = isset($parts['fragment']) ? '#' . $parts['fragment'] : '';
+
+               $fixed = $scheme.$host.$port.$path.$query.$fragment;
+
+               logger('Base: '.$base.' - Avatar: '.$avatar.' - Fixed: '.$fixed, LOGGER_DATA);
+
+               return $fixed;
+       }
+
 }
index d5dd911712f07b761777e21d05b71c48962f0ce2..c7c6bb206aaf5a6d12ba1940792e9657586ee90e 100644 (file)
@@ -545,7 +545,7 @@ function acl_lookup(App $a, $out_type = 'json') {
 
        if ($type == '') {
 
-               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
+               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
                        WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
                        AND NOT (`network` IN ('%s', '%s'))
                        $sql_extra2
@@ -554,7 +554,7 @@ function acl_lookup(App $a, $out_type = 'json') {
                        dbesc(NETWORK_OSTATUS), dbesc(NETWORK_STATUSNET)
                );
        } elseif ($type == 'c') {
-               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
+               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
                        WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
                        AND NOT (`network` IN ('%s'))
                        $sql_extra2
@@ -564,7 +564,7 @@ function acl_lookup(App $a, $out_type = 'json') {
                );
        }
        elseif ($type == 'm') {
-               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
+               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr` FROM `contact`
                        WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending` AND NOT `archive`
                        AND `network` IN ('%s','%s','%s')
                        $sql_extra2
@@ -575,7 +575,7 @@ function acl_lookup(App $a, $out_type = 'json') {
                        dbesc(NETWORK_DIASPORA)
                );
        } elseif ($type == 'a') {
-               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
+               $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
                        WHERE `uid` = %d AND `pending` = 0
                        $sql_extra2
                        ORDER BY `name` ASC ",
@@ -619,6 +619,7 @@ function acl_lookup(App $a, $out_type = 'json') {
                                'network' => $g['network'],
                                'link'    => $g['url'],
                                'nick'    => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']),
+                               'addr'    => htmlentities(($g['addr']) ? $g['addr'] : $g['url']),
                                'forum'   => ((x($g, 'forum') || x($g, 'prv')) ? 1 : 0),
                        );
                }
@@ -663,6 +664,7 @@ function acl_lookup(App $a, $out_type = 'json') {
                                                'network' => $contact['network'],
                                                'link'    => $contact['url'],
                                                'nick'    => htmlentities($contact['nick'] ? : $contact['addr']),
+                                               'addr'    => htmlentities(($contact['addr']) ? $contact['addr'] : $contact['url']),
                                                'forum'   => $contact['forum']
                                        );
                                }
index 2471f602d8d53cd55da53f0c8f7c1b05def2e94c..fc38f1bc80198329a28e2a1044eae3062b58c1cc 100644 (file)
@@ -526,6 +526,15 @@ $called_api = null;
                        }
                }
 
+               if (is_null($user) && x($_GET, 'profileurl')) {
+                       $user = dbesc(normalise_link($_GET['profileurl']));
+                       $nick = $user;
+                       $extra_query = "AND `contact`.`nurl` = '%s' ";
+                       if (api_user() !== false) {
+                               $extra_query .= "AND `contact`.`uid`=".intval(api_user());
+                       }
+               }
+
                if (is_null($user) AND ($a->argc > (count($called_api) - 1)) AND (count($called_api) > 0)) {
                        $argid = count($called_api);
                        list($user, $null) = explode(".", $a->argv[$argid]);
@@ -1401,6 +1410,7 @@ $called_api = null;
 
        /// @TODO move to top of file or somewhere better
        api_register_func('api/users/show','api_users_show');
+       api_register_func('api/externalprofile/show','api_users_show');
 
        function api_users_search($type) {
 
index 8cbad876f50d41f419f8cb9de966f437cf572fb0..d0ebda1916b8a84300dfee87e9ebe9e03243b640 100644 (file)
@@ -25,11 +25,20 @@ class dba {
        private static $dbo;
        private static $relation = array();
 
-       function __construct($server, $user, $pass, $db, $install = false) {
+       function __construct($serveraddr, $user, $pass, $db, $install = false) {
                $a = get_app();
 
                $stamp1 = microtime(true);
 
+               $serveraddr = trim($serveraddr);
+
+               $serverdata = explode(':', $serveraddr);
+               $server = $serverdata[0];
+
+               if (count($serverdata) > 1) {
+                       $port = trim($serverdata[1]);
+               }
+
                $server = trim($server);
                $user = trim($user);
                $pass = trim($pass);
@@ -55,6 +64,11 @@ class dba {
                if (class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) {
                        $this->driver = 'pdo';
                        $connect = "mysql:host=".$server.";dbname=".$db;
+
+                       if (isset($port)) {
+                               $connect .= ";port=".$port;
+                       }
+
                        if (isset($a->config["system"]["db_charset"])) {
                                $connect .= ";charset=".$a->config["system"]["db_charset"];
                        }
@@ -64,7 +78,7 @@ class dba {
                        }
                } elseif (class_exists('mysqli')) {
                        $this->driver = 'mysqli';
-                       $this->db = @new mysqli($server,$user,$pass,$db);
+                       $this->db = @new mysqli($server, $user, $pass, $db, $port);
                        if (!mysqli_connect_errno()) {
                                $this->connected = true;
 
@@ -74,8 +88,8 @@ class dba {
                        }
                } elseif (function_exists('mysql_connect')) {
                        $this->driver = 'mysql';
-                       $this->db = mysql_connect($server,$user,$pass);
-                       if ($this->db && mysql_select_db($db,$this->db)) {
+                       $this->db = mysql_connect($serveraddr, $user, $pass);
+                       if ($this->db && mysql_select_db($db, $this->db)) {
                                $this->connected = true;
 
                                if (isset($a->config["system"]["db_charset"])) {
@@ -484,18 +498,28 @@ class dba {
                unset($args[0]);
 
                // When the second function parameter is an array then use this as the parameter array
-               if ((count($args) == 1) AND (is_array($args[1]))) {
+               if ((count($args) > 0) AND (is_array($args[1]))) {
                        $params = $args[1];
-                       $i = 0;
-                       foreach ($params AS $param) {
-                               $args[++$i] = $param;
-                       }
+               } else {
+                       $params = $args;
+               }
+
+               // Renumber the array keys to be sure that they fit
+               $i = 0;
+               $args = array();
+               foreach ($params AS $param) {
+                       $args[++$i] = $param;
                }
 
                if (!self::$dbo OR !self::$dbo->connected) {
                        return false;
                }
 
+               if (substr_count($sql, '?') != count($args)) {
+                       // Question: Should we continue or stop the query here?
+                       logger('Parameter mismatch. Query "'.$sql.'" - Parameters '.print_r($args, true), LOGGER_DEBUG);
+               }
+
                $sql = self::$dbo->any_value_fallback($sql);
 
                if (x($a->config,'system') && x($a->config['system'], 'db_callstack')) {
@@ -553,9 +577,10 @@ class dba {
                                        $values[] = &$args[$param];
                                }
 
-                               array_unshift($values, $params);
-
-                               call_user_func_array(array($stmt, 'bind_param'), $values);
+                               if (count($values) > 0) {
+                                       array_unshift($values, $params);
+                                       call_user_func_array(array($stmt, 'bind_param'), $values);
+                               }
 
                                if (!$stmt->execute()) {
                                        self::$dbo->error = self::$dbo->db->error;
@@ -861,7 +886,7 @@ class dba {
 
                                        logger(dba::replace_parameters($sql, $command['param']), LOGGER_DATA);
 
-                                       if (!self::e($sql, $param)) {
+                                       if (!self::e($sql, $command['param'])) {
                                                self::p("ROLLBACK");
                                                return false;
                                        }
@@ -889,7 +914,7 @@ class dba {
 
                                                logger(dba::replace_parameters($sql, $field_values), LOGGER_DATA);
 
-                                               if (!self::e($sql, $param)) {
+                                               if (!self::e($sql, $field_values)) {
                                                        self::p("ROLLBACK");
                                                        return false;
                                                }
@@ -991,6 +1016,76 @@ class dba {
                return self::e($sql, $params);
        }
 
+       /**
+        * @brief Select rows from a table
+        *
+        * @param string $table Table name
+        * @param array $fields array of selected fields
+        * @param array $condition array of fields for condition
+        * @param array $params array of several parameters
+        *
+        * @return boolean|object If "limit" is equal "1" only a single row is returned, else a query object is returned
+        *
+        * Example:
+        * $table = "item";
+        * $fields = array("id", "uri", "uid", "network");
+        * $condition = array("uid" => 1, "network" => 'dspr');
+        * $params = array("order" => array("id", "received" => true), "limit" => 1);
+        *
+        * $data = dba::select($table, $fields, $condition, $params);
+        */
+       static public function select($table, $fields = array(), $condition = array(), $params = array()) {
+               if ($table == '') {
+                       return false;
+               }
+
+               if (count($fields) > 0) {
+                       $select_fields = "`".implode("`, `", array_values($fields))."`";
+               } else {
+                       $select_fields = "*";
+               }
+
+               if (count($condition) > 0) {
+                       $condition_string = " WHERE `".implode("` = ? AND `", array_keys($condition))."` = ?";
+               } else {
+                       $condition_string = "";
+               }
+
+               $param_string = '';
+               $single_row = false;
+
+               if (isset($params['order'])) {
+                       $param_string .= " ORDER BY ";
+                       foreach ($params['order'] AS $fields => $order) {
+                               if (!is_int($fields)) {
+                                       $param_string .= "`".$fields."` ".($order ? "DESC" : "ASC").", ";
+                               } else {
+                                       $param_string .= "`".$order."`, ";
+                               }
+                       }
+                       $param_string = substr($param_string, 0, -2);
+               }
+
+               if (isset($params['limit'])) {
+                       if (is_int($params['limit'])) {
+                               $param_string .= " LIMIT ".$params['limit'];
+                               $single_row =($params['limit'] == 1);
+                       }
+               }
+
+               $sql = "SELECT ".$select_fields." FROM `".$table."`".$condition_string.$param_string;
+
+               $result = self::p($sql, $condition);
+
+               if (is_bool($result) OR !$single_row) {
+                       return $result;
+               } else {
+                       $row = self::fetch($result);
+                       self::close($result);
+                       return $row;
+               }
+       }
+
        /**
         * @brief Closes the current statement
         *
index e555138d48a2db2998c4b64f0c53397501979cc4..6a14220c241bcdef90757555074e3a0a000da964 100644 (file)
@@ -399,6 +399,14 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                                $sql3 .= ";";
                        }
 
+                       $field_list = '';
+                       if ($is_unique && $ignore == '') {
+                               foreach ($structure['fields'] AS $fieldname => $parameters) {
+                                       $field_list .= 'ANY_VALUE(`' . $fieldname . '`),';
+                               }
+                               $field_list = rtrim($field_list, ',');
+                       }
+
                        if ($verbose) {
                                // Ensure index conversion to unique removes duplicates
                                if ($is_unique) {
@@ -415,7 +423,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                                        if ($ignore != "") {
                                                echo "SET session old_alter_table=0;\n";
                                        } else {
-                                               echo "INSERT INTO `".$temp_name."` SELECT * FROM `".$name."`".$group_by.";\n";
+                                               echo "INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";\n";
                                                echo "DROP TABLE `".$name."`;\n";
                                                echo "RENAME TABLE `".$temp_name."` TO `".$name."`;\n";
                                        }
@@ -446,7 +454,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) {
                                        if ($ignore != "") {
                                                $db->q("SET session old_alter_table=0;");
                                        } else {
-                                               $r = $db->q("INSERT INTO `".$temp_name."` SELECT * FROM `".$name."`".$group_by.";");
+                                               $r = $db->q("INSERT INTO `".$temp_name."` SELECT ".$field_list." FROM `".$name."`".$group_by.";");
                                                if (!dbm::is_result($r)) {
                                                        $errors .= print_update_error($db, $sql3);
                                                        return $errors;
@@ -879,7 +887,7 @@ function db_definition() {
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
                                        "addr" => array("addr(32)"),
-                                       "url" => array("url"),
+                                       "url" => array("UNIQUE", "url(190)"),
                                        )
                        );
        $database["ffinder"] = array(
@@ -964,7 +972,7 @@ function db_definition() {
                                        ),
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
-                                       "nurl" => array("nurl(64)"),
+                                       "nurl" => array("UNIQUE", "nurl(190)"),
                                        "name" => array("name(64)"),
                                        "nick" => array("nick(32)"),
                                        "addr" => array("addr(64)"),
@@ -1034,7 +1042,7 @@ function db_definition() {
                                        ),
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
-                                       "nurl" => array("nurl(32)"),
+                                       "nurl" => array("UNIQUE", "nurl(190)"),
                                        )
                        );
        $database["hook"] = array(
@@ -1219,6 +1227,7 @@ function db_definition() {
                                        "convid" => array("convid"),
                                        "uri" => array("uri(64)"),
                                        "parent-uri" => array("parent-uri(64)"),
+                                       "contactid" => array("contact-id"),
                                        )
                        );
        $database["mailacct"] = array(
@@ -1356,6 +1365,7 @@ function db_definition() {
                                        ),
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
+                                       "contactid" => array("contact-id"),
                                        "uid_contactid" => array("uid", "contact-id"),
                                        "uid_profile" => array("uid", "profile"),
                                        "uid_album_scale_created" => array("uid", "album(32)", "scale", "created"),
index 3f70d5b4b9156fdbcbe65469669947649be1994c..51b496f86f6e6157436bf4efeba5553d21e53c97 100644 (file)
@@ -188,7 +188,80 @@ class Diaspora {
        }
 
        /**
-        * @brief: Decodes incoming Diaspora message
+        * @brief: Decodes incoming Diaspora message in the new format
+        *
+        * @param array $importer Array of the importer user
+        * @param string $raw raw post message
+        *
+        * @return array
+        * 'message' -> decoded Diaspora XML message
+        * 'author' -> author diaspora handle
+        * 'key' -> author public key (converted to pkcs#8)
+        */
+       public static function decode_raw($importer, $raw) {
+               $data = json_decode($raw);
+
+               // Is it a private post? Then decrypt the outer Salmon
+               if (is_object($data)) {
+                       $encrypted_aes_key_bundle = base64_decode($data->aes_key);
+                       $ciphertext = base64_decode($data->encrypted_magic_envelope);
+
+                       $outer_key_bundle = '';
+                       @openssl_private_decrypt($encrypted_aes_key_bundle, $outer_key_bundle, $importer['prvkey']);
+                       $j_outer_key_bundle = json_decode($outer_key_bundle);
+
+                       if (!is_object($j_outer_key_bundle)) {
+                               logger('Outer Salmon did not verify. Discarding.');
+                               http_status_exit(400);
+                       }
+
+                       $outer_iv = base64_decode($j_outer_key_bundle->iv);
+                       $outer_key = base64_decode($j_outer_key_bundle->key);
+
+                       $xml = diaspora::aes_decrypt($outer_key, $outer_iv, $ciphertext);
+               } else {
+                       $xml = $raw;
+               }
+
+               $basedom = parse_xml_string($xml);
+
+               if (!is_object($basedom)) {
+                       logger('Received data does not seem to be an XML. Discarding.');
+                       http_status_exit(400);
+               }
+
+               $base = $basedom->children(NAMESPACE_SALMON_ME);
+
+               // Not sure if this cleaning is needed
+               $data = str_replace(array(" ", "\t", "\r", "\n"), array("", "", "", ""), $base->data);
+
+               // Build the signed data
+               $type = $base->data[0]->attributes()->type[0];
+               $encoding = $base->encoding;
+               $alg = $base->alg;
+               $signed_data = $data.'.'.base64url_encode($type).'.'.base64url_encode($encoding).'.'.base64url_encode($alg);
+
+               // This is the signature
+               $signature = base64url_decode($base->sig);
+
+               // Get the senders' public key
+               $key_id = $base->sig[0]->attributes()->key_id[0];
+               $author_addr = base64_decode($key_id);
+               $key = diaspora::key($author_addr);
+
+               $verify = rsa_verify($signed_data, $signature, $key);
+               if (!$verify) {
+                       logger('Message did not verify. Discarding.');
+                       http_status_exit(400);
+               }
+
+               return array('message' => (string)base64url_decode($base->data),
+                               'author' => unxmlify($author_addr),
+                               'key' => (string)$key);
+       }
+
+       /**
+        * @brief: Decodes incoming Diaspora message in the deprecated format
         *
         * @param array $importer Array of the importer user
         * @param string $xml urldecoded Diaspora salmon
@@ -203,9 +276,10 @@ class Diaspora {
                $public = false;
                $basedom = parse_xml_string($xml);
 
-               if (!is_object($basedom))
+               if (!is_object($basedom)) {
+                       logger("XML is not parseable.");
                        return false;
-
+               }
                $children = $basedom->children('https://joindiaspora.com/protocol');
 
                if ($children->header) {
@@ -334,6 +408,24 @@ class Diaspora {
                        return false;
                }
 
+               if (!($postdata = self::valid_posting($msg))) {
+                       logger("Invalid posting");
+                       return false;
+               }
+
+               $fields = $postdata['fields'];
+
+               // Is it a an action (comment, like, ...) for our own post?
+               if (isset($fields->parent_guid) AND !$postdata["relayed"]) {
+                       $guid = notags(unxmlify($fields->parent_guid));
+                       $importer = self::importer_for_guid($guid);
+                       if (is_array($importer)) {
+                               logger("delivering to origin: ".$importer["name"]);
+                               $message_id = self::dispatch($importer, $msg, $fields);
+                               return $message_id;
+                       }
+               }
+
                // Now distribute it to the followers
                $r = q("SELECT `user`.* FROM `user` WHERE `user`.`uid` IN
                        (SELECT `contact`.`uid` FROM `contact` WHERE `contact`.`network` = '%s' AND `contact`.`addr` = '%s')
@@ -345,13 +437,14 @@ class Diaspora {
                if (dbm::is_result($r)) {
                        foreach ($r as $rr) {
                                logger("delivering to: ".$rr["username"]);
-                               self::dispatch($rr,$msg);
+                               self::dispatch($rr, $msg, $fields);
                        }
+               } elseif (!Config::get('system', 'relay_subscribe', false)) {
+                       logger("Unwanted message from ".$msg["author"]." send by ".$_SERVER["REMOTE_ADDR"]." with ".$_SERVER["HTTP_USER_AGENT"].": ".print_r($msg, true), LOGGER_DEBUG);
                } else {
                        // Use a dummy importer to import the data for the public copy
-                       // or for comments from unknown people
                        $importer = array("uid" => 0, "page-flags" => PAGE_FREELOVE);
-                       $message_id = self::dispatch($importer,$msg);
+                       $message_id = self::dispatch($importer, $msg, $fields);
                }
 
                return $message_id;
@@ -362,27 +455,27 @@ class Diaspora {
         *
         * @param array $importer Array of the importer user
         * @param array $msg The post that will be dispatched
+        * @param object $fields SimpleXML object that contains the message
         *
         * @return int The message id of the generated message, "true" or "false" if there was an error
         */
-       public static function dispatch($importer, $msg) {
+       public static function dispatch($importer, $msg, $fields = null) {
 
                // The sender is the handle of the contact that sent the message.
                // This will often be different with relayed messages (for example "like" and "comment")
                $sender = $msg["author"];
 
-               if (!self::valid_posting($msg, $fields)) {
-                       logger("Invalid posting");
-                       return false;
+               // This is only needed for private postings since this is already done for public ones before
+               if (is_null($fields)) {
+                       if (!($postdata = self::valid_posting($msg))) {
+                               logger("Invalid posting");
+                               return false;
+                       }
+                       $fields = $postdata['fields'];
                }
 
                $type = $fields->getName();
 
-               $social_relay = Config::get('system', 'relay_subscribe', false);
-               if (!$social_relay AND ($type == 'message')) {
-                       logger("Unwanted message from ".$sender." send by ".$_SERVER["REMOTE_ADDR"]." with ".$_SERVER["HTTP_USER_AGENT"].": ".print_r($msg, true), LOGGER_DEBUG);
-               }
-
                logger("Received message type ".$type." from ".$sender." for user ".$importer["uid"], LOGGER_DEBUG);
 
                switch ($type) {
@@ -440,11 +533,10 @@ class Diaspora {
         * It also does the conversion between the old and the new diaspora format.
         *
         * @param array $msg Array with the XML, the sender handle and the sender signature
-        * @param object $fields SimpleXML object that contains the posting when it is valid
         *
-        * @return bool Is the posting valid?
+        * @return bool|array If the posting is valid then an array with an SimpleXML object is returned
         */
-       private static function valid_posting($msg, &$fields) {
+       private static function valid_posting($msg) {
 
                $data = parse_xml_string($msg["message"], false);
 
@@ -485,32 +577,38 @@ class Diaspora {
                foreach ($element->children() AS $fieldname => $entry) {
                        if ($oldXML) {
                                // Translation for the old XML structure
-                               if ($fieldname == "diaspora_handle")
+                               if ($fieldname == "diaspora_handle") {
                                        $fieldname = "author";
-
-                               if ($fieldname == "participant_handles")
+                               }
+                               if ($fieldname == "participant_handles") {
                                        $fieldname = "participants";
-
+                               }
                                if (in_array($type, array("like", "participation"))) {
-                                       if ($fieldname == "target_type")
+                                       if ($fieldname == "target_type") {
                                                $fieldname = "parent_type";
+                                       }
                                }
-
-                               if ($fieldname == "sender_handle")
+                               if ($fieldname == "sender_handle") {
                                        $fieldname = "author";
-
-                               if ($fieldname == "recipient_handle")
+                               }
+                               if ($fieldname == "recipient_handle") {
                                        $fieldname = "recipient";
-
-                               if ($fieldname == "root_diaspora_id")
+                               }
+                               if ($fieldname == "root_diaspora_id") {
                                        $fieldname = "root_author";
-
+                               }
+                               if ($type == "status_message") {
+                                       if ($fieldname == "raw_message") {
+                                               $fieldname = "text";
+                                       }
+                               }
                                if ($type == "retraction") {
-                                       if ($fieldname == "post_guid")
+                                       if ($fieldname == "post_guid") {
                                                $fieldname = "target_guid";
-
-                                       if ($fieldname == "type")
+                                       }
+                                       if ($fieldname == "type") {
                                                $fieldname = "target_type";
+                                       }
                                }
                        }
 
@@ -539,9 +637,9 @@ class Diaspora {
                        }
 
                // Only some message types have signatures. So we quit here for the other types.
-               if (!in_array($type, array("comment", "message", "like")))
-                       return true;
-
+               if (!in_array($type, array("comment", "like"))) {
+                       return array("fields" => $fields, "relayed" => false);
+               }
                // No author_signature? This is a must, so we quit.
                if (!isset($author_signature)) {
                        logger("No author signature for type ".$type." - Message: ".$msg["message"], LOGGER_DEBUG);
@@ -549,12 +647,16 @@ class Diaspora {
                }
 
                if (isset($parent_author_signature)) {
+                       $relayed = true;
+
                        $key = self::key($msg["author"]);
 
                        if (!rsa_verify($signed_data, $parent_author_signature, $key, "sha256")) {
                                logger("No valid parent author signature for parent author ".$msg["author"]. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$parent_author_signature, LOGGER_DEBUG);
                                return false;
                        }
+               } else {
+                       $relayed = false;
                }
 
                $key = self::key($fields->author);
@@ -562,8 +664,9 @@ class Diaspora {
                if (!rsa_verify($signed_data, $author_signature, $key, "sha256")) {
                        logger("No valid author signature for author ".$fields->author. " in type ".$type." - signed data: ".$signed_data." - Message: ".$msg["message"]." - Signature ".$author_signature, LOGGER_DEBUG);
                        return false;
-               } else
-                       return true;
+               } else {
+                       return array("fields" => $fields, "relayed" => $relayed);
+               }
        }
 
        /**
@@ -592,7 +695,7 @@ class Diaspora {
         *
         * @return array the queried data
         */
-       private static function person_by_handle($handle) {
+       public static function person_by_handle($handle) {
 
                $r = q("SELECT * FROM `fcontact` WHERE `network` = '%s' AND `addr` = '%s' LIMIT 1",
                        dbesc(NETWORK_DIASPORA),
@@ -829,17 +932,20 @@ class Diaspora {
                        logger("defining user ".$contact["nick"]." as friend");
                }
 
-               if (($contact["blocked"]) || ($contact["readonly"]) || ($contact["archive"]))
+               // We don't seem to like that person
+               if ($contact["blocked"] || $contact["readonly"] || $contact["archive"]) {
                        return false;
-               if ($contact["rel"] == CONTACT_IS_SHARING || $contact["rel"] == CONTACT_IS_FRIEND)
+               // We are following this person? Then it is okay
+               } elseif (($contact["rel"] == CONTACT_IS_SHARING) || ($contact["rel"] == CONTACT_IS_FRIEND)) {
                        return true;
-               if ($contact["rel"] == CONTACT_IS_FOLLOWER)
-                       if (($importer["page-flags"] == PAGE_COMMUNITY) OR $is_comment)
-                               return true;
-
-               // Messages for the global users are always accepted
-               if ($importer["uid"] == 0)
+               // Is it a post to a community? That's good
+               } elseif (($contact["rel"] == CONTACT_IS_FOLLOWER) && ($importer["page-flags"] == PAGE_COMMUNITY)) {
                        return true;
+               }
+               // Messages for the global users and comments are always accepted
+               if (($importer["uid"] == 0) || $is_comment) {
+                       return true;
+               }
 
                return false;
        }
@@ -857,7 +963,12 @@ class Diaspora {
                $contact = self::contact_by_handle($importer["uid"], $handle);
                if (!$contact) {
                        logger("A Contact for handle ".$handle." and user ".$importer["uid"]." was not found");
-                       return false;
+                       // If a contact isn't found, we accept it anyway if it is a comment
+                       if ($is_comment) {
+                               return $importer;
+                       } else {
+                               return false;
+                       }
                }
 
                if (!self::post_allow($importer, $contact, $is_comment)) {
@@ -1112,9 +1223,9 @@ class Diaspora {
                        $cid = $r[0]["id"];
                        $network = $r[0]["network"];
 
-                       // We are receiving content from a user that is about to be terminated
+                       // We are receiving content from a user that possibly is about to be terminated
                        // This means the user is vital, so we remove a possible termination date.
-                       unmark_for_death($contact);
+                       unmark_for_death($r[0]);
                } else {
                        $cid = $contact["id"];
                        $network = NETWORK_DIASPORA;
@@ -1229,24 +1340,23 @@ class Diaspora {
        }
 
        /**
-        * @brief Find the best importer for a comment
+        * @brief Find the best importer for a comment, like, ...
         *
-        * @param array $importer Array of the importer user
         * @param string $guid The guid of the item
         *
-        * @return array the importer that fits the best
+        * @return array|boolean the origin owner of that post - or false
         */
-       private static function importer_for_comment($importer, $guid) {
+       private static function importer_for_guid($guid) {
                $item = dba::fetch_first("SELECT `uid` FROM `item` WHERE `origin` AND `guid` = ? LIMIT 1", $guid);
 
                if (dbm::is_result($item)) {
                        logger("Found user ".$item['uid']." as owner of item ".$guid, LOGGER_DEBUG);
                        $contact = dba::fetch_first("SELECT * FROM `contact` WHERE `self` AND `uid` = ?", $item['uid']);
                        if (dbm::is_result($contact)) {
-                               $importer = $contact;
+                               return $contact;
                        }
                }
-               return $importer;
+               return false;
        }
 
        /**
@@ -1260,10 +1370,10 @@ class Diaspora {
         * @return int The message id of the generated comment or "false" if there was an error
         */
        private static function receive_comment($importer, $sender, $data, $xml) {
+               $author = notags(unxmlify($data->author));
                $guid = notags(unxmlify($data->guid));
                $parent_guid = notags(unxmlify($data->parent_guid));
                $text = unxmlify($data->text);
-               $author = notags(unxmlify($data->author));
 
                if (isset($data->created_at)) {
                        $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
@@ -1278,11 +1388,6 @@ class Diaspora {
                        $thr_uri = "";
                }
 
-               // Find the best importer when there was no importer found
-               if ($importer["uid"] == 0) {
-                       $importer = self::importer_for_comment($importer, $parent_guid);
-               }
-
                $contact = self::allowed_contact_by_handle($importer, $sender, true);
                if (!$contact) {
                        return false;
@@ -1383,16 +1488,9 @@ class Diaspora {
         * @return bool "true" if it was successful
         */
        private static function receive_conversation_message($importer, $contact, $data, $msg, $mesg, $conversation) {
+               $author = notags(unxmlify($data->author));
                $guid = notags(unxmlify($data->guid));
                $subject = notags(unxmlify($data->subject));
-               $author = notags(unxmlify($data->author));
-
-               $msg_guid = notags(unxmlify($mesg->guid));
-               $msg_parent_guid = notags(unxmlify($mesg->parent_guid));
-               $msg_parent_author_signature = notags(unxmlify($mesg->parent_author_signature));
-               $msg_author_signature = notags(unxmlify($mesg->author_signature));
-               $msg_text = unxmlify($mesg->text);
-               $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
 
                // "diaspora_handle" is the element name from the old version
                // "author" is the element name from the new version
@@ -1404,7 +1502,10 @@ class Diaspora {
                        return false;
                }
 
+               $msg_guid = notags(unxmlify($mesg->guid));
                $msg_conversation_guid = notags(unxmlify($mesg->conversation_guid));
+               $msg_text = unxmlify($mesg->text);
+               $msg_created_at = datetime_convert("UTC", "UTC", notags(unxmlify($mesg->created_at)));
 
                if ($msg_conversation_guid != $guid) {
                        logger("message conversation guid does not belong to the current conversation.");
@@ -1414,41 +1515,7 @@ class Diaspora {
                $body = diaspora2bb($msg_text);
                $message_uri = $msg_author.":".$msg_guid;
 
-               $author_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
-
-               $author_signature = base64_decode($msg_author_signature);
-
-               if (strcasecmp($msg_author,$msg["author"]) == 0) {
-                       $person = $contact;
-                       $key = $msg["key"];
-               } else {
-                       $person = self::person_by_handle($msg_author);
-
-                       if (is_array($person) && x($person, "pubkey")) {
-                               $key = $person["pubkey"];
-                       } else {
-                               logger("unable to find author details");
-                                       return false;
-                       }
-               }
-
-               if (!rsa_verify($author_signed_data, $author_signature, $key, "sha256")) {
-                       logger("verification failed.");
-                       return false;
-               }
-
-               if ($msg_parent_author_signature) {
-                       $owner_signed_data = $msg_guid.";".$msg_parent_guid.";".$msg_text.";".unxmlify($mesg->created_at).";".$msg_author.";".$msg_conversation_guid;
-
-                       $parent_author_signature = base64_decode($msg_parent_author_signature);
-
-                       $key = $msg["key"];
-
-                       if (!rsa_verify($owner_signed_data, $parent_author_signature, $key, "sha256")) {
-                               logger("owner verification failed.");
-                               return false;
-                       }
-               }
+               $person = self::person_by_handle($msg_author);
 
                $r = q("SELECT `id` FROM `mail` WHERE `uri` = '%s' LIMIT 1",
                        dbesc($message_uri)
@@ -1508,10 +1575,10 @@ class Diaspora {
         * @return bool Success
         */
        private static function receive_conversation($importer, $msg, $data) {
+               $author = notags(unxmlify($data->author));
                $guid = notags(unxmlify($data->guid));
                $subject = notags(unxmlify($data->subject));
                $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
-               $author = notags(unxmlify($data->author));
                $participants = notags(unxmlify($data->participants));
 
                $messages = $data->message;
@@ -1616,11 +1683,11 @@ class Diaspora {
         * @return int The message id of the generated like or "false" if there was an error
         */
        private static function receive_like($importer, $sender, $data) {
-               $positive = notags(unxmlify($data->positive));
+               $author = notags(unxmlify($data->author));
                $guid = notags(unxmlify($data->guid));
-               $parent_type = notags(unxmlify($data->parent_type));
                $parent_guid = notags(unxmlify($data->parent_guid));
-               $author = notags(unxmlify($data->author));
+               $parent_type = notags(unxmlify($data->parent_type));
+               $positive = notags(unxmlify($data->positive));
 
                // likes on comments aren't supported by Diaspora - only on posts
                // But maybe this will be supported in the future, so we will accept it.
@@ -1715,12 +1782,11 @@ class Diaspora {
         * @return bool Success?
         */
        private static function receive_message($importer, $data) {
+               $author = notags(unxmlify($data->author));
                $guid = notags(unxmlify($data->guid));
-               $parent_guid = notags(unxmlify($data->parent_guid));
+               $conversation_guid = notags(unxmlify($data->conversation_guid));
                $text = unxmlify($data->text);
                $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
-               $author = notags(unxmlify($data->author));
-               $conversation_guid = notags(unxmlify($data->conversation_guid));
 
                $contact = self::allowed_contact_by_handle($importer, $author, true);
                if (!$contact) {
@@ -1775,7 +1841,7 @@ class Diaspora {
                        0,
                        1,
                        dbesc($message_uri),
-                       dbesc($author.":".$parent_guid),
+                       dbesc($author.":".$conversation["guid"]),
                        dbesc($created_at)
                );
 
@@ -1844,9 +1910,9 @@ class Diaspora {
                $name = unxmlify($data->first_name).((strlen($data->last_name)) ? " ".unxmlify($data->last_name) : "");
                $image_url = unxmlify($data->image_url);
                $birthday = unxmlify($data->birthday);
-               $location = diaspora2bb(unxmlify($data->location));
-               $about = diaspora2bb(unxmlify($data->bio));
                $gender = unxmlify($data->gender);
+               $about = diaspora2bb(unxmlify($data->bio));
+               $location = diaspora2bb(unxmlify($data->location));
                $searchable = (unxmlify($data->searchable) == "true");
                $nsfw = (unxmlify($data->nsfw) == "true");
                $tags = unxmlify($data->tag_string);
@@ -2266,12 +2332,13 @@ class Diaspora {
         * @return int the message id
         */
        private static function receive_reshare($importer, $data, $xml) {
+               $author = notags(unxmlify($data->author));
+               $guid = notags(unxmlify($data->guid));
+               $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
                $root_author = notags(unxmlify($data->root_author));
                $root_guid = notags(unxmlify($data->root_guid));
-               $guid = notags(unxmlify($data->guid));
-               $author = notags(unxmlify($data->author));
+               /// @todo handle unprocessed property "provider_display_name"
                $public = notags(unxmlify($data->public));
-               $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
 
                $contact = self::allowed_contact_by_handle($importer, $author, false);
                if (!$contact) {
@@ -2346,9 +2413,9 @@ class Diaspora {
         * @return bool success
         */
        private static function item_retraction($importer, $contact, $data) {
-               $target_type = notags(unxmlify($data->target_type));
-               $target_guid = notags(unxmlify($data->target_guid));
                $author = notags(unxmlify($data->author));
+               $target_guid = notags(unxmlify($data->target_guid));
+               $target_type = notags(unxmlify($data->target_type));
 
                $person = self::person_by_handle($author);
                if (!is_array($person)) {
@@ -2356,11 +2423,16 @@ class Diaspora {
                        return false;
                }
 
+               if (!isset($contact["url"])) {
+                       $contact["url"] = $person["url"];
+               }
+
                $r = q("SELECT `id`, `parent`, `parent-uri`, `author-link` FROM `item` WHERE `guid` = '%s' AND `uid` = %d AND NOT `file` LIKE '%%[%%' LIMIT 1",
                        dbesc($target_guid),
                        intval($importer["uid"])
                );
                if (!$r) {
+                       logger("Target guid ".$target_guid." was not found for user ".$importer["uid"]);
                        return false;
                }
 
@@ -2406,7 +2478,7 @@ class Diaspora {
                $target_type = notags(unxmlify($data->target_type));
 
                $contact = self::contact_by_handle($importer["uid"], $sender);
-               if (!$contact) {
+               if (!$contact AND (in_array($target_type, array("Contact", "Person")))) {
                        logger("cannot find contact for sender: ".$sender." and user ".$importer["uid"]);
                        return false;
                }
@@ -2419,7 +2491,7 @@ class Diaspora {
                        case "Post": // "Post" will be supported in a future version
                        case "Reshare":
                        case "StatusMessage":
-                               return self::item_retraction($importer, $contact, $data);;
+                               return self::item_retraction($importer, $contact, $data);
 
                        case "Contact":
                        case "Person":
@@ -2445,19 +2517,13 @@ class Diaspora {
         * @return int The message id of the newly created item
         */
        private static function receive_status_message($importer, $data, $xml) {
-               $raw_message = unxmlify($data->raw_message);
-               $guid = notags(unxmlify($data->guid));
                $author = notags(unxmlify($data->author));
-               $public = notags(unxmlify($data->public));
+               $guid = notags(unxmlify($data->guid));
                $created_at = datetime_convert("UTC", "UTC", notags(unxmlify($data->created_at)));
+               $public = notags(unxmlify($data->public));
+               $text = unxmlify($data->text);
                $provider_display_name = notags(unxmlify($data->provider_display_name));
 
-               /// @todo enable support for polls
-               //if ($data->poll) {
-               //      foreach ($data->poll AS $poll)
-               //              print_r($poll);
-               //      die("poll!\n");
-               //}
                $contact = self::allowed_contact_by_handle($importer, $author, false);
                if (!$contact) {
                        return false;
@@ -2475,7 +2541,7 @@ class Diaspora {
                        }
                }
 
-               $body = diaspora2bb($raw_message);
+               $body = diaspora2bb($text);
 
                $datarray = array();
 
@@ -2496,6 +2562,15 @@ class Diaspora {
                        }
                }
 
+               /// @todo enable support for polls
+               //if ($data->poll) {
+               //      foreach ($data->poll AS $poll)
+               //              print_r($poll);
+               //      die("poll!\n");
+               //}
+
+               /// @todo enable support for events
+
                $datarray["uid"] = $importer["uid"];
                $datarray["contact-id"] = $contact["id"];
                $datarray["network"] = NETWORK_DIASPORA;
index 82595529d2bc1f93cfea4dbbfb169abb04340f8f..c3bdadf55b9522a714dc8ceaceb32ddc53d69d61 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 use Friendica\App;
+use Friendica\Core\Config;
 
 require_once("include/Contact.php");
 require_once("include/threads.php");
@@ -29,42 +30,6 @@ class ostatus {
        const OSTATUS_DEFAULT_POLL_TIMEFRAME = 1440; // given in minutes
        const OSTATUS_DEFAULT_POLL_TIMEFRAME_MENTIONS = 14400; // given in minutes
 
-       /**
-        * @brief Mix two paths together to possibly fix missing parts
-        *
-        * @param string $avatar Path to the avatar
-        * @param string $base Another path that is hopefully complete
-        *
-        * @return string fixed avatar path
-        */
-       public static function fix_avatar($avatar, $base) {
-               $base_parts = parse_url($base);
-
-               // Remove all parts that could create a problem
-               unset($base_parts['path']);
-               unset($base_parts['query']);
-               unset($base_parts['fragment']);
-
-               $avatar_parts = parse_url($avatar);
-
-               // Now we mix them
-               $parts = array_merge($base_parts, $avatar_parts);
-
-               // And put them together again
-               $scheme   = isset($parts['scheme']) ? $parts['scheme'] . '://' : '';
-               $host     = isset($parts['host']) ? $parts['host'] : '';
-               $port     = isset($parts['port']) ? ':' . $parts['port'] : '';
-               $path     = isset($parts['path']) ? $parts['path'] : '';
-               $query    = isset($parts['query']) ? '?' . $parts['query'] : '';
-               $fragment = isset($parts['fragment']) ? '#' . $parts['fragment'] : '';
-
-               $fixed = $scheme.$host.$port.$path.$query.$fragment;
-
-               logger('Base: '.$base.' - Avatar: '.$avatar.' - Fixed: '.$fixed, LOGGER_DATA);
-
-               return $fixed;
-       }
-
        /**
         * @brief Fetches author data
         *
@@ -81,23 +46,43 @@ class ostatus {
                $author = array();
                $author["author-link"] = $xpath->evaluate('atom:author/atom:uri/text()', $context)->item(0)->nodeValue;
                $author["author-name"] = $xpath->evaluate('atom:author/atom:name/text()', $context)->item(0)->nodeValue;
+               $addr = $xpath->evaluate('atom:author/atom:email/text()', $context)->item(0)->nodeValue;
 
                $aliaslink = $author["author-link"];
 
                $alternate = $xpath->query("atom:author/atom:link[@rel='alternate']", $context)->item(0)->attributes;
-               if (is_object($alternate))
-                       foreach($alternate AS $attributes)
-                               if ($attributes->name == "href")
+               if (is_object($alternate)) {
+                       foreach ($alternate AS $attributes) {
+                               if (($attributes->name == "href") AND ($attributes->textContent != "")) {
                                        $author["author-link"] = $attributes->textContent;
+                               }
+                       }
+               }
 
-               $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
-                       intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
-                       dbesc(normalise_link($aliaslink)), dbesc(NETWORK_STATUSNET));
-               if ($r) {
-                       $contact = $r[0];
-                       $author["contact-id"] = $r[0]["id"];
-               } else
-                       $author["contact-id"] = $contact["id"];
+               $author["contact-id"] = $contact["id"];
+
+               if ($author["author-link"] != "") {
+                       if ($aliaslink == "") {
+                               $aliaslink = $author["author-link"];
+                       }
+
+                       $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` IN ('%s', '%s') AND `network` != '%s'",
+                               intval($importer["uid"]), dbesc(normalise_link($author["author-link"])),
+                               dbesc(normalise_link($aliaslink)), dbesc(NETWORK_STATUSNET));
+                       if (dbm::is_result($r)) {
+                               $contact = $r[0];
+                               $author["contact-id"] = $r[0]["id"];
+                               $author["author-link"] = $r[0]["url"];
+                       }
+               } elseif ($addr != "") {
+                       // Should not happen
+                       $contact = dba::fetch_first("SELECT * FROM `contact` WHERE `uid` = ? AND `addr` = ? AND `network` != ?",
+                                       $importer["uid"], $addr, NETWORK_STATUSNET);
+                       if (dbm::is_result($contact)) {
+                               $author["contact-id"] = $contact["id"];
+                               $author["author-link"] = $contact["url"];
+                       }
+               }
 
                $avatarlist = array();
                $avatars = $xpath->query("atom:author/atom:link[@rel='avatar']", $context);
@@ -115,7 +100,7 @@ class ostatus {
                }
                if (count($avatarlist) > 0) {
                        krsort($avatarlist);
-                       $author["author-avatar"] = self::fix_avatar(current($avatarlist), $author["author-link"]);
+                       $author["author-avatar"] = Probe::fix_avatar(current($avatarlist), $author["author-link"]);
                }
 
                $displayname = $xpath->evaluate('atom:author/poco:displayName/text()', $context)->item(0)->nodeValue;
@@ -1176,7 +1161,7 @@ class ostatus {
                                $arr["owner-name"] = $single_conv->actor->portablecontacts_net->displayName;
 
                        $arr["owner-link"] = $actor;
-                       $arr["owner-avatar"] = self::fix_avatar($single_conv->actor->image->url, $arr["owner-link"]);
+                       $arr["owner-avatar"] = Probe::fix_avatar($single_conv->actor->image->url, $arr["owner-link"]);
 
                        $arr["author-name"] = $arr["owner-name"];
                        $arr["author-link"] = $arr["owner-link"];
@@ -1241,7 +1226,7 @@ class ostatus {
                                        $arr["author-name"] = $single_conv->object->actor->contact->displayName;
                                }
                                $arr["author-link"] = $single_conv->object->actor->url;
-                               $arr["author-avatar"] = self::fix_avatar($single_conv->object->actor->image->url, $arr["author-link"]);
+                               $arr["author-avatar"] = Probe::fix_avatar($single_conv->object->actor->image->url, $arr["author-link"]);
 
                                $arr["app"] = $single_conv->object->provider->displayName."#";
                                //$arr["verb"] = $single_conv->object->verb;
@@ -2270,6 +2255,9 @@ class ostatus {
                $root = self::add_header($doc, $owner);
 
                foreach ($items AS $item) {
+                       if (Config::get('system', 'ostatus_debug')) {
+                               $item['body'] .= '🍼';
+                       }
                        $entry = self::entry($doc, $item, $owner);
                        $root->appendChild($entry);
                }
@@ -2290,6 +2278,10 @@ class ostatus {
                $doc = new DOMDocument('1.0', 'utf-8');
                $doc->formatOutput = true;
 
+               if (Config::get('system', 'ostatus_debug')) {
+                       $item['body'] .= '🐟';
+               }
+
                $entry = self::entry($doc, $item, $owner, true);
 
                $doc->appendChild($entry);
index 3796247f7ed3cd90a05d075dc6a57dc654aeb0d7..24d7b6963792eebde36b51b18288cb0d561d1288 100644 (file)
@@ -35,6 +35,9 @@ function handle_pubsubhubbub($id) {
        else
                $rr = $r[0];
 
+       /// @todo Check server status with poco_check_server()
+       // Before this can be done we need a way to safely detect the server url.
+
        logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
 
        $params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
index 820232b12a39fbc6ba87d8580d4e5127f93cdc2c..03bd14359d1ba27d434b4726e481e85d68d8653b 100644 (file)
@@ -1009,6 +1009,7 @@ function poco_check_server($server_url, $network = "", $force = false) {
        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);
+               dba::p("UPDATE `gserver` SET `last_failure` = ? WHERE `nurl` = ?", datetime_convert(), normalise_link($server_url));
                return false;
        }
 
@@ -1023,6 +1024,7 @@ function poco_check_server($server_url, $network = "", $force = false) {
                // Quit if there is a timeout
                if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
+                       dba::p("UPDATE `gserver` SET `last_failure` = ? WHERE `nurl` = ?", datetime_convert(), normalise_link($server_url));
                        return false;
                }
 
@@ -1032,12 +1034,10 @@ function poco_check_server($server_url, $network = "", $force = false) {
        if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
                // Workaround for bad configured servers (known nginx problem)
                if (!in_array($serverret["debug"]["http_code"], array("403", "404"))) {
-                       $last_failure = datetime_convert();
                        $failure = true;
                }
                $possible_failure = true;
-       } elseif ($network == NETWORK_DIASPORA)
-               $last_contact = datetime_convert();
+       }
 
        // If the server has no possible failure we reset the cached data
        if (!$possible_failure) {
@@ -1055,8 +1055,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        $data = json_decode($serverret["body"]);
                        if (isset($data->totalResults)) {
                                $poco = $server_url."/poco";
-                               $last_contact = datetime_convert();
-
                                $server = poco_detect_poco_data($data);
                                if ($server) {
                                        $platform = $server['platform'];
@@ -1073,7 +1071,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                $serverret = z_fetch_url($server_url);
 
                if (!$serverret["success"] OR ($serverret["body"] == "")) {
-                       $last_failure = datetime_convert();
                        $failure = true;
                } else {
                        $server = poco_detect_server_type($serverret["body"]);
@@ -1082,7 +1079,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                                $network = $server['network'];
                                $version = $server['version'];
                                $site_name = $server['site_name'];
-                               $last_contact = datetime_convert();
                        }
 
                        $lines = explode("\n",$serverret["header"]);
@@ -1096,15 +1092,11 @@ function poco_check_server($server_url, $network = "", $force = false) {
                                                $network = NETWORK_DIASPORA;
                                                $versionparts = explode("-", $version);
                                                $version = $versionparts[0];
-                                               $last_contact = datetime_convert();
                                        }
 
                                        if(stristr($line,'Server: Mastodon')) {
                                                $platform = "Mastodon";
                                                $network = NETWORK_OSTATUS;
-                                               // Mastodon doesn't reveal version numbers
-                                               $version = "";
-                                               $last_contact = datetime_convert();
                                        }
                                }
                        }
@@ -1123,7 +1115,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
                        $version = trim($version, '"');
                        $network = NETWORK_OSTATUS;
-                       $last_contact = datetime_convert();
                }
 
                // Test for GNU Social
@@ -1135,7 +1126,19 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
                        $version = trim($version, '"');
                        $network = NETWORK_OSTATUS;
-                       $last_contact = datetime_convert();
+               }
+
+               // Test for Mastodon
+               $serverret = z_fetch_url($server_url."/api/v1/instance");
+               if ($serverret["success"] AND ($serverret["body"] != '')) {
+                       $data = json_decode($serverret["body"]);
+                       if (isset($data->version)) {
+                               $platform = "Mastodon";
+                               $version = $data->version;
+                               $site_name = $data->title;
+                               $info = $data->description;
+                               $network = NETWORK_OSTATUS;
+                       }
                }
        }
 
@@ -1145,8 +1148,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                if ($serverret["success"]) {
                        $data = json_decode($serverret["body"]);
                        if (isset($data->site->server)) {
-                               $last_contact = datetime_convert();
-
                                if (isset($data->site->platform)) {
                                        $platform = $data->site->platform->PLATFORM_NAME;
                                        $version = $data->site->platform->STD_VERSION;
@@ -1193,7 +1194,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                }
        }
 
-
        // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
        if (!$failure) {
                $serverret = z_fetch_url($server_url."/statistics.json");
@@ -1221,9 +1221,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        } else {
                                $register_policy = REGISTER_CLOSED;
                        }
-
-                       if (isset($data->version))
-                               $last_contact = datetime_convert();
                }
        }
 
@@ -1248,8 +1245,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        if (isset($server['site_name'])) {
                                $site_name = $server['site_name'];
                        }
-
-                       $last_contact = datetime_convert();
                }
        }
 
@@ -1265,7 +1260,6 @@ function poco_check_server($server_url, $network = "", $force = false) {
                        $data = json_decode($serverret["body"]);
 
                        if (isset($data->version)) {
-                               $last_contact = datetime_convert();
                                $network = NETWORK_DFRN;
 
                                $noscrape = $data->no_scrape_url;
@@ -1291,13 +1285,14 @@ function poco_check_server($server_url, $network = "", $force = false) {
        }
 
        if ($possible_failure AND !$failure) {
-               $last_failure = datetime_convert();
                $failure = true;
        }
 
        if ($failure) {
                $last_contact = $orig_last_contact;
+               $last_failure = datetime_convert();
        } else {
+               $last_contact = datetime_convert();
                $last_failure = $orig_last_failure;
        }
 
index 3ed9fa30f9f2b23ae3007dda2348b0c9bb963abd..58dde55a6ddd5f8057563e12b83f5cf8fc4556ee 100644 (file)
@@ -78,22 +78,26 @@ function contact_format(item) {
 }
 
 function editor_replace(item) {
-       if(typeof item.replace !== 'undefined') {
+       if (typeof item.replace !== 'undefined') {
                return '$1$2' + item.replace;
        }
 
+       if (typeof item.addr !== 'undefined') {
+               return '$1$2' + item.addr + ' ';
+       }
+
        // $2 ensures that prefix (@,@!) is preserved
        var id = item.id;
 
        // don't add the id if it is empty (the id empty eg. if there are unknow contacts in thread)
-       if(id.length < 1)
+       if (id.length < 1) {
                return '$1$2' + item.nick.replace(' ', '') + ' ';
-
+       }
        // 16 chars of hash should be enough. Full hash could be used if it can be done in a visually appealing way.
        // 16 chars is also the minimum length in the backend (otherwise it's interpreted as a local id).
-       if(id.length > 16)
+       if (id.length > 16) {
                id = item.id.substring(0,16);
-
+       }
        return '$1$2' + item.nick.replace(' ', '') + '+' + id + ' ';
 }
 
index 7a5ff87d3b06bd8051c03d80662d5f2b6b634d5e..d9f2d95760d3449b71f550887e0ff00dd85e3113 100644 (file)
@@ -279,7 +279,7 @@ function admin_page_blocklist(App $a) {
                        $blocklistform[] = array(
                                'domain' => array("domain[$id]", t('Blocked domain'), $b['domain'], '', t('The blocked domain'), 'required', '', ''),
                                'reason' => array("reason[$id]", t("Reason for the block"), $b['reason'], t('The reason why you blocked this domain.').'('.$b['domain'].')', 'required', '', ''),
-                               'delete' => array("delete[$id]", t("Delete domain").' ('.$b['domain'].')', False , "Check to delete this entry from the blocklist")
+                               'delete' => array("delete[$id]", t("Delete domain").' ('.$b['domain'].')', False , t("Check to delete this entry from the blocklist"))
                        );
                }
        }
index 30d847e25f10b50fa65921739b82af503fd96b8c..41d10cc9e2b2d264bd9ba00de8891e3a98cf22e7 100644 (file)
@@ -262,7 +262,7 @@ function _contact_update_profile($contact_id) {
        if ($uid != local_user())
                return;
 
-       $data = probe_url($r[0]["url"]);
+       $data = Probe::uri($r[0]["url"], "", 0, false);
 
        // "Feed" or "Unknown" is mostly a sign of communication problems
        if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"]))
index abc91ce37e15ee96d296b05d77cb9ede6506812e..9048642174706bd486689bc9fdbca5907c425902 100644 (file)
@@ -11,29 +11,27 @@ require_once('include/crypto.php');
 require_once('include/diaspora.php');
 
 function receive_post(App $a) {
-
-       $enabled = intval(get_config('system','diaspora_enabled'));
-       if(! $enabled) {
+       $enabled = intval(get_config('system', 'diaspora_enabled'));
+       if (!$enabled) {
                logger('mod-diaspora: disabled');
                http_status_exit(500);
        }
 
        $public = false;
 
-       if(($a->argc == 2) && ($a->argv[1] === 'public')) {
+       if (($a->argc == 2) && ($a->argv[1] === 'public')) {
                $public = true;
-       }
-       else {
+       } else {
 
-               if($a->argc != 3 || $a->argv[1] !== 'users')
+               if ($a->argc != 3 || $a->argv[1] !== 'users') {
                        http_status_exit(500);
-
+               }
                $guid = $a->argv[2];
 
                $r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($guid)
                );
-               if (! dbm::is_result($r)) {
+               if (!dbm::is_result($r)) {
                        http_status_exit(500);
                }
 
@@ -46,29 +44,34 @@ function receive_post(App $a) {
 
        $xml = urldecode($_POST['xml']);
 
-       logger('mod-diaspora: new salmon ' . $xml, LOGGER_DATA);
-
-       if(! $xml)
-               http_status_exit(500);
-
-       logger('mod-diaspora: message is okay', LOGGER_DEBUG);
+       if (!$xml) {
+               $postdata = file_get_contents("php://input");
+               if ($postdata == '') {
+                       http_status_exit(500);
+               }
 
-       $msg = Diaspora::decode($importer,$xml);
+               logger('mod-diaspora: message is in the new format', LOGGER_DEBUG);
+               $msg = Diaspora::decode_raw($importer, $postdata);
+       } else {
+               logger('mod-diaspora: message is in the old format', LOGGER_DEBUG);
+               $msg = Diaspora::decode($importer, $xml);
+       }
 
        logger('mod-diaspora: decoded', LOGGER_DEBUG);
 
-       logger('mod-diaspora: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
+       logger('mod-diaspora: decoded msg: ' . print_r($msg, true), LOGGER_DATA);
 
-       if(! is_array($msg))
+       if (!is_array($msg)) {
                http_status_exit(500);
+       }
 
        logger('mod-diaspora: dispatching', LOGGER_DEBUG);
 
        $ret = 0;
-       if($public) {
+       if ($public) {
                Diaspora::dispatch_public($msg);
        } else {
-               $ret = Diaspora::dispatch($importer,$msg);
+               $ret = Diaspora::dispatch($importer, $msg);
        }
 
        http_status_exit(($ret) ? $ret : 200);
index bdb3d68839e9a66b199aa53179245c052b1a0d01..e3b1c31b33a5fee9cc01c8c97eb11b6877ef7a3c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1222);
+define('UPDATE_VERSION' , 1224);
 
 /**
  *
index 09c7f12e7f9661bb9d8b7c54c4ce8932591be6a0..3da18ca6b2e8ed86b1d6fdd5cc84612f6145c95b 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-27 07:35+0200\n"
+"POT-Creation-Date: 2017-05-03 07:08+0200\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,7 +18,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
 #: view/theme/vier/theme.php:254
 msgid "Forums"
 msgstr ""
@@ -28,8 +28,8 @@ msgid "External link to forum"
 msgstr ""
 
 #: include/ForumManager.php:119 include/contact_widgets.php:269
-#: include/items.php:2382 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:259 boot.php:985
+#: include/items.php:2450 mod/content.php:624 object/Item.php:420
+#: view/theme/vier/theme.php:259 boot.php:1000
 msgid "show more"
 msgstr ""
 
@@ -109,8 +109,8 @@ msgid "New Follower"
 msgstr ""
 
 #: include/Photo.php:1038 include/Photo.php:1054 include/Photo.php:1062
-#: include/Photo.php:1087 include/message.php:146 mod/item.php:467
-#: mod/wall_upload.php:249
+#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
+#: mod/item.php:467
 msgid "Wall Photos"
 msgstr ""
 
@@ -122,7 +122,7 @@ msgstr ""
 msgid "noreply"
 msgstr ""
 
-#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1548
+#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr ""
@@ -148,20 +148,20 @@ msgid "%1$s may attend %2$s's %3$s"
 msgstr ""
 
 #: include/like.php:178 include/conversation.php:141
-#: include/conversation.php:293 include/text.php:1806 mod/subthread.php:88
+#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
 #: mod/tagger.php:62
 msgid "photo"
 msgstr ""
 
 #: include/like.php:178 include/conversation.php:136
 #: include/conversation.php:146 include/conversation.php:288
-#: include/conversation.php:297 include/diaspora.php:1552 mod/subthread.php:88
+#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
 #: mod/tagger.php:62
 msgid "status"
 msgstr ""
 
 #: include/like.php:180 include/conversation.php:133
-#: include/conversation.php:285 include/text.php:1804
+#: include/conversation.php:285 include/text.php:1870
 msgid "event"
 msgstr ""
 
@@ -177,11 +177,11 @@ msgstr ""
 msgid "Clear notifications"
 msgstr ""
 
-#: include/nav.php:40 include/text.php:1017
+#: include/nav.php:40 include/text.php:1083
 msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1809
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
 msgid "Logout"
 msgstr ""
 
@@ -244,7 +244,7 @@ msgstr ""
 msgid "Your personal notes"
 msgstr ""
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1810
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
 msgid "Login"
 msgstr ""
 
@@ -256,7 +256,7 @@ msgstr ""
 msgid "Home Page"
 msgstr ""
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1786
+#: include/nav.php:109 mod/register.php:289 boot.php:1844
 msgid "Register"
 msgstr ""
 
@@ -280,7 +280,7 @@ msgstr ""
 msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/nav.php:123 include/text.php:1014 mod/search.php:149
+#: include/nav.php:123 include/text.php:1080 mod/search.php:149
 msgid "Search"
 msgstr ""
 
@@ -288,16 +288,16 @@ msgstr ""
 msgid "Search site content"
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1022
+#: include/nav.php:126 include/text.php:1088
 msgid "Full Text"
 msgstr ""
 
-#: include/nav.php:127 include/text.php:1023
+#: include/nav.php:127 include/text.php:1089
 msgid "Tags"
 msgstr ""
 
 #: include/nav.php:128 include/nav.php:192 include/identity.php:838
-#: include/identity.php:841 include/text.php:1024 mod/contacts.php:800
+#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
 #: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
 msgid "Contacts"
 msgstr ""
@@ -403,8 +403,8 @@ msgstr ""
 msgid "Delegate Page Management"
 msgstr ""
 
-#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1615
-#: mod/admin.php:1891 mod/settings.php:111 view/theme/frio/theme.php:256
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
 msgid "Settings"
 msgstr ""
 
@@ -884,7 +884,7 @@ msgstr ""
 
 #: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
 #: include/event.php:527 include/identity.php:336 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:238
+#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
 msgid "Location:"
 msgstr ""
 
@@ -937,19 +937,19 @@ msgstr ""
 msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:978
+#: include/contact_selectors.php:56 mod/admin.php:980
 msgid "Frequently"
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:979
+#: include/contact_selectors.php:57 mod/admin.php:981
 msgid "Hourly"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:980
+#: include/contact_selectors.php:58 mod/admin.php:982
 msgid "Twice daily"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:981
+#: include/contact_selectors.php:59 mod/admin.php:983
 msgid "Daily"
 msgstr ""
 
@@ -974,7 +974,7 @@ msgid "RSS/Atom"
 msgstr ""
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1487 mod/admin.php:1500 mod/admin.php:1513 mod/admin.php:1531
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
 msgid "Email"
 msgstr ""
 
@@ -1191,8 +1191,8 @@ msgid "Select"
 msgstr ""
 
 #: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
-#: mod/content.php:454 mod/content.php:760 mod/admin.php:1505
-#: mod/photos.php:1729 mod/settings.php:744 object/Item.php:138
+#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
+#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
 msgid "Delete"
 msgstr ""
 
@@ -1446,7 +1446,7 @@ msgstr ""
 msgid "Preview"
 msgstr ""
 
-#: include/conversation.php:1317 include/items.php:2099 mod/contacts.php:455
+#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
 #: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
 #: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
 #: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
@@ -1590,72 +1590,16 @@ msgstr ""
 msgid "%s's birthday"
 msgstr ""
 
-#: include/datetime.php:621 include/dfrn.php:1230
+#: include/datetime.php:621 include/dfrn.php:1252
 #, php-format
 msgid "Happy Birthday %s"
 msgstr ""
 
-#: include/dba.php:46 include/dba_pdo.php:72
+#: include/dba_pdo.php:72 include/dba.php:47
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: include/dbstructure.php:20
-msgid "There are no tables on MyISAM."
-msgstr ""
-
-#: include/dbstructure.php:61
-#, 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/dbstructure.php:66
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
-
-#: include/dbstructure.php:190
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr ""
-
-#: include/dbstructure.php:193
-msgid "Errors encountered performing database changes: "
-msgstr ""
-
-#: include/dbstructure.php:201
-msgid ": Database update"
-msgstr ""
-
-#: include/dbstructure.php:422
-#, php-format
-msgid "%s: updating %s table."
-msgstr ""
-
-#: include/dfrn.php:1229
-#, php-format
-msgid "%s\\'s birthday"
-msgstr ""
-
-#: include/diaspora.php:2106
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: include/diaspora.php:3113
-msgid "Attachments:"
-msgstr ""
-
 #: include/enotify.php:24
 msgid "Friendica Notification"
 msgstr ""
@@ -1980,31 +1924,31 @@ msgstr ""
 msgid "Sat"
 msgstr ""
 
-#: include/event.php:484 include/text.php:1132 mod/settings.php:981
+#: include/event.php:484 include/text.php:1198 mod/settings.php:981
 msgid "Sunday"
 msgstr ""
 
-#: include/event.php:485 include/text.php:1132 mod/settings.php:981
+#: include/event.php:485 include/text.php:1198 mod/settings.php:981
 msgid "Monday"
 msgstr ""
 
-#: include/event.php:486 include/text.php:1132
+#: include/event.php:486 include/text.php:1198
 msgid "Tuesday"
 msgstr ""
 
-#: include/event.php:487 include/text.php:1132
+#: include/event.php:487 include/text.php:1198
 msgid "Wednesday"
 msgstr ""
 
-#: include/event.php:488 include/text.php:1132
+#: include/event.php:488 include/text.php:1198
 msgid "Thursday"
 msgstr ""
 
-#: include/event.php:489 include/text.php:1132
+#: include/event.php:489 include/text.php:1198
 msgid "Friday"
 msgstr ""
 
-#: include/event.php:490 include/text.php:1132
+#: include/event.php:490 include/text.php:1198
 msgid "Saturday"
 msgstr ""
 
@@ -2024,7 +1968,7 @@ msgstr ""
 msgid "Apr"
 msgstr ""
 
-#: include/event.php:496 include/event.php:509 include/text.php:1136
+#: include/event.php:496 include/event.php:509 include/text.php:1202
 msgid "May"
 msgstr ""
 
@@ -2056,47 +2000,47 @@ msgstr ""
 msgid "Dec"
 msgstr ""
 
-#: include/event.php:505 include/text.php:1136
+#: include/event.php:505 include/text.php:1202
 msgid "January"
 msgstr ""
 
-#: include/event.php:506 include/text.php:1136
+#: include/event.php:506 include/text.php:1202
 msgid "February"
 msgstr ""
 
-#: include/event.php:507 include/text.php:1136
+#: include/event.php:507 include/text.php:1202
 msgid "March"
 msgstr ""
 
-#: include/event.php:508 include/text.php:1136
+#: include/event.php:508 include/text.php:1202
 msgid "April"
 msgstr ""
 
-#: include/event.php:510 include/text.php:1136
+#: include/event.php:510 include/text.php:1202
 msgid "June"
 msgstr ""
 
-#: include/event.php:511 include/text.php:1136
+#: include/event.php:511 include/text.php:1202
 msgid "July"
 msgstr ""
 
-#: include/event.php:512 include/text.php:1136
+#: include/event.php:512 include/text.php:1202
 msgid "August"
 msgstr ""
 
-#: include/event.php:513 include/text.php:1136
+#: include/event.php:513 include/text.php:1202
 msgid "September"
 msgstr ""
 
-#: include/event.php:514 include/text.php:1136
+#: include/event.php:514 include/text.php:1202
 msgid "October"
 msgstr ""
 
-#: include/event.php:515 include/text.php:1136
+#: include/event.php:515 include/text.php:1202
 msgid "November"
 msgstr ""
 
-#: include/event.php:516 include/text.php:1136
+#: include/event.php:516 include/text.php:1202
 msgid "December"
 msgstr ""
 
@@ -2120,7 +2064,7 @@ msgstr ""
 msgid "Delete event"
 msgstr ""
 
-#: include/event.php:685 include/text.php:1534 include/text.php:1541
+#: include/event.php:685 include/text.php:1600 include/text.php:1607
 msgid "link to source"
 msgstr ""
 
@@ -2335,8 +2279,8 @@ msgstr ""
 msgid "Disallowed profile URL."
 msgstr ""
 
-#: include/follow.php:86 mod/admin.php:279 mod/admin.php:297
-#: mod/dfrn_request.php:518 mod/friendica.php:114
+#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
+#: mod/admin.php:279 mod/admin.php:297
 msgid "Blocked domain"
 msgstr ""
 
@@ -2479,7 +2423,7 @@ msgid "Edit visibility"
 msgstr ""
 
 #: include/identity.php:338 include/identity.php:633 mod/directory.php:141
-#: mod/notifications.php:244
+#: mod/notifications.php:250
 msgid "Gender:"
 msgstr ""
 
@@ -2492,7 +2436,7 @@ msgid "Homepage:"
 msgstr ""
 
 #: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:240
+#: mod/directory.php:147 mod/notifications.php:246
 msgid "About:"
 msgstr ""
 
@@ -2500,7 +2444,7 @@ msgstr ""
 msgid "XMPP:"
 msgstr ""
 
-#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:252
+#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
 msgid "Network:"
 msgstr ""
 
@@ -2566,7 +2510,7 @@ msgid "Hometown:"
 msgstr ""
 
 #: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:242
+#: mod/notifications.php:248
 msgid "Tags:"
 msgstr ""
 
@@ -2630,8 +2574,8 @@ msgstr ""
 msgid "Basic"
 msgstr ""
 
-#: include/identity.php:746 mod/contacts.php:878 mod/admin.php:1057
-#: mod/events.php:507
+#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
+#: mod/admin.php:1059
 msgid "Advanced"
 msgstr ""
 
@@ -2655,57 +2599,6 @@ msgstr ""
 msgid "Only You Can See This"
 msgstr ""
 
-#: include/items.php:1670 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr ""
-
-#: include/items.php:2055 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
-#: mod/admin.php:1562 mod/admin.php:1813
-msgid "Item not found."
-msgstr ""
-
-#: include/items.php:2094
-msgid "Do you really want to delete this item?"
-msgstr ""
-
-#: include/items.php:2096 mod/api.php:105 mod/contacts.php:452
-#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
-#: mod/profiles.php:670 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
-msgid "Yes"
-msgstr ""
-
-#: include/items.php:2259 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
-#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
-#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
-#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
-#: mod/invite.php:103 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/regmod.php:113 mod/repair_ostatus.php:9
-#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
-#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
-#: mod/group.php:19 mod/item.php:196 mod/item.php:208 mod/manage.php:102
-#: mod/message.php:46 mod/message.php:171 mod/network.php:4
-#: mod/notifications.php:71 mod/photos.php:166 mod/photos.php:1109
-#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
-#: mod/wall_upload.php:101 mod/wall_upload.php:104 index.php:407
-msgid "Permission denied."
-msgstr ""
-
-#: include/items.php:2376
-msgid "Archives"
-msgstr ""
-
 #: include/network.php:687
 msgid "view full size"
 msgstr ""
@@ -2718,24 +2611,6 @@ msgstr ""
 msgid "Embedding disabled"
 msgstr ""
 
-#: include/ostatus.php:1914
-#, php-format
-msgid "%s is now following %s."
-msgstr ""
-
-#: include/ostatus.php:1915
-msgid "following"
-msgstr ""
-
-#: include/ostatus.php:1918
-#, php-format
-msgid "%s stopped following %s."
-msgstr ""
-
-#: include/ostatus.php:1919
-msgid "stopped following"
-msgstr ""
-
 #: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
 #: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
 #: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
@@ -2743,401 +2618,526 @@ msgstr ""
 msgid "Contact Photos"
 msgstr ""
 
-#: include/text.php:307
-msgid "newer"
+#: include/user.php:39 mod/settings.php:375
+msgid "Passwords do not match. Password unchanged."
 msgstr ""
 
-#: include/text.php:308
-msgid "older"
+#: include/user.php:48
+msgid "An invitation is required."
 msgstr ""
 
-#: include/text.php:313
-msgid "first"
+#: include/user.php:53
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: include/text.php:314
-msgid "prev"
+#: include/user.php:61
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: include/text.php:348
-msgid "next"
+#: include/user.php:82
+msgid "Please enter the required information."
 msgstr ""
 
-#: include/text.php:349
-msgid "last"
+#: include/user.php:96
+msgid "Please use a shorter name."
 msgstr ""
 
-#: include/text.php:403
-msgid "Loading more entries..."
+#: include/user.php:98
+msgid "Name too short."
 msgstr ""
 
-#: include/text.php:404
-msgid "The end"
+#: include/user.php:106
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: include/text.php:889
-msgid "No contacts"
+#: include/user.php:111
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: include/text.php:914
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] ""
-msgstr[1] ""
-
-#: include/text.php:927
-msgid "View Contacts"
+#: include/user.php:114
+msgid "Not a valid email address."
 msgstr ""
 
-#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
+#: include/user.php:127
+msgid "Cannot use that email."
 msgstr ""
 
-#: include/text.php:1078
-msgid "poke"
+#: include/user.php:133
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
 msgstr ""
 
-#: include/text.php:1078
-msgid "poked"
+#: include/user.php:140 include/user.php:228
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: include/text.php:1079
-msgid "ping"
+#: include/user.php:150
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: include/text.php:1079
-msgid "pinged"
+#: include/user.php:166
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: include/text.php:1080
-msgid "prod"
+#: include/user.php:214
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: include/text.php:1080
-msgid "prodded"
+#: include/user.php:239 view/theme/duepuntozero/config.php:43
+msgid "default"
 msgstr ""
 
-#: include/text.php:1081
-msgid "slap"
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: include/text.php:1081
-msgid "slapped"
+#: include/user.php:309 include/user.php:317 include/user.php:325
+#: 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:71 mod/photos.php:187
+#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
+#: mod/photos.php:1863
+msgid "Profile Photos"
 msgstr ""
 
-#: include/text.php:1082
-msgid "finger"
+#: include/user.php:400
+#, 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/text.php:1082
-msgid "fingered"
+#: include/user.php:410
+#, php-format
+msgid "Registration at %s"
 msgstr ""
 
-#: include/text.php:1083
-msgid "rebuff"
+#: include/user.php:420
+#, 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/text.php:1083
-msgid "rebuffed"
+#: include/user.php:424
+#, 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/text.php:1097
-msgid "happy"
+#: include/user.php:456 mod/admin.php:1308
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
-#: include/text.php:1098
-msgid "sad"
+#: include/dbstructure.php:20
+msgid "There are no tables on MyISAM."
 msgstr ""
 
-#: include/text.php:1099
-msgid "mellow"
+#: include/dbstructure.php:61
+#, 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/text.php:1100
-msgid "tired"
+#: include/dbstructure.php:66
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: include/text.php:1101
-msgid "perky"
+#: include/dbstructure.php:190
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
 msgstr ""
 
-#: include/text.php:1102
-msgid "angry"
+#: include/dbstructure.php:193
+msgid "Errors encountered performing database changes: "
 msgstr ""
 
-#: include/text.php:1103
-msgid "stupified"
+#: include/dbstructure.php:201
+msgid ": Database update"
 msgstr ""
 
-#: include/text.php:1104
-msgid "puzzled"
+#: include/dbstructure.php:425
+#, php-format
+msgid "%s: updating %s table."
 msgstr ""
 
-#: include/text.php:1105
-msgid "interested"
+#: include/dfrn.php:1251
+#, php-format
+msgid "%s\\'s birthday"
 msgstr ""
 
-#: include/text.php:1106
-msgid "bitter"
+#: include/diaspora.php:2137
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: include/text.php:1107
-msgid "cheerful"
+#: include/diaspora.php:3146
+msgid "Attachments:"
 msgstr ""
 
-#: include/text.php:1108
-msgid "alive"
+#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
 msgstr ""
 
-#: include/text.php:1109
-msgid "annoyed"
+#: include/items.php:2123 mod/display.php:103 mod/display.php:279
+#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
+#: mod/admin.php:1565 mod/admin.php:1816
+msgid "Item not found."
 msgstr ""
 
-#: include/text.php:1110
-msgid "anxious"
+#: include/items.php:2162
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: include/text.php:1111
-msgid "cranky"
+#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
+#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
+#: mod/profiles.php:670 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
+msgid "Yes"
 msgstr ""
 
-#: include/text.php:1112
-msgid "disturbed"
+#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
+#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
+#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
+#: mod/invite.php:103 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/regmod.php:113 mod/repair_ostatus.php:9
+#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
+#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
+#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
+#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
+#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
+#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
+#: mod/item.php:208 mod/notifications.php:71 index.php:407
+msgid "Permission denied."
 msgstr ""
 
-#: include/text.php:1113
-msgid "frustrated"
+#: include/items.php:2444
+msgid "Archives"
 msgstr ""
 
-#: include/text.php:1114
-msgid "motivated"
+#: include/ostatus.php:1947
+#, php-format
+msgid "%s is now following %s."
 msgstr ""
 
-#: include/text.php:1115
-msgid "relaxed"
+#: include/ostatus.php:1948
+msgid "following"
 msgstr ""
 
-#: include/text.php:1116
-msgid "surprised"
+#: include/ostatus.php:1951
+#, php-format
+msgid "%s stopped following %s."
 msgstr ""
 
-#: include/text.php:1326 mod/videos.php:386
-msgid "View Video"
+#: include/ostatus.php:1952
+msgid "stopped following"
 msgstr ""
 
-#: include/text.php:1358
-msgid "bytes"
+#: include/text.php:307
+msgid "newer"
 msgstr ""
 
-#: include/text.php:1390 include/text.php:1402
-msgid "Click to open/close"
+#: include/text.php:308
+msgid "older"
 msgstr ""
 
-#: include/text.php:1528
-msgid "View on separate page"
+#: include/text.php:313
+msgid "first"
 msgstr ""
 
-#: include/text.php:1529
-msgid "view on separate page"
+#: include/text.php:314
+msgid "prev"
 msgstr ""
 
-#: include/text.php:1808
-msgid "activity"
+#: include/text.php:348
+msgid "next"
 msgstr ""
 
-#: include/text.php:1810 mod/content.php:623 object/Item.php:419
-#: object/Item.php:431
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
+#: include/text.php:349
+msgid "last"
+msgstr ""
 
-#: include/text.php:1811
-msgid "post"
+#: include/text.php:403
+msgid "Loading more entries..."
 msgstr ""
 
-#: include/text.php:1979
-msgid "Item filed"
+#: include/text.php:404
+msgid "The end"
 msgstr ""
 
-#: include/user.php:39 mod/settings.php:375
-msgid "Passwords do not match. Password unchanged."
+#: include/text.php:955
+msgid "No contacts"
 msgstr ""
 
-#: include/user.php:48
-msgid "An invitation is required."
+#: include/text.php:980
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:993
+msgid "View Contacts"
 msgstr ""
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
+#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
+msgid "Save"
 msgstr ""
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
+#: include/text.php:1144
+msgid "poke"
 msgstr ""
 
-#: include/user.php:82
-msgid "Please enter the required information."
+#: include/text.php:1144
+msgid "poked"
 msgstr ""
 
-#: include/user.php:96
-msgid "Please use a shorter name."
+#: include/text.php:1145
+msgid "ping"
 msgstr ""
 
-#: include/user.php:98
-msgid "Name too short."
+#: include/text.php:1145
+msgid "pinged"
 msgstr ""
 
-#: include/user.php:106
-msgid "That doesn't appear to be your full (First Last) name."
+#: include/text.php:1146
+msgid "prod"
 msgstr ""
 
-#: include/user.php:111
-msgid "Your email domain is not among those allowed on this site."
+#: include/text.php:1146
+msgid "prodded"
 msgstr ""
 
-#: include/user.php:114
-msgid "Not a valid email address."
+#: include/text.php:1147
+msgid "slap"
 msgstr ""
 
-#: include/user.php:127
-msgid "Cannot use that email."
+#: include/text.php:1147
+msgid "slapped"
 msgstr ""
 
-#: include/user.php:133
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+#: include/text.php:1148
+msgid "finger"
 msgstr ""
 
-#: include/user.php:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
+#: include/text.php:1148
+msgid "fingered"
 msgstr ""
 
-#: include/user.php:150
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: include/text.php:1149
+msgid "rebuff"
 msgstr ""
 
-#: include/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: include/text.php:1149
+msgid "rebuffed"
 msgstr ""
 
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
+#: include/text.php:1163
+msgid "happy"
 msgstr ""
 
-#: include/user.php:239 view/theme/duepuntozero/config.php:43
-msgid "default"
+#: include/text.php:1164
+msgid "sad"
 msgstr ""
 
-#: include/user.php:249
-msgid "An error occurred creating your default profile. Please try again."
+#: include/text.php:1165
+msgid "mellow"
 msgstr ""
 
-#: include/user.php:309 include/user.php:317 include/user.php:325
-#: 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:71 mod/photos.php:187
-#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
-#: mod/photos.php:1863
-msgid "Profile Photos"
+#: include/text.php:1166
+msgid "tired"
 msgstr ""
 
-#: include/user.php:400
-#, 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"
+#: include/text.php:1167
+msgid "perky"
 msgstr ""
 
-#: include/user.php:410
-#, php-format
-msgid "Registration at %s"
+#: include/text.php:1168
+msgid "angry"
 msgstr ""
 
-#: include/user.php:420
-#, 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"
+#: include/text.php:1169
+msgid "stupified"
 msgstr ""
 
-#: include/user.php:424
-#, 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."
+#: include/text.php:1170
+msgid "puzzled"
 msgstr ""
 
-#: include/user.php:456 mod/admin.php:1305
-#, php-format
-msgid "Registration details for %s"
+#: include/text.php:1171
+msgid "interested"
 msgstr ""
 
-#: mod/allfriends.php:46
-msgid "No friends to display."
+#: include/text.php:1172
+msgid "bitter"
 msgstr ""
 
-#: mod/api.php:76 mod/api.php:102
-msgid "Authorize application connection"
+#: include/text.php:1173
+msgid "cheerful"
 msgstr ""
 
-#: mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: include/text.php:1174
+msgid "alive"
 msgstr ""
 
-#: mod/api.php:89
-msgid "Please login to continue."
+#: include/text.php:1175
+msgid "annoyed"
 msgstr ""
 
-#: 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?"
+#: include/text.php:1176
+msgid "anxious"
 msgstr ""
 
-#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
-#: 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
-msgid "No"
+#: include/text.php:1177
+msgid "cranky"
+msgstr ""
+
+#: include/text.php:1178
+msgid "disturbed"
+msgstr ""
+
+#: include/text.php:1179
+msgid "frustrated"
+msgstr ""
+
+#: include/text.php:1180
+msgid "motivated"
+msgstr ""
+
+#: include/text.php:1181
+msgid "relaxed"
+msgstr ""
+
+#: include/text.php:1182
+msgid "surprised"
+msgstr ""
+
+#: include/text.php:1392 mod/videos.php:386
+msgid "View Video"
+msgstr ""
+
+#: include/text.php:1424
+msgid "bytes"
+msgstr ""
+
+#: include/text.php:1456 include/text.php:1468
+msgid "Click to open/close"
+msgstr ""
+
+#: include/text.php:1594
+msgid "View on separate page"
+msgstr ""
+
+#: include/text.php:1595
+msgid "view on separate page"
+msgstr ""
+
+#: include/text.php:1874
+msgid "activity"
+msgstr ""
+
+#: include/text.php:1876 mod/content.php:623 object/Item.php:419
+#: object/Item.php:431
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:1877
+msgid "post"
+msgstr ""
+
+#: include/text.php:2045
+msgid "Item filed"
+msgstr ""
+
+#: mod/allfriends.php:46
+msgid "No friends to display."
+msgstr ""
+
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
+
+#: mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
+
+#: mod/api.php:89
+msgid "Please login to continue."
+msgstr ""
+
+#: 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 ""
+
+#: mod/api.php:106 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/profiles.php:640 mod/profiles.php:644 mod/profiles.php:670
+#: 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
+msgid "No"
 msgstr ""
 
 #: mod/apps.php:7 index.php:254
@@ -3250,7 +3250,7 @@ msgstr ""
 msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/contacts.php:538 mod/admin.php:976
+#: mod/contacts.php:538 mod/admin.php:978
 msgid "Never"
 msgstr ""
 
@@ -3279,7 +3279,7 @@ msgstr ""
 msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/contacts.php:565 mod/admin.php:985
+#: mod/contacts.php:565 mod/admin.php:987
 msgid "Disabled"
 msgstr ""
 
@@ -3297,11 +3297,11 @@ msgstr ""
 
 #: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
 #: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
-#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/install.php:269
-#: mod/install.php:309 mod/manage.php:155 mod/message.php:338
-#: mod/message.php:521 mod/photos.php:1141 mod/photos.php:1271
-#: mod/photos.php:1597 mod/photos.php:1646 mod/photos.php:1688
-#: mod/photos.php:1768 mod/profiles.php:681 object/Item.php:705
+#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
+#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
+#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
+#: mod/install.php:242 mod/install.php:282 object/Item.php:705
 #: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
 #: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
 msgid "Submit"
@@ -3361,12 +3361,12 @@ msgid "Update now"
 msgstr ""
 
 #: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1507
+#: mod/admin.php:1510
 msgid "Unblock"
 msgstr ""
 
 #: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1506
+#: mod/admin.php:1509
 msgid "Block"
 msgstr ""
 
@@ -3376,7 +3376,7 @@ msgstr ""
 
 #: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
 #: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:257
+#: mod/notifications.php:263
 msgid "Ignore"
 msgstr ""
 
@@ -3392,7 +3392,7 @@ msgstr ""
 msgid "Currently archived"
 msgstr ""
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
 msgid "Hide this contact from others"
 msgstr ""
 
@@ -3419,7 +3419,7 @@ msgid ""
 "when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:249
+#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
 msgid "Profile URL"
 msgstr ""
 
@@ -3790,9 +3790,8 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:167 mod/admin.php:1487 mod/admin.php:1500
-#: mod/admin.php:1513 mod/admin.php:1529 mod/settings.php:683
-#: mod/settings.php:709
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
 msgid "Name"
 msgstr ""
 
@@ -4142,7 +4141,7 @@ msgid ""
 "Password reset failed."
 msgstr ""
 
-#: mod/lostpass.php:110 boot.php:1824
+#: mod/lostpass.php:110 boot.php:1882
 msgid "Password Reset"
 msgstr ""
 
@@ -4210,7 +4209,7 @@ msgid ""
 "your email for further instructions."
 msgstr ""
 
-#: mod/lostpass.php:161 boot.php:1812
+#: mod/lostpass.php:161 boot.php:1870
 msgid "Nickname or Email: "
 msgstr ""
 
@@ -4775,2435 +4774,2463 @@ msgstr ""
 msgid "Subject:"
 msgstr ""
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
+#: mod/babel.php:16
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: mod/admin.php:165 mod/admin.php:1052
-msgid "Site"
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: mod/admin.php:166 mod/admin.php:986 mod/admin.php:1495 mod/admin.php:1511
-msgid "Users"
+#: mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: mod/admin.php:167 mod/admin.php:1613 mod/admin.php:1676 mod/settings.php:74
-msgid "Plugins"
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: mod/admin.php:168 mod/admin.php:1889 mod/admin.php:1939
-msgid "Themes"
+#: mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: mod/admin.php:169 mod/settings.php:52
-msgid "Additional features"
+#: mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: mod/admin.php:170
-msgid "DB updates"
+#: mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: mod/admin.php:171 mod/admin.php:512
-msgid "Inspect Queue"
+#: mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: mod/admin.php:172 mod/admin.php:288
-msgid "Server Blocklist"
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: mod/admin.php:173 mod/admin.php:478
-msgid "Federation Statistics"
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2013
-msgid "Logs"
+#: mod/babel.php:65
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: mod/admin.php:188 mod/admin.php:2081
-msgid "View Logs"
+#: mod/babel.php:69
+msgid "diaspora2bb: "
 msgstr ""
 
-#: mod/admin.php:189
-msgid "probe address"
+#: mod/cal.php:271 mod/events.php:375
+msgid "View"
 msgstr ""
 
-#: mod/admin.php:190
-msgid "check webfinger"
+#: mod/cal.php:272 mod/events.php:377
+msgid "Previous"
 msgstr ""
 
-#: mod/admin.php:197
-msgid "Plugin Features"
+#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
+msgid "Next"
 msgstr ""
 
-#: mod/admin.php:199
-msgid "diagnostics"
+#: mod/cal.php:282 mod/events.php:387
+msgid "list"
 msgstr ""
 
-#: mod/admin.php:200
-msgid "User registrations waiting for confirmation"
+#: mod/cal.php:292
+msgid "User not found"
 msgstr ""
 
-#: mod/admin.php:279
-msgid "The blocked domain"
+#: mod/cal.php:308
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/admin.php:280 mod/admin.php:298 mod/friendica.php:114
-msgid "Reason for the block"
+#: mod/cal.php:310
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/admin.php:280 mod/admin.php:293
-msgid "The reason why you blocked this domain."
+#: mod/cal.php:325
+msgid "calendar"
 msgstr ""
 
-#: mod/admin.php:281
-msgid "Delete domain"
+#: mod/community.php:23
+msgid "Not available."
 msgstr ""
 
-#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
-#: mod/admin.php:1051 mod/admin.php:1494 mod/admin.php:1612 mod/admin.php:1675
-#: mod/admin.php:1888 mod/admin.php:1938 mod/admin.php:2012 mod/admin.php:2080
-msgid "Administration"
+#: mod/community.php:50 mod/search.php:219
+msgid "No results."
 msgstr ""
 
-#: mod/admin.php:289
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote server."
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
+#: mod/profiles.php:182 mod/profiles.php:619
+msgid "Profile not found."
 msgstr ""
 
-#: mod/admin.php:290
+#: mod/dfrn_confirm.php:127
 msgid ""
-"The list of blocked servers will be made publically available on the /"
-"friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
 msgstr ""
 
-#: mod/admin.php:291
-msgid "Add new entry to block list"
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
 msgstr ""
 
-#: mod/admin.php:292
-msgid "Server Domain"
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
 msgstr ""
 
-#: mod/admin.php:292
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
 msgstr ""
 
-#: mod/admin.php:293
-msgid "Block reason"
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
 msgstr ""
 
-#: mod/admin.php:294
-msgid "Add Entry"
+#: mod/dfrn_confirm.php:281
+msgid "Temporary failure. Please wait and try again."
 msgstr ""
 
-#: mod/admin.php:295
-msgid "Save changes to the blocklist"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
 msgstr ""
 
-#: mod/admin.php:296
-msgid "Current Entries in the Blocklist"
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
 msgstr ""
 
-#: mod/admin.php:299
-msgid "Delete entry from blocklist"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: mod/admin.php:302
-msgid "Delete entry from blocklist?"
+#: mod/dfrn_confirm.php:569
+msgid "Our site encryption key is apparently messed up."
 msgstr ""
 
-#: mod/admin.php:327
-msgid "Server added to blocklist."
+#: mod/dfrn_confirm.php:580
+msgid "Empty site URL was provided or URL could not be decrypted by us."
 msgstr ""
 
-#: mod/admin.php:343
-msgid "Site blocklist updated."
+#: mod/dfrn_confirm.php:602
+msgid "Contact record was not found for you on our site."
 msgstr ""
 
-#: mod/admin.php:408
-msgid "unknown"
+#: mod/dfrn_confirm.php:616
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: mod/admin.php:471
+#: mod/dfrn_confirm.php:636
 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."
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
 msgstr ""
 
-#: mod/admin.php:472
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/dfrn_confirm.php:647
+msgid "Unable to set your contact credentials on our system."
 msgstr ""
 
-#: mod/admin.php:484
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+#: mod/dfrn_confirm.php:709
+msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
-#: mod/admin.php:514
-msgid "ID"
+#: mod/dfrn_confirm.php:781
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: mod/admin.php:515
-msgid "Recipient Name"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: mod/admin.php:516
-msgid "Recipient Profile"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: mod/admin.php:518
-msgid "Created"
-msgstr ""
-
-#: mod/admin.php:519
-msgid "Last Tried"
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: mod/admin.php:520
-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."
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: mod/admin.php:545
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
 #, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should "
-"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php include/"
-"dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr ""
+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/admin.php:550
-msgid ""
-"You are using a MySQL version which does not support all features that "
-"Friendica uses. You should consider switching to MariaDB."
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
 msgstr ""
 
-#: mod/admin.php:554 mod/admin.php:1444
-msgid "Normal Account"
+#: mod/dfrn_request.php:225
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: mod/admin.php:555 mod/admin.php:1445
-msgid "Soapbox Account"
+#: mod/dfrn_request.php:253
+msgid "Profile unavailable."
 msgstr ""
 
-#: mod/admin.php:556 mod/admin.php:1446
-msgid "Community/Celebrity Account"
+#: mod/dfrn_request.php:280
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: mod/admin.php:557 mod/admin.php:1447
-msgid "Automatic Friend Account"
+#: mod/dfrn_request.php:281
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: mod/admin.php:558
-msgid "Blog Account"
+#: mod/dfrn_request.php:282
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: mod/admin.php:559
-msgid "Private Forum"
+#: mod/dfrn_request.php:344
+msgid "Invalid locator"
 msgstr ""
 
-#: mod/admin.php:581
-msgid "Message queues"
+#: mod/dfrn_request.php:353
+msgid "Invalid email address."
 msgstr ""
 
-#: mod/admin.php:587
-msgid "Summary"
+#: mod/dfrn_request.php:378
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: mod/admin.php:589
-msgid "Registered users"
+#: mod/dfrn_request.php:481
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: mod/admin.php:591
-msgid "Pending registrations"
+#: mod/dfrn_request.php:485
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: mod/admin.php:592
-msgid "Version"
+#: mod/dfrn_request.php:506
+msgid "Invalid profile URL."
 msgstr ""
 
-#: mod/admin.php:597
-msgid "Active plugins"
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: mod/admin.php:622
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/dfrn_request.php:656
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: mod/admin.php:912
-msgid "Site settings updated."
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: mod/admin.php:940 mod/settings.php:943
-msgid "No special theme for mobile devices"
+#: mod/dfrn_request.php:687
+msgid ""
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: mod/admin.php:969
-msgid "No community page"
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Public postings from users of this site"
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Global community page"
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: mod/admin.php:977
-msgid "At post arrival"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Users, Global Contacts"
+#: mod/dfrn_request.php:848
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: mod/admin.php:988
-msgid "Users, Global Contacts/fallback"
+#: mod/dfrn_request.php:872
+#, 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/admin.php:992
-msgid "One month"
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: mod/admin.php:993
-msgid "Three months"
+#: mod/dfrn_request.php:878
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Half a year"
+#: mod/dfrn_request.php:879 mod/follow.php:112
+msgid "Please answer the following:"
 msgstr ""
 
-#: mod/admin.php:995
-msgid "One year"
+#: mod/dfrn_request.php:880 mod/follow.php:113
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: mod/admin.php:1000
-msgid "Multi user instance"
+#: mod/dfrn_request.php:884 mod/follow.php:114
+msgid "Add a personal note:"
 msgstr ""
 
-#: mod/admin.php:1023
-msgid "Closed"
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: mod/admin.php:1024
-msgid "Requires approval"
+#: mod/dfrn_request.php:889
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Open"
+#: mod/dfrn_request.php:890 mod/follow.php:120
+msgid "Your Identity Address:"
 msgstr ""
 
-#: mod/admin.php:1029
-msgid "No SSL policy, links will track page SSL state"
+#: mod/dfrn_request.php:893 mod/follow.php:19
+msgid "Submit Request"
 msgstr ""
 
-#: mod/admin.php:1030
-msgid "Force all links to use SSL"
+#: mod/dirfind.php:37
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:1031
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/dirfind.php:48
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:1053 mod/admin.php:1677 mod/admin.php:1940 mod/admin.php:2014
-#: mod/admin.php:2167 mod/settings.php:681 mod/settings.php:792
-#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005
-#: mod/settings.php:1271
-msgid "Save Settings"
+#: mod/events.php:93 mod/events.php:95
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:1054 mod/register.php:272
-msgid "Registration"
+#: mod/events.php:102 mod/events.php:104
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/admin.php:1055
-msgid "File upload"
+#: mod/events.php:376
+msgid "Create New Event"
 msgstr ""
 
-#: mod/admin.php:1056
-msgid "Policies"
+#: mod/events.php:481
+msgid "Event details"
 msgstr ""
 
-#: mod/admin.php:1058
-msgid "Auto Discovered Contact Directory"
+#: mod/events.php:482
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/admin.php:1059
-msgid "Performance"
+#: mod/events.php:483 mod/events.php:484
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/admin.php:1060
-msgid "Worker"
+#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
+msgid "Required"
 msgstr ""
 
-#: mod/admin.php:1061
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/events.php:485 mod/events.php:501
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/admin.php:1064
-msgid "Site name"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/admin.php:1065
-msgid "Host name"
+#: mod/events.php:489 mod/events.php:502
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/admin.php:1066
-msgid "Sender Email"
+#: mod/events.php:491
+msgid "Description:"
 msgstr ""
 
-#: mod/admin.php:1066
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/events.php:495 mod/events.php:497
+msgid "Title:"
 msgstr ""
 
-#: mod/admin.php:1067
-msgid "Banner/Logo"
+#: mod/events.php:498 mod/events.php:499
+msgid "Share this event"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid "Shortcut icon"
+#: mod/events.php:528
+msgid "Failed to remove event"
 msgstr ""
 
-#: mod/admin.php:1068
-msgid "Link to an icon that will be used for browsers."
+#: mod/events.php:530
+msgid "Event removed"
 msgstr ""
 
-#: mod/admin.php:1069
-msgid "Touch icon"
+#: mod/follow.php:30
+msgid "You already added this contact."
 msgstr ""
 
-#: mod/admin.php:1069
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/follow.php:39
+msgid "Diaspora support isn't enabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1070
-msgid "Additional Info"
+#: mod/follow.php:46
+msgid "OStatus support is disabled. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1070
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/follow.php:53
+msgid "The network type couldn't be detected. Contact can't be added."
 msgstr ""
 
-#: mod/admin.php:1071
-msgid "System language"
+#: mod/follow.php:186
+msgid "Contact added"
 msgstr ""
 
-#: mod/admin.php:1072
-msgid "System theme"
+#: mod/friendica.php:68
+msgid "This is Friendica, version"
 msgstr ""
 
-#: mod/admin.php:1072
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/friendica.php:69
+msgid "running at web location"
 msgstr ""
 
-#: mod/admin.php:1073
-msgid "Mobile system theme"
+#: mod/friendica.php:73
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: mod/admin.php:1073
-msgid "Theme for mobile devices"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid "SSL link policy"
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
 msgstr ""
 
-#: mod/admin.php:1074
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/friendica.php:80
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid "Force SSL"
+#: mod/friendica.php:94
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: mod/admin.php:1075
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/friendica.php:108
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: mod/admin.php:1076
-msgid "Hide help entry from navigation menu"
+#: mod/friendica.php:113
+msgid "On this server the following remote servers are blocked."
 msgstr ""
 
-#: mod/admin.php:1076
+#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
+msgid "Reason for the block"
+msgstr ""
+
+#: mod/group.php:29
+msgid "Group created."
+msgstr ""
+
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr ""
+
+#: mod/group.php:49 mod/group.php:154
+msgid "Group not found."
+msgstr ""
+
+#: mod/group.php:63
+msgid "Group name changed."
+msgstr ""
+
+#: mod/group.php:93
+msgid "Save Group"
+msgstr ""
+
+#: mod/group.php:98
+msgid "Create a group of contacts/friends."
+msgstr ""
+
+#: mod/group.php:123
+msgid "Group removed."
+msgstr ""
+
+#: mod/group.php:125
+msgid "Unable to remove group."
+msgstr ""
+
+#: mod/group.php:189
+msgid "Delete Group"
+msgstr ""
+
+#: mod/group.php:195
+msgid "Group Editor"
+msgstr ""
+
+#: mod/group.php:200
+msgid "Edit Group Name"
+msgstr ""
+
+#: mod/group.php:210
+msgid "Members"
+msgstr ""
+
+#: mod/group.php:226
+msgid "Remove Contact"
+msgstr ""
+
+#: mod/group.php:250
+msgid "Add Contact"
+msgstr ""
+
+#: mod/manage.php:151
+msgid "Manage Identities and/or Pages"
+msgstr ""
+
+#: mod/manage.php:152
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: mod/admin.php:1077
-msgid "Single user instance"
+#: mod/manage.php:153
+msgid "Select an identity to manage: "
 msgstr ""
 
-#: mod/admin.php:1077
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/message.php:64
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: mod/admin.php:1078
-msgid "Maximum image size"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: mod/admin.php:1078
+#: mod/message.php:224
+msgid "Message deleted."
+msgstr ""
+
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr ""
+
+#: mod/message.php:364
+msgid "No messages."
+msgstr ""
+
+#: mod/message.php:403
+msgid "Message not available."
+msgstr ""
+
+#: mod/message.php:477
+msgid "Delete message"
+msgstr ""
+
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr ""
+
+#: mod/message.php:505
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: mod/admin.php:1079
-msgid "Maximum image length"
+#: mod/message.php:509
+msgid "Send Reply"
 msgstr ""
 
-#: mod/admin.php:1079
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
+
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr ""
+
+#: mod/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr ""
+
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr ""
+
+#: mod/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/network.php:197 mod/search.php:25
+msgid "Remove term"
+msgstr ""
+
+#: mod/network.php:404
+#, php-format
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+"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:407
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/admin.php:1080
-msgid "JPEG image quality"
+#: mod/network.php:535
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/admin.php:1080
+#: mod/network.php:540
+msgid "Invalid contact."
+msgstr ""
+
+#: mod/network.php:813
+msgid "Commented Order"
+msgstr ""
+
+#: mod/network.php:816
+msgid "Sort by Comment Date"
+msgstr ""
+
+#: mod/network.php:821
+msgid "Posted Order"
+msgstr ""
+
+#: mod/network.php:824
+msgid "Sort by Post Date"
+msgstr ""
+
+#: mod/network.php:835
+msgid "Posts that mention or involve you"
+msgstr ""
+
+#: mod/network.php:843
+msgid "New"
+msgstr ""
+
+#: mod/network.php:846
+msgid "Activity Stream - by date"
+msgstr ""
+
+#: mod/network.php:854
+msgid "Shared Links"
+msgstr ""
+
+#: mod/network.php:857
+msgid "Interesting Links"
+msgstr ""
+
+#: mod/network.php:865
+msgid "Starred"
+msgstr ""
+
+#: mod/network.php:868
+msgid "Favourite Posts"
+msgstr ""
+
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr ""
+
+#: mod/openid.php:60
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/admin.php:1082
-msgid "Register policy"
+#: mod/photos.php:94 mod/photos.php:1900
+msgid "Recent Photos"
 msgstr ""
 
-#: mod/admin.php:1083
-msgid "Maximum Daily Registrations"
+#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+msgid "Upload New Photos"
+msgstr ""
+
+#: mod/photos.php:112 mod/settings.php:36
+msgid "everybody"
+msgstr ""
+
+#: mod/photos.php:176
+msgid "Contact information unavailable"
+msgstr ""
+
+#: mod/photos.php:197
+msgid "Album not found."
+msgstr ""
+
+#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+msgid "Delete Album"
+msgstr ""
+
+#: mod/photos.php:240
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr ""
+
+#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+msgid "Delete Photo"
+msgstr ""
+
+#: mod/photos.php:332
+msgid "Do you really want to delete this photo?"
+msgstr ""
+
+#: mod/photos.php:713
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
+
+#: mod/photos.php:713
+msgid "a photo"
+msgstr ""
+
+#: mod/photos.php:821
+msgid "Image file is empty."
+msgstr ""
+
+#: mod/photos.php:988
+msgid "No photos selected"
+msgstr ""
+
+#: mod/photos.php:1091 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr ""
+
+#: mod/photos.php:1151
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr ""
+
+#: mod/photos.php:1188
+msgid "Upload Photos"
+msgstr ""
+
+#: mod/photos.php:1192 mod/photos.php:1267
+msgid "New album name: "
+msgstr ""
+
+#: mod/photos.php:1193
+msgid "or existing album name: "
+msgstr ""
+
+#: mod/photos.php:1194
+msgid "Do not show a status post for this upload"
+msgstr ""
+
+#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+msgid "Show to Groups"
+msgstr ""
+
+#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+msgid "Show to Contacts"
+msgstr ""
+
+#: mod/photos.php:1207
+msgid "Private Photo"
+msgstr ""
+
+#: mod/photos.php:1208
+msgid "Public Photo"
+msgstr ""
+
+#: mod/photos.php:1278
+msgid "Edit Album"
+msgstr ""
+
+#: mod/photos.php:1283
+msgid "Show Newest First"
+msgstr ""
+
+#: mod/photos.php:1285
+msgid "Show Oldest First"
+msgstr ""
+
+#: mod/photos.php:1314 mod/photos.php:1885
+msgid "View Photo"
+msgstr ""
+
+#: mod/photos.php:1359
+msgid "Permission denied. Access to this item may be restricted."
+msgstr ""
+
+#: mod/photos.php:1361
+msgid "Photo not available"
+msgstr ""
+
+#: mod/photos.php:1422
+msgid "View photo"
+msgstr ""
+
+#: mod/photos.php:1422
+msgid "Edit photo"
+msgstr ""
+
+#: mod/photos.php:1423
+msgid "Use as profile photo"
+msgstr ""
+
+#: mod/photos.php:1448
+msgid "View Full Size"
+msgstr ""
+
+#: mod/photos.php:1538
+msgid "Tags: "
+msgstr ""
+
+#: mod/photos.php:1541
+msgid "[Remove any tag]"
+msgstr ""
+
+#: mod/photos.php:1584
+msgid "New album name"
+msgstr ""
+
+#: mod/photos.php:1585
+msgid "Caption"
 msgstr ""
 
-#: mod/admin.php:1083
-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/photos.php:1586
+msgid "Add a Tag"
 msgstr ""
 
-#: mod/admin.php:1084
-msgid "Register text"
+#: mod/photos.php:1586
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: mod/admin.php:1084
-msgid "Will be displayed prominently on the registration page."
+#: mod/photos.php:1587
+msgid "Do not rotate"
 msgstr ""
 
-#: mod/admin.php:1085
-msgid "Accounts abandoned after x days"
+#: mod/photos.php:1588
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: mod/admin.php:1085
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/photos.php:1589
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: mod/admin.php:1086
-msgid "Allowed friend domains"
+#: mod/photos.php:1604
+msgid "Private photo"
 msgstr ""
 
-#: mod/admin.php:1086
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: mod/photos.php:1605
+msgid "Public photo"
 msgstr ""
 
-#: mod/admin.php:1087
-msgid "Allowed email domains"
+#: mod/photos.php:1814
+msgid "Map"
 msgstr ""
 
-#: mod/admin.php:1087
-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/photos.php:1891 mod/videos.php:393
+msgid "View Album"
 msgstr ""
 
-#: mod/admin.php:1088
-msgid "Block public"
+#: mod/probe.php:10 mod/webfinger.php:9
+msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: mod/admin.php:1088
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/profile.php:175
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/admin.php:1089
-msgid "Force publish"
+#: mod/profiles.php:38
+msgid "Profile deleted."
 msgstr ""
 
-#: mod/admin.php:1089
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+#: mod/profiles.php:54 mod/profiles.php:90
+msgid "Profile-"
 msgstr ""
 
-#: mod/admin.php:1090
-msgid "Global directory URL"
+#: mod/profiles.php:73 mod/profiles.php:118
+msgid "New profile created."
 msgstr ""
 
-#: mod/admin.php:1090
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: mod/admin.php:1091
-msgid "Allow threaded items"
+#: mod/profiles.php:192
+msgid "Profile Name is required."
 msgstr ""
 
-#: mod/admin.php:1091
-msgid "Allow infinite level threading for items on this site."
+#: mod/profiles.php:332
+msgid "Marital Status"
 msgstr ""
 
-#: mod/admin.php:1092
-msgid "Private posts by default for new users"
+#: mod/profiles.php:336
+msgid "Romantic Partner"
 msgstr ""
 
-#: mod/admin.php:1092
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/profiles.php:348
+msgid "Work/Employment"
 msgstr ""
 
-#: mod/admin.php:1093
-msgid "Don't include post content in email notifications"
+#: mod/profiles.php:351
+msgid "Religion"
 msgstr ""
 
-#: mod/admin.php:1093
-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:355
+msgid "Political Views"
 msgstr ""
 
-#: mod/admin.php:1094
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/profiles.php:359
+msgid "Gender"
 msgstr ""
 
-#: mod/admin.php:1094
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/profiles.php:363
+msgid "Sexual Preference"
 msgstr ""
 
-#: mod/admin.php:1095
-msgid "Don't embed private images in posts"
+#: mod/profiles.php:367
+msgid "XMPP"
 msgstr ""
 
-#: mod/admin.php:1095
-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:371
+msgid "Homepage"
 msgstr ""
 
-#: mod/admin.php:1096
-msgid "Allow Users to set remote_self"
+#: mod/profiles.php:375 mod/profiles.php:695
+msgid "Interests"
 msgstr ""
 
-#: mod/admin.php:1096
-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:379
+msgid "Address"
 msgstr ""
 
-#: mod/admin.php:1097
-msgid "Block multiple registrations"
+#: mod/profiles.php:386 mod/profiles.php:691
+msgid "Location"
 msgstr ""
 
-#: mod/admin.php:1097
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/profiles.php:471
+msgid "Profile updated."
 msgstr ""
 
-#: mod/admin.php:1098
-msgid "OpenID support"
+#: mod/profiles.php:564
+msgid " and "
 msgstr ""
 
-#: mod/admin.php:1098
-msgid "OpenID support for registration and logins."
+#: mod/profiles.php:573
+msgid "public profile"
 msgstr ""
 
-#: mod/admin.php:1099
-msgid "Fullname check"
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: mod/admin.php:1099
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: mod/admin.php:1100
-msgid "Community Page Style"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: mod/admin.php:1100
-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:637
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: mod/admin.php:1101
-msgid "Posts per user on community page"
+#: mod/profiles.php:642
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: mod/admin.php:1101
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+#: mod/profiles.php:667
+msgid "Show more profile fields:"
 msgstr ""
 
-#: mod/admin.php:1102
-msgid "Enable OStatus support"
+#: mod/profiles.php:679
+msgid "Profile Actions"
 msgstr ""
 
-#: mod/admin.php:1102
-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:680
+msgid "Edit Profile Details"
 msgstr ""
 
-#: mod/admin.php:1103
-msgid "OStatus conversation completion interval"
+#: mod/profiles.php:682
+msgid "Change Profile Photo"
 msgstr ""
 
-#: mod/admin.php:1103
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: mod/profiles.php:683
+msgid "View this profile"
 msgstr ""
 
-#: mod/admin.php:1104
-msgid "Only import OStatus threads from our contacts"
+#: mod/profiles.php:685
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: mod/admin.php:1104
-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:686
+msgid "Clone this profile"
 msgstr ""
 
-#: mod/admin.php:1105
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/profiles.php:687
+msgid "Delete this profile"
 msgstr ""
 
-#: mod/admin.php:1107
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/profiles.php:689
+msgid "Basic information"
 msgstr ""
 
-#: mod/admin.php:1108
-msgid "Enable Diaspora support"
+#: mod/profiles.php:690
+msgid "Profile picture"
 msgstr ""
 
-#: mod/admin.php:1108
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/profiles.php:692
+msgid "Preferences"
 msgstr ""
 
-#: mod/admin.php:1109
-msgid "Only allow Friendica contacts"
+#: mod/profiles.php:693
+msgid "Status information"
 msgstr ""
 
-#: mod/admin.php:1109
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: mod/profiles.php:694
+msgid "Additional information"
 msgstr ""
 
-#: mod/admin.php:1110
-msgid "Verify SSL"
+#: mod/profiles.php:697
+msgid "Relation"
 msgstr ""
 
-#: mod/admin.php:1110
-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/profiles.php:701
+msgid "Your Gender:"
 msgstr ""
 
-#: mod/admin.php:1111
-msgid "Proxy user"
+#: mod/profiles.php:702
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr ""
+
+#: mod/profiles.php:704
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: mod/admin.php:1112
-msgid "Proxy URL"
+#: mod/profiles.php:709
+msgid "Profile Name:"
 msgstr ""
 
-#: mod/admin.php:1113
-msgid "Network timeout"
+#: mod/profiles.php:711
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/admin.php:1113
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/profiles.php:712
+msgid "Your Full Name:"
 msgstr ""
 
-#: mod/admin.php:1114
-msgid "Maximum Load Average"
+#: mod/profiles.php:713
+msgid "Title/Description:"
 msgstr ""
 
-#: mod/admin.php:1114
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: mod/profiles.php:716
+msgid "Street Address:"
 msgstr ""
 
-#: mod/admin.php:1115
-msgid "Maximum Load Average (Frontend)"
+#: mod/profiles.php:717
+msgid "Locality/City:"
 msgstr ""
 
-#: mod/admin.php:1115
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/profiles.php:718
+msgid "Region/State:"
 msgstr ""
 
-#: mod/admin.php:1116
-msgid "Maximum table size for optimization"
+#: mod/profiles.php:719
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: mod/admin.php:1116
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+#: mod/profiles.php:720
+msgid "Country:"
 msgstr ""
 
-#: mod/admin.php:1117
-msgid "Minimum level of fragmentation"
+#: mod/profiles.php:724
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: mod/admin.php:1117
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/profiles.php:724
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: mod/admin.php:1119
-msgid "Periodical check of global contacts"
+#: mod/profiles.php:725
+msgid "Since [date]:"
 msgstr ""
 
-#: mod/admin.php:1119
-msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+#: mod/profiles.php:727
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: mod/admin.php:1120
-msgid "Days between requery"
+#: mod/profiles.php:728
+msgid "XMPP (Jabber) address:"
 msgstr ""
 
-#: mod/admin.php:1120
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/profiles.php:728
+msgid ""
+"The XMPP address will be propagated to your contacts so that they can follow "
+"you."
 msgstr ""
 
-#: mod/admin.php:1121
-msgid "Discover contacts from other servers"
+#: mod/profiles.php:729
+msgid "Homepage URL:"
 msgstr ""
 
-#: mod/admin.php:1121
-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'."
+#: mod/profiles.php:732
+msgid "Religious Views:"
 msgstr ""
 
-#: mod/admin.php:1122
-msgid "Timeframe for fetching global contacts"
+#: mod/profiles.php:733
+msgid "Public Keywords:"
 msgstr ""
 
-#: mod/admin.php:1122
-msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+#: mod/profiles.php:733
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: mod/admin.php:1123
-msgid "Search the local directory"
+#: mod/profiles.php:734
+msgid "Private Keywords:"
 msgstr ""
 
-#: mod/admin.php:1123
-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/profiles.php:734
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: mod/admin.php:1125
-msgid "Publish server information"
+#: mod/profiles.php:737
+msgid "Musical interests"
 msgstr ""
 
-#: mod/admin.php:1125
-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/profiles.php:738
+msgid "Books, literature"
 msgstr ""
 
-#: mod/admin.php:1127
-msgid "Suppress Tags"
+#: mod/profiles.php:739
+msgid "Television"
 msgstr ""
 
-#: mod/admin.php:1127
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/profiles.php:740
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: mod/admin.php:1128
-msgid "Path to item cache"
+#: mod/profiles.php:741
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: mod/admin.php:1128
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/profiles.php:742
+msgid "Love/romance"
 msgstr ""
 
-#: mod/admin.php:1129
-msgid "Cache duration in seconds"
+#: mod/profiles.php:743
+msgid "Work/employment"
 msgstr ""
 
-#: mod/admin.php:1129
-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/profiles.php:744
+msgid "School/education"
 msgstr ""
 
-#: mod/admin.php:1130
-msgid "Maximum numbers of comments per post"
+#: mod/profiles.php:745
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: mod/admin.php:1130
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/profiles.php:786
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/admin.php:1131
-msgid "Temp path"
+#: mod/register.php:93
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: mod/admin.php:1131
+#: mod/register.php:98
+#, php-format
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+"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/admin.php:1132
-msgid "Base path to installation"
+#: mod/register.php:105
+msgid "Registration successful."
 msgstr ""
 
-#: mod/admin.php:1132
-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/register.php:111
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/admin.php:1133
-msgid "Disable picture proxy"
+#: mod/register.php:160
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/admin.php:1133
+#: mod/register.php:226
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: mod/admin.php:1134
-msgid "Only search in tags"
+#: 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/admin.php:1134
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/admin.php:1136
-msgid "New base url"
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/admin.php:1136
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
+#: mod/register.php:267
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/admin.php:1138
-msgid "RINO Encryption"
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/admin.php:1138
-msgid "Encryption layer between nodes."
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/admin.php:1140
-msgid "Maximum number of parallel workers"
+#: mod/register.php:269
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/admin.php:1140
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+#: mod/register.php:272 mod/admin.php:1056
+msgid "Registration"
 msgstr ""
 
-#: mod/admin.php:1141
-msgid "Don't use 'proc_open' with the worker"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/admin.php:1141
-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/register.php:281
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/admin.php:1142
-msgid "Enable fastlane"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
 msgstr ""
 
-#: mod/admin.php:1142
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/admin.php:1143
-msgid "Enable frontend worker"
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
 msgstr ""
 
-#: mod/admin.php:1143
+#: mod/register.php:285
 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."
+"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/admin.php:1173
-msgid "Update has been marked successful"
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr ""
+
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
-#: mod/admin.php:1181
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: mod/admin.php:1184
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/search.php:124
+msgid "Too Many Requests"
 msgstr ""
 
-#: mod/admin.php:1198
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/search.php:125
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: mod/admin.php:1201
+#: mod/search.php:225
 #, php-format
-msgid "Update %s was successfully applied."
+msgid "Items tagged with: %s"
 msgstr ""
 
-#: mod/admin.php:1204
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/settings.php:43 mod/admin.php:1490
+msgid "Account"
 msgstr ""
 
-#: mod/admin.php:1207
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/settings.php:52 mod/admin.php:169
+msgid "Additional features"
 msgstr ""
 
-#: mod/admin.php:1227
-msgid "No failed updates."
+#: mod/settings.php:60
+msgid "Display"
 msgstr ""
 
-#: mod/admin.php:1228
-msgid "Check database structure"
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
 msgstr ""
 
-#: mod/admin.php:1233
-msgid "Failed Updates"
+#: mod/settings.php:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
+msgid "Plugins"
 msgstr ""
 
-#: mod/admin.php:1234
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/settings.php:88
+msgid "Connected apps"
 msgstr ""
 
-#: mod/admin.php:1235
-msgid "Mark success (if update was manually applied)"
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
 msgstr ""
 
-#: mod/admin.php:1236
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:102
+msgid "Remove account"
 msgstr ""
 
-#: mod/admin.php:1270
-#, 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."
+#: mod/settings.php:157
+msgid "Missing some important data!"
 msgstr ""
 
-#: mod/admin.php:1273
-#, 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/settings.php:271
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:1317
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/admin.php:1324
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/settings.php:276
+msgid "Email settings updated."
+msgstr ""
 
-#: mod/admin.php:1371
-#, php-format
-msgid "User '%s' deleted"
+#: mod/settings.php:291
+msgid "Features updated"
 msgstr ""
 
-#: mod/admin.php:1379
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/settings.php:361
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/admin.php:1379
-#, php-format
-msgid "User '%s' blocked"
+#: mod/settings.php:380
+msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/admin.php:1487 mod/admin.php:1513
-msgid "Register date"
+#: mod/settings.php:388
+msgid "Wrong password."
 msgstr ""
 
-#: mod/admin.php:1487 mod/admin.php:1513
-msgid "Last login"
+#: mod/settings.php:399
+msgid "Password changed."
 msgstr ""
 
-#: mod/admin.php:1487 mod/admin.php:1513
-msgid "Last item"
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/admin.php:1487 mod/settings.php:43
-msgid "Account"
+#: mod/settings.php:481
+msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/admin.php:1496
-msgid "Add User"
+#: mod/settings.php:483
+msgid " Name too short."
 msgstr ""
 
-#: mod/admin.php:1497
-msgid "select all"
+#: mod/settings.php:492
+msgid "Wrong Password"
 msgstr ""
 
-#: mod/admin.php:1498
-msgid "User registrations waiting for confirm"
+#: mod/settings.php:497
+msgid " Not valid email."
 msgstr ""
 
-#: mod/admin.php:1499
-msgid "User waiting for permanent deletion"
+#: mod/settings.php:503
+msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1500
-msgid "Request date"
+#: mod/settings.php:559
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/admin.php:1501
-msgid "No registrations."
+#: mod/settings.php:563
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/admin.php:1502
-msgid "Note from the user"
+#: mod/settings.php:603
+msgid "Settings updated."
 msgstr ""
 
-#: mod/admin.php:1503 mod/notifications.php:176 mod/notifications.php:255
-msgid "Approve"
+#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
 msgstr ""
 
-#: mod/admin.php:1504
-msgid "Deny"
+#: 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:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
+#: mod/admin.php:2170
+msgid "Save Settings"
 msgstr ""
 
-#: mod/admin.php:1508
-msgid "Site admin"
+#: mod/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
 msgstr ""
 
-#: mod/admin.php:1509
-msgid "Account expired"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
 msgstr ""
 
-#: mod/admin.php:1512
-msgid "New User"
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
 msgstr ""
 
-#: mod/admin.php:1513
-msgid "Deleted since"
+#: mod/settings.php:687 mod/settings.php:713
+msgid "Icon url"
 msgstr ""
 
-#: mod/admin.php:1518
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/settings.php:698
+msgid "You can't edit this application."
 msgstr ""
 
-#: mod/admin.php:1519
-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/settings.php:741
+msgid "Connected Apps"
 msgstr ""
 
-#: mod/admin.php:1529
-msgid "Name of the new user."
+#: mod/settings.php:745
+msgid "Client key starts with"
 msgstr ""
 
-#: mod/admin.php:1530
-msgid "Nickname"
+#: mod/settings.php:746
+msgid "Nname"
 msgstr ""
 
-#: mod/admin.php:1530
-msgid "Nickname of the new user."
+#: mod/settings.php:747
+msgid "Remove authorization"
 msgstr ""
 
-#: mod/admin.php:1531
-msgid "Email address of the new user."
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/admin.php:1574
-#, php-format
-msgid "Plugin %s disabled."
+#: mod/settings.php:768
+msgid "Plugin Settings"
 msgstr ""
 
-#: mod/admin.php:1578
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "Off"
 msgstr ""
 
-#: mod/admin.php:1589 mod/admin.php:1841
-msgid "Disable"
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "On"
 msgstr ""
 
-#: mod/admin.php:1591 mod/admin.php:1843
-msgid "Enable"
+#: mod/settings.php:790
+msgid "Additional Features"
 msgstr ""
 
-#: mod/admin.php:1614 mod/admin.php:1890
-msgid "Toggle"
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/admin.php:1622 mod/admin.php:1899
-msgid "Author: "
+#: mod/settings.php:810
+msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/admin.php:1623 mod/admin.php:1900
-msgid "Maintainer: "
+#: 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/admin.php:1678
-msgid "Reload active plugins"
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/admin.php:1683
-#, php-format
+#: mod/settings.php:820
 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"
+"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/admin.php:1802
-msgid "No themes found."
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/admin.php:1881
-msgid "Screenshot"
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/admin.php:1941
-msgid "Reload active themes"
+#: 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/admin.php:1946
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/admin.php:1947
-msgid "[Experimental]"
+#: mod/settings.php:848 mod/settings.php:849
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:1948
-msgid "[Unsupported]"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
 msgstr ""
 
-#: mod/admin.php:1972
-msgid "Log settings updated."
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
 msgstr ""
 
-#: mod/admin.php:2004
-msgid "PHP log currently enabled."
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/admin.php:2006
-msgid "PHP log currently disabled."
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:2015
-msgid "Clear"
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/admin.php:2020
-msgid "Enable Debugging"
+#: 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/admin.php:2021
-msgid "Log file"
+#: mod/settings.php:897
+msgid "Last successful email check:"
 msgstr ""
 
-#: mod/admin.php:2021
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: mod/settings.php:899
+msgid "IMAP server name:"
 msgstr ""
 
-#: mod/admin.php:2022
-msgid "Log level"
+#: mod/settings.php:900
+msgid "IMAP port:"
 msgstr ""
 
-#: mod/admin.php:2025
-msgid "PHP logging"
+#: mod/settings.php:901
+msgid "Security:"
 msgstr ""
 
-#: mod/admin.php:2026
-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."
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
 msgstr ""
 
-#: mod/admin.php:2156 mod/admin.php:2157 mod/settings.php:782
-msgid "Off"
+#: mod/settings.php:902
+msgid "Email login name:"
 msgstr ""
 
-#: mod/admin.php:2156 mod/admin.php:2157 mod/settings.php:782
-msgid "On"
+#: mod/settings.php:903
+msgid "Email password:"
 msgstr ""
 
-#: mod/admin.php:2157
-#, php-format
-msgid "Lock feature %s"
+#: mod/settings.php:904
+msgid "Reply-to address:"
 msgstr ""
 
-#: mod/admin.php:2165
-msgid "Manage Additional Features"
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/babel.php:16
-msgid "Source (bbcode) text:"
+#: mod/settings.php:906
+msgid "Action after import:"
 msgstr ""
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: mod/settings.php:906
+msgid "Move to folder"
 msgstr ""
 
-#: mod/babel.php:31
-msgid "Source input: "
+#: mod/settings.php:907
+msgid "Move to folder:"
 msgstr ""
 
-#: mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: mod/settings.php:943 mod/admin.php:942
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/babel.php:39
-msgid "bb2html: "
+#: mod/settings.php:1003
+msgid "Display Settings"
 msgstr ""
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
+#: mod/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
 msgstr ""
 
-#: mod/babel.php:47
-msgid "bb2md: "
+#: mod/settings.php:1010
+msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
+#: mod/settings.php:1011
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/babel.php:55
-msgid "bb2dia2bb: "
+#: 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/babel.php:59
-msgid "bb2md2html2bb: "
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/babel.php:65
-msgid "Source input (Diaspora format): "
+#: mod/settings.php:1012
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/babel.php:69
-msgid "diaspora2bb: "
+#: mod/settings.php:1013
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/cal.php:271 mod/events.php:375
-msgid "View"
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/cal.php:272 mod/events.php:377
-msgid "Previous"
+#: mod/settings.php:1014
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/cal.php:273 mod/events.php:378 mod/install.php:228
-msgid "Next"
+#: mod/settings.php:1015
+msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/cal.php:282 mod/events.php:387
-msgid "list"
+#: mod/settings.php:1016
+msgid "Calendar"
 msgstr ""
 
-#: mod/cal.php:292
-msgid "User not found"
+#: mod/settings.php:1017
+msgid "Beginning of week:"
 msgstr ""
 
-#: mod/cal.php:308
-msgid "This calendar format is not supported"
+#: mod/settings.php:1018
+msgid "Don't show notices"
 msgstr ""
 
-#: mod/cal.php:310
-msgid "No exportable data found"
+#: mod/settings.php:1019
+msgid "Infinite scroll"
 msgstr ""
 
-#: mod/cal.php:325
-msgid "calendar"
+#: mod/settings.php:1020
+msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/community.php:23
-msgid "Not available."
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/community.php:50 mod/search.php:219
-msgid "No results."
+#: mod/settings.php:1021
+msgid ""
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
-#: mod/profiles.php:182 mod/profiles.php:619
-msgid "Profile not found."
+#: mod/settings.php:1023
+msgid "General Theme Settings"
 msgstr ""
 
-#: mod/dfrn_confirm.php:127
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
+#: mod/settings.php:1025
+msgid "Content Settings"
 msgstr ""
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
+#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
+#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114
+msgid "Theme settings"
 msgstr ""
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
+#: mod/settings.php:1110
+msgid "Account Types"
 msgstr ""
 
-#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
-msgid "Remote site reported: "
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/dfrn_confirm.php:281
-msgid "Temporary failure. Please wait and try again."
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
+#: mod/settings.php:1119
+msgid "Personal Page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/dfrn_confirm.php:559
-#, php-format
-msgid "No user record found for '%s' "
+#: mod/settings.php:1123
+msgid "Organisation Page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:569
-msgid "Our site encryption key is apparently messed up."
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
 msgstr ""
 
-#: mod/dfrn_confirm.php:580
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: mod/settings.php:1127
+msgid "News Page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:602
-msgid "Contact record was not found for you on our site."
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
 msgstr ""
 
-#: mod/dfrn_confirm.php:616
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: mod/settings.php:1131
+msgid "Community Forum"
 msgstr ""
 
-#: mod/dfrn_confirm.php:636
+#: mod/settings.php:1132
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"This account is a community forum where people can discuss with each other"
 msgstr ""
 
-#: mod/dfrn_confirm.php:647
-msgid "Unable to set your contact credentials on our system."
+#: mod/settings.php:1135
+msgid "Normal Account Page"
 msgstr ""
 
-#: mod/dfrn_confirm.php:709
-msgid "Unable to update your contact profile details on our system"
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
 msgstr ""
 
-#: mod/dfrn_confirm.php:781
-#, php-format
-msgid "%1$s has joined %2$s"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
 msgstr ""
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
-msgid "Profile location is not valid or does not contain profile information."
+#: mod/settings.php:1143
+msgid "Public Forum"
 msgstr ""
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
-msgid "Warning: profile location has no identifiable owner name."
+#: mod/settings.php:1144
+msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
+#: mod/settings.php:1147
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
-#, 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:1148
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr ""
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
+#: mod/settings.php:1152
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/dfrn_request.php:253
-msgid "Profile unavailable."
+#: mod/settings.php:1163
+msgid "OpenID:"
+msgstr ""
+
+#: mod/settings.php:1163
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/dfrn_request.php:280
-#, php-format
-msgid "%s has received too many connection requests today."
+#: mod/settings.php:1171
+msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
+#: mod/settings.php:1171
+msgid "Your profile may be visible in public."
 msgstr ""
 
-#: mod/dfrn_request.php:282
-msgid "Friends are advised to please try again in 24 hours."
+#: mod/settings.php:1177
+msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
+#: mod/settings.php:1184
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
+#: mod/settings.php:1188
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
 msgstr ""
 
-#: mod/dfrn_request.php:378
-msgid "This account has not been configured for email. Request failed."
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/dfrn_request.php:485
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: mod/settings.php:1203
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
+#: mod/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
+#: mod/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/dfrn_request.php:656
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: mod/settings.php:1224
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
+#: mod/settings.php:1231
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/dfrn_request.php:687
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: mod/settings.php:1231
+msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
+#: mod/settings.php:1234
+msgid "Expire posts:"
 msgstr ""
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: mod/settings.php:1235
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/dfrn_request.php:848
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: mod/settings.php:1236
+msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/dfrn_request.php:872
-#, 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>."
+#: mod/settings.php:1237
+msgid "Expire photos:"
 msgstr ""
 
-#: mod/dfrn_request.php:877
-msgid "Friend/Connection Request"
+#: mod/settings.php:1238
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/dfrn_request.php:878
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: mod/settings.php:1269
+msgid "Account Settings"
 msgstr ""
 
-#: mod/dfrn_request.php:879 mod/follow.php:112
-msgid "Please answer the following:"
+#: mod/settings.php:1277
+msgid "Password Settings"
 msgstr ""
 
-#: mod/dfrn_request.php:880 mod/follow.php:113
-#, php-format
-msgid "Does %s know you?"
+#: mod/settings.php:1279
+msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/dfrn_request.php:884 mod/follow.php:114
-msgid "Add a personal note:"
+#: mod/settings.php:1280
+msgid "Current Password:"
 msgstr ""
 
-#: mod/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
+#: mod/settings.php:1280 mod/settings.php:1281
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/dfrn_request.php:889
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: mod/settings.php:1281
+msgid "Password:"
 msgstr ""
 
-#: mod/dfrn_request.php:890 mod/follow.php:120
-msgid "Your Identity Address:"
+#: mod/settings.php:1285
+msgid "Basic Settings"
 msgstr ""
 
-#: mod/dfrn_request.php:893 mod/follow.php:19
-msgid "Submit Request"
+#: mod/settings.php:1287
+msgid "Email Address:"
 msgstr ""
 
-#: mod/dirfind.php:37
-#, php-format
-msgid "People Search - %s"
+#: mod/settings.php:1288
+msgid "Your Timezone:"
 msgstr ""
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
+#: mod/settings.php:1289
+msgid "Your Language:"
 msgstr ""
 
-#: mod/events.php:93 mod/events.php:95
-msgid "Event can not end before it has started."
+#: mod/settings.php:1289
+msgid ""
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/events.php:102 mod/events.php:104
-msgid "Event title and start time are required."
+#: mod/settings.php:1290
+msgid "Default Post Location:"
 msgstr ""
 
-#: mod/events.php:376
-msgid "Create New Event"
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/events.php:481
-msgid "Event details"
+#: mod/settings.php:1294
+msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/events.php:482
-msgid "Starting date and Title are required."
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/events.php:483 mod/events.php:484
-msgid "Event Starts:"
+#: mod/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
-msgid "Required"
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/events.php:485 mod/events.php:501
-msgid "Finish date/time is not known or not relevant"
+#: mod/settings.php:1298
+msgid "(click to open/close)"
 msgstr ""
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Finishes:"
+#: mod/settings.php:1309
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/events.php:489 mod/events.php:502
-msgid "Adjust for viewer timezone"
+#: mod/settings.php:1310
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/events.php:491
-msgid "Description:"
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/events.php:495 mod/events.php:497
-msgid "Title:"
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/events.php:498 mod/events.php:499
-msgid "Share this event"
+#: mod/settings.php:1329
+msgid "Notification Settings"
 msgstr ""
 
-#: mod/events.php:528
-msgid "Failed to remove event"
+#: mod/settings.php:1330
+msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/events.php:530
-msgid "Event removed"
+#: mod/settings.php:1331
+msgid "accepting a friend request"
 msgstr ""
 
-#: mod/follow.php:30
-msgid "You already added this contact."
+#: mod/settings.php:1332
+msgid "joining a forum/community"
 msgstr ""
 
-#: mod/follow.php:39
-msgid "Diaspora support isn't enabled. Contact can't be added."
+#: mod/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/follow.php:46
-msgid "OStatus support is disabled. Contact can't be added."
+#: mod/settings.php:1334
+msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/follow.php:53
-msgid "The network type couldn't be detected. Contact can't be added."
+#: mod/settings.php:1335
+msgid "You receive an introduction"
 msgstr ""
 
-#: mod/follow.php:186
-msgid "Contact added"
+#: mod/settings.php:1336
+msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/friendica.php:68
-msgid "This is Friendica, version"
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/friendica.php:69
-msgid "running at web location"
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/friendica.php:73
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+#: mod/settings.php:1339
+msgid "You receive a private message"
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/friendica.php:80
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/friendica.php:94
-msgid "Installed plugins/addons/apps:"
+#: mod/settings.php:1344
+msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/friendica.php:108
-msgid "No installed plugins/addons/apps"
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/friendica.php:113
-msgid "On this server the following remote servers are blocked."
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/group.php:29
-msgid "Group created."
+#: mod/settings.php:1348
+msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/group.php:35
-msgid "Could not create group."
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/group.php:49 mod/group.php:154
-msgid "Group not found."
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/group.php:63
-msgid "Group name changed."
+#: mod/settings.php:1354
+msgid "Relocate"
 msgstr ""
 
-#: mod/group.php:93
-msgid "Save Group"
+#: 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/group.php:98
-msgid "Create a group of contacts/friends."
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/group.php:123
-msgid "Group removed."
+#: mod/uexport.php:37
+msgid "Export account"
 msgstr ""
 
-#: mod/group.php:125
-msgid "Unable to remove group."
+#: 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/group.php:189
-msgid "Delete Group"
+#: mod/uexport.php:38
+msgid "Export all"
 msgstr ""
 
-#: mod/group.php:195
-msgid "Group Editor"
+#: 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/group.php:200
-msgid "Edit Group Name"
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
 msgstr ""
 
-#: mod/group.php:210
-msgid "Members"
+#: mod/videos.php:129
+msgid "Delete Video"
 msgstr ""
 
-#: mod/group.php:226
-msgid "Remove Contact"
+#: mod/videos.php:208
+msgid "No videos selected"
 msgstr ""
 
-#: mod/group.php:250
-msgid "Add Contact"
+#: mod/videos.php:402
+msgid "Recent Videos"
+msgstr ""
+
+#: mod/videos.php:404
+msgid "Upload New Videos"
 msgstr ""
 
-#: mod/install.php:133
+#: mod/install.php:106
 msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/install.php:139
+#: mod/install.php:112
 msgid "Could not connect to database."
 msgstr ""
 
-#: mod/install.php:143
+#: mod/install.php:116
 msgid "Could not create table."
 msgstr ""
 
-#: mod/install.php:149
+#: mod/install.php:122
 msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/install.php:154
+#: mod/install.php:127
 msgid ""
 "You may need to import the file \"database.sql\" manually using phpmyadmin "
 "or mysql."
 msgstr ""
 
-#: mod/install.php:155 mod/install.php:227 mod/install.php:582
+#: mod/install.php:128 mod/install.php:200 mod/install.php:547
 msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/install.php:167
+#: mod/install.php:140
 msgid "Database already in use."
 msgstr ""
 
-#: mod/install.php:224
+#: mod/install.php:197
 msgid "System check"
 msgstr ""
 
-#: mod/install.php:229
+#: mod/install.php:202
 msgid "Check again"
 msgstr ""
 
-#: mod/install.php:248
+#: mod/install.php:221
 msgid "Database connection"
 msgstr ""
 
-#: mod/install.php:249
+#: mod/install.php:222
 msgid ""
 "In order to install Friendica we need to know how to connect to your "
 "database."
 msgstr ""
 
-#: mod/install.php:250
+#: mod/install.php:223
 msgid ""
 "Please contact your hosting provider or site administrator if you have "
 "questions about these settings."
 msgstr ""
 
-#: mod/install.php:251
+#: mod/install.php:224
 msgid ""
 "The database you specify below should already exist. If it does not, please "
 "create it before continuing."
 msgstr ""
 
-#: mod/install.php:255
+#: mod/install.php:228
 msgid "Database Server Name"
 msgstr ""
 
-#: mod/install.php:256
+#: mod/install.php:229
 msgid "Database Login Name"
 msgstr ""
 
-#: mod/install.php:257
+#: mod/install.php:230
 msgid "Database Login Password"
 msgstr ""
 
-#: mod/install.php:257
+#: mod/install.php:230
 msgid "For security reasons the password must not be empty"
 msgstr ""
 
-#: mod/install.php:258
+#: mod/install.php:231
 msgid "Database Name"
 msgstr ""
 
-#: mod/install.php:259 mod/install.php:300
+#: mod/install.php:232 mod/install.php:273
 msgid "Site administrator email address"
 msgstr ""
 
-#: mod/install.php:259 mod/install.php:300
+#: mod/install.php:232 mod/install.php:273
 msgid ""
 "Your account email address must match this in order to use the web admin "
 "panel."
 msgstr ""
 
-#: mod/install.php:263 mod/install.php:303
+#: mod/install.php:236 mod/install.php:276
 msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/install.php:290
+#: mod/install.php:263
 msgid "Site settings"
 msgstr ""
 
-#: mod/install.php:304
+#: mod/install.php:277
 msgid "System Language:"
 msgstr ""
 
-#: mod/install.php:304
+#: mod/install.php:277
 msgid ""
 "Set the default language for your Friendica installation interface and to "
 "send emails."
 msgstr ""
 
-#: mod/install.php:344
+#: mod/install.php:317
 msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/install.php:345
+#: mod/install.php:318
 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://"
+"will not be able to run the background processing. See <a href='https://"
 "github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
 "poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/install.php:349
+#: mod/install.php:322
 msgid "PHP executable path"
 msgstr ""
 
-#: mod/install.php:349
+#: mod/install.php:322
 msgid ""
 "Enter full path to php executable. You can leave this blank to continue the "
 "installation."
 msgstr ""
 
-#: mod/install.php:354
+#: mod/install.php:327
 msgid "Command line PHP"
 msgstr ""
 
-#: mod/install.php:363
+#: mod/install.php:336
 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/install.php:364
+#: mod/install.php:337
 msgid "Found PHP version: "
 msgstr ""
 
-#: mod/install.php:366
+#: mod/install.php:339
 msgid "PHP cli binary"
 msgstr ""
 
-#: mod/install.php:377
+#: mod/install.php:350
 msgid ""
 "The command line version of PHP on your system does not have "
 "\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/install.php:378
+#: mod/install.php:351
 msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/install.php:380
+#: mod/install.php:353
 msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/install.php:403
+#: mod/install.php:376
 msgid ""
 "Error: the \"openssl_pkey_new\" function on this system is not able to "
 "generate encryption keys"
 msgstr ""
 
-#: mod/install.php:404
+#: mod/install.php:377
 msgid ""
 "If running under Windows, please see \"http://www.php.net/manual/en/openssl."
 "installation.php\"."
 msgstr ""
 
-#: mod/install.php:406
+#: mod/install.php:379
 msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/install.php:413
+#: mod/install.php:386
 msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/install.php:414
+#: mod/install.php:387
 msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/install.php:415
+#: mod/install.php:388
 msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/install.php:416
-msgid "mysqli PHP module"
+#: mod/install.php:389
+msgid "PDO or MySQLi PHP module"
 msgstr ""
 
-#: mod/install.php:417
+#: mod/install.php:390
 msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/install.php:418
+#: mod/install.php:391
 msgid "XML PHP module"
 msgstr ""
 
-#: mod/install.php:419
+#: mod/install.php:392
 msgid "iconv module"
 msgstr ""
 
-#: mod/install.php:423 mod/install.php:425
+#: mod/install.php:396 mod/install.php:398
 msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/install.php:423
+#: mod/install.php:396
 msgid ""
 "Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/install.php:431
+#: mod/install.php:404
 msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/install.php:435
+#: mod/install.php:408
 msgid ""
 "Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/install.php:439
+#: mod/install.php:412
 msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/install.php:443
-msgid "Error: mysqli PHP module required but not installed."
+#: mod/install.php:416
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:420
+msgid "Error: The MySQL driver for PDO is not installed."
 msgstr ""
 
-#: mod/install.php:447
+#: mod/install.php:424
 msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/install.php:451
+#: mod/install.php:428
 msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/install.php:461
+#: mod/install.php:438
 msgid "Error, XML PHP module required but not installed."
 msgstr ""
 
-#: mod/install.php:473
+#: mod/install.php:450
 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/install.php:474
+#: mod/install.php:451
 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/install.php:475
+#: mod/install.php:452
 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/install.php:476
+#: mod/install.php:453
 msgid ""
 "You can alternatively skip this procedure and perform a manual installation. "
 "Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/install.php:479
+#: mod/install.php:456
 msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/install.php:489
+#: mod/install.php:466
 msgid ""
 "Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
 "compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/install.php:490
+#: mod/install.php:467
 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/install.php:491
+#: mod/install.php:468
 msgid ""
 "Please ensure that the user that your web server runs as (e.g. www-data) has "
 "write access to this folder."
 msgstr ""
 
-#: mod/install.php:492
+#: mod/install.php:469
 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 ""
 
-#: mod/install.php:495
+#: mod/install.php:472
 msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/install.php:511
+#: mod/install.php:488
 msgid ""
 "Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/install.php:513
+#: mod/install.php:490
 msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/install.php:532
+#: mod/install.php:509
 msgid "ImageMagick PHP extension is not installed"
 msgstr ""
 
-#: mod/install.php:534
+#: mod/install.php:511
 msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/install.php:536
+#: mod/install.php:513
 msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/install.php:543
-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/install.php:580
-msgid "<h1>What next</h1>"
-msgstr ""
-
-#: mod/install.php:581
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
-msgstr ""
-
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr ""
-
-#: mod/item.php:344
-msgid "Empty post discarded."
-msgstr ""
-
-#: mod/item.php:890
-msgid "System error. Post not saved."
-msgstr ""
-
-#: mod/item.php:981
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
-msgstr ""
-
-#: mod/item.php:983
-#, php-format
-msgid "You may visit them online at %s"
-msgstr ""
-
-#: mod/item.php:984
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
-
-#: mod/item.php:988
-#, php-format
-msgid "%s posted an update."
-msgstr ""
-
-#: mod/manage.php:151
-msgid "Manage Identities and/or Pages"
-msgstr ""
-
-#: mod/manage.php:152
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr ""
-
-#: mod/manage.php:153
-msgid "Select an identity to manage: "
-msgstr ""
-
-#: mod/message.php:64
-msgid "Unable to locate contact information."
-msgstr ""
-
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
-msgstr ""
-
-#: mod/message.php:224
-msgid "Message deleted."
-msgstr ""
-
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr ""
-
-#: mod/message.php:364
-msgid "No messages."
-msgstr ""
-
-#: mod/message.php:403
-msgid "Message not available."
-msgstr ""
-
-#: mod/message.php:477
-msgid "Delete message"
-msgstr ""
-
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
-msgstr ""
-
-#: mod/message.php:505
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr ""
-
-#: mod/message.php:509
-msgid "Send Reply"
-msgstr ""
-
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
-msgstr ""
-
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
-msgstr ""
-
-#: mod/message.php:565
-#, php-format
-msgid "%s and You"
-msgstr ""
-
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
-msgstr ""
-
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/network.php:197 mod/search.php:25
-msgid "Remove term"
-msgstr ""
-
-#: mod/network.php:404
-#, php-format
+#: mod/install.php:520
 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:407
-msgid "Messages in this group won't be send to these receivers."
-msgstr ""
-
-#: mod/network.php:535
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr ""
-
-#: mod/network.php:540
-msgid "Invalid contact."
-msgstr ""
-
-#: mod/network.php:813
-msgid "Commented Order"
-msgstr ""
-
-#: mod/network.php:816
-msgid "Sort by Comment Date"
+"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/network.php:821
-msgid "Posted Order"
+#: mod/install.php:545
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/network.php:824
-msgid "Sort by Post Date"
+#: mod/install.php:546
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: mod/network.php:835
-msgid "Posts that mention or involve you"
+#: mod/item.php:116
+msgid "Unable to locate original post."
 msgstr ""
 
-#: mod/network.php:843
-msgid "New"
+#: mod/item.php:344
+msgid "Empty post discarded."
 msgstr ""
 
-#: mod/network.php:846
-msgid "Activity Stream - by date"
+#: mod/item.php:904
+msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/network.php:854
-msgid "Shared Links"
+#: mod/item.php:995
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/network.php:857
-msgid "Interesting Links"
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/network.php:865
-msgid "Starred"
+#: mod/item.php:998
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: mod/network.php:868
-msgid "Favourite Posts"
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
 #: mod/notifications.php:35
@@ -7211,7 +7238,7 @@ msgid "Invalid request identifier."
 msgstr ""
 
 #: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:258
+#: mod/notifications.php:227
 msgid "Discard"
 msgstr ""
 
@@ -7235,7 +7262,7 @@ msgstr ""
 msgid "Hide Ignored Requests"
 msgstr ""
 
-#: mod/notifications.php:164 mod/notifications.php:228
+#: mod/notifications.php:164 mod/notifications.php:234
 msgid "Notification type: "
 msgstr ""
 
@@ -7244,14 +7271,18 @@ msgstr ""
 msgid "suggested by %s"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:246
+#: mod/notifications.php:173 mod/notifications.php:252
 msgid "Post a new friend activity"
 msgstr ""
 
-#: mod/notifications.php:173 mod/notifications.php:246
+#: mod/notifications.php:173 mod/notifications.php:252
 msgid "if applicable"
 msgstr ""
 
+#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
+msgid "Approve"
+msgstr ""
+
 #: mod/notifications.php:195
 msgid "Claims to be known to you: "
 msgstr ""
@@ -7301,1406 +7332,1392 @@ msgstr ""
 msgid "Subscriber"
 msgstr ""
 
-#: mod/notifications.php:266
+#: mod/notifications.php:272
 msgid "No introductions."
 msgstr ""
 
-#: mod/notifications.php:307
+#: mod/notifications.php:313
 msgid "Show unread"
 msgstr ""
 
-#: mod/notifications.php:307
+#: mod/notifications.php:313
 msgid "Show all"
 msgstr ""
 
-#: mod/notifications.php:313
+#: mod/notifications.php:319
 #, php-format
 msgid "No more %s notifications."
 msgstr ""
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr ""
-
-#: mod/openid.php:60
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr ""
-
-#: mod/photos.php:94 mod/photos.php:1900
-msgid "Recent Photos"
-msgstr ""
-
-#: mod/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
-msgid "Upload New Photos"
-msgstr ""
-
-#: mod/photos.php:112 mod/settings.php:36
-msgid "everybody"
-msgstr ""
-
-#: mod/photos.php:176
-msgid "Contact information unavailable"
-msgstr ""
-
-#: mod/photos.php:197
-msgid "Album not found."
-msgstr ""
-
-#: mod/photos.php:230 mod/photos.php:242 mod/photos.php:1272
-msgid "Delete Album"
-msgstr ""
-
-#: mod/photos.php:240
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr ""
-
-#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
-msgid "Delete Photo"
-msgstr ""
-
-#: mod/photos.php:332
-msgid "Do you really want to delete this photo?"
-msgstr ""
-
-#: mod/photos.php:713
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr ""
-
-#: mod/photos.php:713
-msgid "a photo"
-msgstr ""
-
-#: mod/photos.php:821
-msgid "Image file is empty."
-msgstr ""
-
-#: mod/photos.php:988
-msgid "No photos selected"
-msgstr ""
-
-#: mod/photos.php:1091 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr ""
-
-#: mod/photos.php:1151
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr ""
-
-#: mod/photos.php:1188
-msgid "Upload Photos"
-msgstr ""
-
-#: mod/photos.php:1192 mod/photos.php:1267
-msgid "New album name: "
-msgstr ""
-
-#: mod/photos.php:1193
-msgid "or existing album name: "
-msgstr ""
-
-#: mod/photos.php:1194
-msgid "Do not show a status post for this upload"
-msgstr ""
-
-#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
-msgid "Show to Groups"
-msgstr ""
-
-#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
-msgid "Show to Contacts"
-msgstr ""
-
-#: mod/photos.php:1207
-msgid "Private Photo"
-msgstr ""
-
-#: mod/photos.php:1208
-msgid "Public Photo"
-msgstr ""
-
-#: mod/photos.php:1278
-msgid "Edit Album"
-msgstr ""
-
-#: mod/photos.php:1283
-msgid "Show Newest First"
-msgstr ""
-
-#: mod/photos.php:1285
-msgid "Show Oldest First"
-msgstr ""
-
-#: mod/photos.php:1314 mod/photos.php:1885
-msgid "View Photo"
-msgstr ""
-
-#: mod/photos.php:1359
-msgid "Permission denied. Access to this item may be restricted."
-msgstr ""
-
-#: mod/photos.php:1361
-msgid "Photo not available"
-msgstr ""
-
-#: mod/photos.php:1422
-msgid "View photo"
-msgstr ""
-
-#: mod/photos.php:1422
-msgid "Edit photo"
-msgstr ""
-
-#: mod/photos.php:1423
-msgid "Use as profile photo"
-msgstr ""
-
-#: mod/photos.php:1448
-msgid "View Full Size"
-msgstr ""
-
-#: mod/photos.php:1538
-msgid "Tags: "
-msgstr ""
-
-#: mod/photos.php:1541
-msgid "[Remove any tag]"
-msgstr ""
-
-#: mod/photos.php:1584
-msgid "New album name"
-msgstr ""
-
-#: mod/photos.php:1585
-msgid "Caption"
-msgstr ""
-
-#: mod/photos.php:1586
-msgid "Add a Tag"
-msgstr ""
-
-#: mod/photos.php:1586
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr ""
-
-#: mod/photos.php:1587
-msgid "Do not rotate"
-msgstr ""
-
-#: mod/photos.php:1588
-msgid "Rotate CW (right)"
-msgstr ""
-
-#: mod/photos.php:1589
-msgid "Rotate CCW (left)"
-msgstr ""
-
-#: mod/photos.php:1604
-msgid "Private photo"
+#: mod/ping.php:270
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/photos.php:1605
-msgid "Public photo"
+#: mod/ping.php:285
+msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/photos.php:1814
-msgid "Map"
+#: mod/ping.php:300
+msgid "{0} requested registration"
 msgstr ""
 
-#: mod/photos.php:1891 mod/videos.php:393
-msgid "View Album"
+#: mod/admin.php:96
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/ping.php:270
-msgid "{0} wants to be your friend"
+#: mod/admin.php:165 mod/admin.php:1054
+msgid "Site"
 msgstr ""
 
-#: mod/ping.php:285
-msgid "{0} sent you a message"
+#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
+msgid "Users"
 msgstr ""
 
-#: mod/ping.php:300
-msgid "{0} requested registration"
+#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
+msgid "Themes"
 msgstr ""
 
-#: mod/probe.php:10 mod/webfinger.php:9
-msgid "Only logged in users are permitted to perform a probing."
+#: mod/admin.php:170
+msgid "DB updates"
 msgstr ""
 
-#: mod/profile.php:175
-msgid "Tips for New Members"
+#: mod/admin.php:171 mod/admin.php:512
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
+#: mod/admin.php:172 mod/admin.php:288
+msgid "Server Blocklist"
 msgstr ""
 
-#: mod/profiles.php:54 mod/profiles.php:90
-msgid "Profile-"
+#: mod/admin.php:173 mod/admin.php:478
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/profiles.php:73 mod/profiles.php:118
-msgid "New profile created."
+#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
+msgid "Logs"
 msgstr ""
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
+#: mod/admin.php:188 mod/admin.php:2084
+msgid "View Logs"
 msgstr ""
 
-#: mod/profiles.php:192
-msgid "Profile Name is required."
+#: mod/admin.php:189
+msgid "probe address"
 msgstr ""
 
-#: mod/profiles.php:332
-msgid "Marital Status"
+#: mod/admin.php:190
+msgid "check webfinger"
 msgstr ""
 
-#: mod/profiles.php:336
-msgid "Romantic Partner"
+#: mod/admin.php:197
+msgid "Plugin Features"
 msgstr ""
 
-#: mod/profiles.php:348
-msgid "Work/Employment"
+#: mod/admin.php:199
+msgid "diagnostics"
 msgstr ""
 
-#: mod/profiles.php:351
-msgid "Religion"
+#: mod/admin.php:200
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/profiles.php:355
-msgid "Political Views"
+#: mod/admin.php:279
+msgid "The blocked domain"
 msgstr ""
 
-#: mod/profiles.php:359
-msgid "Gender"
+#: mod/admin.php:280 mod/admin.php:293
+msgid "The reason why you blocked this domain."
 msgstr ""
 
-#: mod/profiles.php:363
-msgid "Sexual Preference"
+#: mod/admin.php:281
+msgid "Delete domain"
 msgstr ""
 
-#: mod/profiles.php:367
-msgid "XMPP"
+#: mod/admin.php:281
+msgid "Check to delete this entry from the blocklist"
 msgstr ""
 
-#: mod/profiles.php:371
-msgid "Homepage"
+#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
+#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
+#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
+msgid "Administration"
 msgstr ""
 
-#: mod/profiles.php:375 mod/profiles.php:695
-msgid "Interests"
+#: mod/admin.php:289
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote server."
 msgstr ""
 
-#: mod/profiles.php:379
-msgid "Address"
+#: mod/admin.php:290
+msgid ""
+"The list of blocked servers will be made publically available on the /"
+"friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
 msgstr ""
 
-#: mod/profiles.php:386 mod/profiles.php:691
-msgid "Location"
+#: mod/admin.php:291
+msgid "Add new entry to block list"
 msgstr ""
 
-#: mod/profiles.php:471
-msgid "Profile updated."
+#: mod/admin.php:292
+msgid "Server Domain"
 msgstr ""
 
-#: mod/profiles.php:564
-msgid " and "
+#: mod/admin.php:292
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
 msgstr ""
 
-#: mod/profiles.php:573
-msgid "public profile"
+#: mod/admin.php:293
+msgid "Block reason"
 msgstr ""
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/admin.php:294
+msgid "Add Entry"
 msgstr ""
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/admin.php:295
+msgid "Save changes to the blocklist"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/admin.php:296
+msgid "Current Entries in the Blocklist"
 msgstr ""
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
+#: mod/admin.php:299
+msgid "Delete entry from blocklist"
 msgstr ""
 
-#: mod/profiles.php:642
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: mod/admin.php:302
+msgid "Delete entry from blocklist?"
 msgstr ""
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
+#: mod/admin.php:327
+msgid "Server added to blocklist."
 msgstr ""
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
+#: mod/admin.php:343
+msgid "Site blocklist updated."
 msgstr ""
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
+#: mod/admin.php:408
+msgid "unknown"
 msgstr ""
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
+#: mod/admin.php:471
+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/profiles.php:683
-msgid "View this profile"
+#: mod/admin.php:472
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
+#: mod/admin.php:484
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
+#: mod/admin.php:514
+msgid "ID"
 msgstr ""
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
+#: mod/admin.php:515
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/profiles.php:689
-msgid "Basic information"
+#: mod/admin.php:516
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/profiles.php:690
-msgid "Profile picture"
+#: mod/admin.php:518
+msgid "Created"
 msgstr ""
 
-#: mod/profiles.php:692
-msgid "Preferences"
+#: mod/admin.php:519
+msgid "Last Tried"
 msgstr ""
 
-#: mod/profiles.php:693
-msgid "Status information"
+#: mod/admin.php:520
+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 ""
 
-#: mod/profiles.php:694
-msgid "Additional information"
+#: mod/admin.php:545
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php include/"
+"dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
 msgstr ""
 
-#: mod/profiles.php:697
-msgid "Relation"
+#: mod/admin.php:550
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
 msgstr ""
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
+#: mod/admin.php:554 mod/admin.php:1447
+msgid "Normal Account"
 msgstr ""
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: mod/admin.php:555 mod/admin.php:1448
+msgid "Soapbox Account"
 msgstr ""
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
+#: mod/admin.php:556 mod/admin.php:1449
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/profiles.php:709
-msgid "Profile Name:"
+#: mod/admin.php:557 mod/admin.php:1450
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/profiles.php:711
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: mod/admin.php:558
+msgid "Blog Account"
 msgstr ""
 
-#: mod/profiles.php:712
-msgid "Your Full Name:"
+#: mod/admin.php:559
+msgid "Private Forum"
 msgstr ""
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
+#: mod/admin.php:581
+msgid "Message queues"
 msgstr ""
 
-#: mod/profiles.php:716
-msgid "Street Address:"
+#: mod/admin.php:587
+msgid "Summary"
 msgstr ""
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
+#: mod/admin.php:589
+msgid "Registered users"
 msgstr ""
 
-#: mod/profiles.php:718
-msgid "Region/State:"
+#: mod/admin.php:591
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
+#: mod/admin.php:592
+msgid "Version"
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Country:"
+#: mod/admin.php:597
+msgid "Active plugins"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
+#: mod/admin.php:622
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:914
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/profiles.php:725
-msgid "Since [date]:"
+#: mod/admin.php:971
+msgid "No community page"
 msgstr ""
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
+#: mod/admin.php:972
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/profiles.php:728
-msgid "XMPP (Jabber) address:"
+#: mod/admin.php:973
+msgid "Global community page"
 msgstr ""
 
-#: mod/profiles.php:728
-msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow "
-"you."
+#: mod/admin.php:979
+msgid "At post arrival"
 msgstr ""
 
-#: mod/profiles.php:729
-msgid "Homepage URL:"
+#: mod/admin.php:989
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/profiles.php:732
-msgid "Religious Views:"
+#: mod/admin.php:990
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "Public Keywords:"
+#: mod/admin.php:994
+msgid "One month"
 msgstr ""
 
-#: mod/profiles.php:733
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: mod/admin.php:995
+msgid "Three months"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "Private Keywords:"
+#: mod/admin.php:996
+msgid "Half a year"
 msgstr ""
 
-#: mod/profiles.php:734
-msgid "(Used for searching profiles, never shown to others)"
+#: mod/admin.php:997
+msgid "One year"
 msgstr ""
 
-#: mod/profiles.php:737
-msgid "Musical interests"
+#: mod/admin.php:1002
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/profiles.php:738
-msgid "Books, literature"
+#: mod/admin.php:1025
+msgid "Closed"
 msgstr ""
 
-#: mod/profiles.php:739
-msgid "Television"
+#: mod/admin.php:1026
+msgid "Requires approval"
 msgstr ""
 
-#: mod/profiles.php:740
-msgid "Film/dance/culture/entertainment"
+#: mod/admin.php:1027
+msgid "Open"
 msgstr ""
 
-#: mod/profiles.php:741
-msgid "Hobbies/Interests"
+#: mod/admin.php:1031
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/profiles.php:742
-msgid "Love/romance"
+#: mod/admin.php:1032
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/profiles.php:743
-msgid "Work/employment"
+#: mod/admin.php:1033
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/profiles.php:744
-msgid "School/education"
+#: mod/admin.php:1057
+msgid "File upload"
 msgstr ""
 
-#: mod/profiles.php:745
-msgid "Contact information and Social Networks"
+#: mod/admin.php:1058
+msgid "Policies"
 msgstr ""
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
+#: mod/admin.php:1060
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/register.php:93
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: mod/admin.php:1061
+msgid "Performance"
 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/admin.php:1062
+msgid "Worker"
 msgstr ""
 
-#: mod/register.php:105
-msgid "Registration successful."
+#: mod/admin.php:1063
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
+#: mod/admin.php:1066
+msgid "Site name"
 msgstr ""
 
-#: mod/register.php:160
-msgid "Your registration is pending approval by the site owner."
+#: mod/admin.php:1067
+msgid "Host name"
 msgstr ""
 
-#: mod/register.php:226
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: mod/admin.php:1068
+msgid "Sender Email"
 msgstr ""
 
-#: mod/register.php:227
+#: mod/admin.php:1068
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/register.php:228
-msgid "Your OpenID (optional): "
+#: mod/admin.php:1069
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
+#: mod/admin.php:1070
+msgid "Shortcut icon"
 msgstr ""
 
-#: mod/register.php:267
-msgid "Note for the admin"
+#: mod/admin.php:1070
+msgid "Link to an icon that will be used for browsers."
 msgstr ""
 
-#: mod/register.php:267
-msgid "Leave a message for the admin, why you want to join this node"
+#: mod/admin.php:1071
+msgid "Touch icon"
 msgstr ""
 
-#: mod/register.php:268
-msgid "Membership on this site is by invitation only."
+#: mod/admin.php:1071
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/register.php:269
-msgid "Your invitation ID: "
+#: mod/admin.php:1072
+msgid "Additional Info"
 msgstr ""
 
-#: mod/register.php:280
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+#: mod/admin.php:1072
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/register.php:281
-msgid "Your Email Address: "
+#: mod/admin.php:1073
+msgid "System language"
 msgstr ""
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
+#: mod/admin.php:1074
+msgid "System theme"
 msgstr ""
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
+#: mod/admin.php:1074
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
+#: mod/admin.php:1075
+msgid "Mobile system theme"
 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/admin.php:1075
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/register.php:286
-msgid "Choose a nickname: "
+#: mod/admin.php:1076
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
+#: mod/admin.php:1076
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
+#: mod/admin.php:1077
+msgid "Force SSL"
 msgstr ""
 
-#: mod/search.php:124
-msgid "Too Many Requests"
+#: mod/admin.php:1077
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/search.php:125
-msgid "Only one search per minute is permitted for not logged in users."
+#: mod/admin.php:1078
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/search.php:225
-#, php-format
-msgid "Items tagged with: %s"
+#: mod/admin.php:1078
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/settings.php:60
-msgid "Display"
+#: mod/admin.php:1079
+msgid "Single user instance"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
+#: mod/admin.php:1079
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/settings.php:88
-msgid "Connected apps"
+#: mod/admin.php:1080
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
+#: mod/admin.php:1080
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/settings.php:102
-msgid "Remove account"
+#: mod/admin.php:1081
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/settings.php:157
-msgid "Missing some important data!"
+#: mod/admin.php:1081
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/settings.php:271
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:1082
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/settings.php:276
-msgid "Email settings updated."
+#: mod/admin.php:1082
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/settings.php:291
-msgid "Features updated"
+#: mod/admin.php:1084
+msgid "Register policy"
 msgstr ""
 
-#: mod/settings.php:361
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:1085
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
+#: mod/admin.php:1085
+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/settings.php:388
-msgid "Wrong password."
+#: mod/admin.php:1086
+msgid "Register text"
 msgstr ""
 
-#: mod/settings.php:399
-msgid "Password changed."
+#: mod/admin.php:1086
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/settings.php:401
-msgid "Password update failed. Please try again."
+#: mod/admin.php:1087
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
+#: mod/admin.php:1087
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/settings.php:483
-msgid " Name too short."
+#: mod/admin.php:1088
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/settings.php:492
-msgid "Wrong Password"
+#: mod/admin.php:1088
+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/settings.php:497
-msgid " Not valid email."
+#: mod/admin.php:1089
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
+#: mod/admin.php:1089
+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 ""
 
-#: mod/settings.php:559
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/admin.php:1090
+msgid "Block public"
 msgstr ""
 
-#: mod/settings.php:563
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:1090
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/settings.php:603
-msgid "Settings updated."
+#: mod/admin.php:1091
+msgid "Force publish"
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
+#: mod/admin.php:1091
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
+#: mod/admin.php:1092
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/settings.php:685 mod/settings.php:711
-msgid "Consumer Secret"
+#: mod/admin.php:1092
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
+#: mod/admin.php:1093
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/settings.php:687 mod/settings.php:713
-msgid "Icon url"
+#: mod/admin.php:1093
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
+#: mod/admin.php:1094
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/settings.php:741
-msgid "Connected Apps"
+#: mod/admin.php:1094
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/settings.php:745
-msgid "Client key starts with"
+#: mod/admin.php:1095
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/settings.php:746
-msgid "No name"
+#: mod/admin.php:1095
+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/settings.php:747
-msgid "Remove authorization"
+#: mod/admin.php:1096
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
+#: mod/admin.php:1096
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/settings.php:768
-msgid "Plugin Settings"
+#: mod/admin.php:1097
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/settings.php:790
-msgid "Additional Features"
+#: mod/admin.php:1097
+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/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
+#: mod/admin.php:1098
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/settings.php:810
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1098
+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/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."
+#: mod/admin.php:1099
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/settings.php:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+#: mod/admin.php:1099
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: 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."
+#: mod/admin.php:1100
+msgid "OpenID support"
 msgstr ""
 
-#: mod/settings.php:826
-msgid "Default group for OStatus contacts"
+#: mod/admin.php:1100
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
+#: mod/admin.php:1101
+msgid "Fullname check"
 msgstr ""
 
-#: mod/settings.php:836
+#: mod/admin.php:1101
 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."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
+#: mod/admin.php:1102
+msgid "Community Page Style"
 msgstr ""
 
-#: mod/settings.php:848 mod/settings.php:849
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:1102
+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/settings.php:848 mod/settings.php:849
-msgid "enabled"
+#: mod/admin.php:1103
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "disabled"
+#: mod/admin.php:1103
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
+#: mod/admin.php:1104
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/settings.php:883
-msgid "Email access is disabled on this site."
+#: mod/admin.php:1104
+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/settings.php:895
-msgid "Email/Mailbox Setup"
+#: mod/admin.php:1105
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: mod/settings.php:896
+#: mod/admin.php:1105
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: mod/settings.php:897
-msgid "Last successful email check:"
+#: mod/admin.php:1106
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
+#: mod/admin.php:1106
+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/settings.php:900
-msgid "IMAP port:"
+#: mod/admin.php:1107
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/settings.php:901
-msgid "Security:"
+#: mod/admin.php:1109
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/settings.php:901 mod/settings.php:906
-msgid "None"
+#: mod/admin.php:1110
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/settings.php:902
-msgid "Email login name:"
+#: mod/admin.php:1110
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/settings.php:903
-msgid "Email password:"
+#: mod/admin.php:1111
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
+#: mod/admin.php:1111
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
+#: mod/admin.php:1112
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/settings.php:906
-msgid "Action after import:"
+#: mod/admin.php:1112
+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/settings.php:906
-msgid "Move to folder"
+#: mod/admin.php:1113
+msgid "Proxy user"
 msgstr ""
 
-#: mod/settings.php:907
-msgid "Move to folder:"
+#: mod/admin.php:1114
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/settings.php:1003
-msgid "Display Settings"
+#: mod/admin.php:1115
+msgid "Network timeout"
 msgstr ""
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
+#: mod/admin.php:1115
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
+#: mod/admin.php:1116
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
+#: mod/admin.php:1116
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: 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."
+#: mod/admin.php:1117
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Update browser every xx seconds"
+#: mod/admin.php:1117
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/settings.php:1012
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1118
+msgid "Minimal Memory"
 msgstr ""
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
+#: mod/admin.php:1118
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
 msgstr ""
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
+#: mod/admin.php:1119
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/settings.php:1014
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1119
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
+#: mod/admin.php:1120
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/settings.php:1016
-msgid "Calendar"
+#: mod/admin.php:1120
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
+#: mod/admin.php:1122
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/settings.php:1018
-msgid "Don't show notices"
+#: mod/admin.php:1122
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/settings.php:1019
-msgid "Infinite scroll"
+#: mod/admin.php:1123
+msgid "Days between requery"
 msgstr ""
 
-#: mod/settings.php:1020
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1123
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/settings.php:1021
-msgid "Bandwith Saver Mode"
+#: mod/admin.php:1124
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/settings.php:1021
+#: mod/admin.php:1124
 msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
+"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/settings.php:1023
-msgid "General Theme Settings"
+#: mod/admin.php:1125
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/settings.php:1024
-msgid "Custom Theme Settings"
+#: mod/admin.php:1125
+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/settings.php:1025
-msgid "Content Settings"
+#: mod/admin.php:1126
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
+#: mod/admin.php:1126
+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/settings.php:1110
-msgid "Account Types"
+#: mod/admin.php:1128
+msgid "Publish server information"
 msgstr ""
 
-#: mod/settings.php:1111
-msgid "Personal Page Subtypes"
+#: mod/admin.php:1128
+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/settings.php:1112
-msgid "Community Forum Subtypes"
+#: mod/admin.php:1130
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/settings.php:1119
-msgid "Personal Page"
+#: mod/admin.php:1130
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/settings.php:1120
-msgid "This account is a regular personal profile"
+#: mod/admin.php:1131
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/settings.php:1123
-msgid "Organisation Page"
+#: mod/admin.php:1131
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
+#: mod/admin.php:1132
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/settings.php:1127
-msgid "News Page"
+#: mod/admin.php:1132
+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/settings.php:1128
-msgid "This account is a news account/reflector"
+#: mod/admin.php:1133
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/settings.php:1131
-msgid "Community Forum"
+#: mod/admin.php:1133
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/settings.php:1132
-msgid ""
-"This account is a community forum where people can discuss with each other"
+#: mod/admin.php:1134
+msgid "Temp path"
 msgstr ""
 
-#: mod/settings.php:1135
-msgid "Normal Account Page"
+#: mod/admin.php:1134
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/settings.php:1136
-msgid "This account is a normal personal profile"
+#: mod/admin.php:1135
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/settings.php:1139
-msgid "Soapbox Page"
+#: mod/admin.php:1135
+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/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
+#: mod/admin.php:1136
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/settings.php:1143
-msgid "Public Forum"
+#: mod/admin.php:1136
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/settings.php:1144
-msgid "Automatically approve all contact requests"
+#: mod/admin.php:1137
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
+#: mod/admin.php:1137
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
+#: mod/admin.php:1139
+msgid "New base url"
 msgstr ""
 
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
+#: mod/admin.php:1139
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
 msgstr ""
 
-#: mod/settings.php:1152
-msgid "Private forum - approved members only"
+#: mod/admin.php:1141
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "OpenID:"
+#: mod/admin.php:1141
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/settings.php:1163
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:1143
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/settings.php:1171
-msgid "Publish your default profile in your local site directory?"
+#: mod/admin.php:1143
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/settings.php:1171
-msgid "Your profile may be visible in public."
+#: mod/admin.php:1144
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/settings.php:1177
-msgid "Publish your default profile in the global social directory?"
+#: mod/admin.php:1144
+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 ""
 
-#: mod/settings.php:1184
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: mod/admin.php:1145
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/settings.php:1188
+#: mod/admin.php:1145
 msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr ""
-
-#: mod/settings.php:1193
-msgid "Allow friends to post to your profile page?"
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/settings.php:1198
-msgid "Allow friends to tag your posts?"
+#: mod/admin.php:1146
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/settings.php:1203
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/admin.php:1146
+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/settings.php:1208
-msgid "Permit unknown people to send you private mail?"
+#: mod/admin.php:1176
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/settings.php:1216
-msgid "Profile is <strong>not published</strong>."
+#: mod/admin.php:1184
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:1224
+#: mod/admin.php:1187
 #, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
+#: mod/admin.php:1201
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/settings.php:1231
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: mod/admin.php:1204
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/settings.php:1232
-msgid "Advanced expiration settings"
+#: mod/admin.php:1207
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/settings.php:1233
-msgid "Advanced Expiration"
+#: mod/admin.php:1210
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/settings.php:1234
-msgid "Expire posts:"
+#: mod/admin.php:1230
+msgid "No failed updates."
 msgstr ""
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
+#: mod/admin.php:1231
+msgid "Check database structure"
 msgstr ""
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
+#: mod/admin.php:1236
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/settings.php:1237
-msgid "Expire photos:"
+#: mod/admin.php:1237
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/settings.php:1238
-msgid "Only expire posts by others:"
+#: mod/admin.php:1238
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/settings.php:1269
-msgid "Account Settings"
+#: mod/admin.php:1239
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/settings.php:1277
-msgid "Password Settings"
+#: mod/admin.php:1273
+#, 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/settings.php:1279
-msgid "Leave password fields blank unless changing"
+#: mod/admin.php:1276
+#, 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/settings.php:1280
-msgid "Current Password:"
+#: mod/admin.php:1320
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1327
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/admin.php:1374
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/settings.php:1280 mod/settings.php:1281
-msgid "Your current password to confirm the changes"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/settings.php:1281
-msgid "Password:"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Register date"
 msgstr ""
 
-#: mod/settings.php:1287
-msgid "Email Address:"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last login"
 msgstr ""
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last item"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid "Your Language:"
+#: mod/admin.php:1499
+msgid "Add User"
 msgstr ""
 
-#: mod/settings.php:1289
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+#: mod/admin.php:1500
+msgid "select all"
 msgstr ""
 
-#: mod/settings.php:1290
-msgid "Default Post Location:"
+#: mod/admin.php:1501
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
+#: mod/admin.php:1502
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
+#: mod/admin.php:1503
+msgid "Request date"
 msgstr ""
 
-#: mod/settings.php:1296
-msgid "Maximum Friend Requests/Day:"
+#: mod/admin.php:1504
+msgid "No registrations."
 msgstr ""
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
+#: mod/admin.php:1505
+msgid "Note from the user"
 msgstr ""
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
+#: mod/admin.php:1507
+msgid "Deny"
 msgstr ""
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
+#: mod/admin.php:1511
+msgid "Site admin"
 msgstr ""
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
+#: mod/admin.php:1512
+msgid "Account expired"
 msgstr ""
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
+#: mod/admin.php:1515
+msgid "New User"
 msgstr ""
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
+#: mod/admin.php:1516
+msgid "Deleted since"
 msgstr ""
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
+#: mod/admin.php:1521
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/settings.php:1329
-msgid "Notification Settings"
+#: mod/admin.php:1522
+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 ""
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
+#: mod/admin.php:1532
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/settings.php:1331
-msgid "accepting a friend request"
+#: mod/admin.php:1533
+msgid "Nickname"
 msgstr ""
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
+#: mod/admin.php:1533
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/settings.php:1333
-msgid "making an <em>interesting</em> profile change"
+#: mod/admin.php:1534
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
+#: mod/admin.php:1577
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/settings.php:1335
-msgid "You receive an introduction"
+#: mod/admin.php:1581
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
+#: mod/admin.php:1592 mod/admin.php:1844
+msgid "Disable"
 msgstr ""
 
-#: mod/settings.php:1337
-msgid "Someone writes on your profile wall"
+#: mod/admin.php:1594 mod/admin.php:1846
+msgid "Enable"
 msgstr ""
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
+#: mod/admin.php:1617 mod/admin.php:1893
+msgid "Toggle"
 msgstr ""
 
-#: mod/settings.php:1339
-msgid "You receive a private message"
+#: mod/admin.php:1625 mod/admin.php:1902
+msgid "Author: "
 msgstr ""
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
+#: mod/admin.php:1626 mod/admin.php:1903
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/settings.php:1341
-msgid "You are tagged in a post"
+#: mod/admin.php:1681
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
+#: mod/admin.php:1686
+#, 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/settings.php:1344
-msgid "Activate desktop notifications"
+#: mod/admin.php:1805
+msgid "No themes found."
 msgstr ""
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
+#: mod/admin.php:1884
+msgid "Screenshot"
 msgstr ""
 
-#: mod/settings.php:1346
-msgid "Text-only notification emails"
+#: mod/admin.php:1944
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/settings.php:1348
-msgid "Send text only notification emails, without the html part"
+#: mod/admin.php:1949
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
+#: mod/admin.php:1950
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
+#: mod/admin.php:1951
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/settings.php:1354
-msgid "Relocate"
+#: mod/admin.php:1975
+msgid "Log settings updated."
 msgstr ""
 
-#: 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."
+#: mod/admin.php:2007
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/settings.php:1356
-msgid "Resend relocate message to contacts"
+#: mod/admin.php:2009
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/uexport.php:37
-msgid "Export account"
+#: mod/admin.php:2018
+msgid "Clear"
 msgstr ""
 
-#: 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."
+#: mod/admin.php:2023
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/uexport.php:38
-msgid "Export all"
+#: mod/admin.php:2024
+msgid "Log file"
 msgstr ""
 
-#: mod/uexport.php:38
+#: mod/admin.php:2024
 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)"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
+#: mod/admin.php:2025
+msgid "Log level"
 msgstr ""
 
-#: mod/videos.php:129
-msgid "Delete Video"
+#: mod/admin.php:2028
+msgid "PHP logging"
 msgstr ""
 
-#: mod/videos.php:208
-msgid "No videos selected"
+#: mod/admin.php:2029
+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/videos.php:402
-msgid "Recent Videos"
+#: mod/admin.php:2160
+#, php-format
+msgid "Lock feature %s"
 msgstr ""
 
-#: mod/videos.php:404
-msgid "Upload New Videos"
+#: mod/admin.php:2168
+msgid "Manage Additional Features"
 msgstr ""
 
 #: object/Item.php:359
@@ -8879,55 +8896,55 @@ msgstr ""
 msgid "Quick Start"
 msgstr ""
 
-#: boot.php:984
+#: index.php:433
+msgid "toggle mobile"
+msgstr ""
+
+#: boot.php:999
 msgid "Delete this item?"
 msgstr ""
 
-#: boot.php:986
+#: boot.php:1001
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:1671
+#: boot.php:1729
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: boot.php:1785
+#: boot.php:1843
 msgid "Create a New Account"
 msgstr ""
 
-#: boot.php:1813
+#: boot.php:1871
 msgid "Password: "
 msgstr ""
 
-#: boot.php:1814
+#: boot.php:1872
 msgid "Remember me"
 msgstr ""
 
-#: boot.php:1817
+#: boot.php:1875
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: boot.php:1823
+#: boot.php:1881
 msgid "Forgot your password?"
 msgstr ""
 
-#: boot.php:1826
+#: boot.php:1884
 msgid "Website Terms of Service"
 msgstr ""
 
-#: boot.php:1827
+#: boot.php:1885
 msgid "terms of service"
 msgstr ""
 
-#: boot.php:1829
+#: boot.php:1887
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:1830
+#: boot.php:1888
 msgid "privacy policy"
 msgstr ""
-
-#: index.php:433
-msgid "toggle mobile"
-msgstr ""
index 54002cd59885746f6b4d43753725d07c533a2ff5..2cd3d1d5ef01a8c22ecf9274844a8485035ea8d3 100644 (file)
@@ -4,7 +4,7 @@
 # 
 # Translators:
 # Andreas H., 2015
-# Andreas H., 2015-2016
+# Andreas H., 2015-2017
 # Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2011
 # David Rabel <david.rabel@noresoft.com>, 2016
 # Erkan Yilmaz <erkan77@gmail.com>, 2011
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-04-27 07:35+0200\n"
-"PO-Revision-Date: 2017-04-30 08:05+0000\n"
+"POT-Creation-Date: 2017-05-03 07:08+0200\n"
+"PO-Revision-Date: 2017-05-05 05:43+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,7 +45,7 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1027
+#: include/ForumManager.php:114 include/nav.php:131 include/text.php:1093
 #: view/theme/vier/theme.php:254
 msgid "Forums"
 msgstr "Foren"
@@ -55,8 +55,8 @@ msgid "External link to forum"
 msgstr "Externer Link zum Forum"
 
 #: include/ForumManager.php:119 include/contact_widgets.php:269
-#: include/items.php:2382 mod/content.php:624 object/Item.php:420
-#: view/theme/vier/theme.php:259 boot.php:985
+#: include/items.php:2450 mod/content.php:624 object/Item.php:420
+#: view/theme/vier/theme.php:259 boot.php:1000
 msgid "show more"
 msgstr "mehr anzeigen"
 
@@ -136,8 +136,8 @@ 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:467
-#: mod/wall_upload.php:249
+#: include/Photo.php:1087 include/message.php:146 mod/wall_upload.php:249
+#: mod/item.php:467
 msgid "Wall Photos"
 msgstr "Pinnwand-Bilder"
 
@@ -149,7 +149,7 @@ msgstr "(kein Betreff)"
 msgid "noreply"
 msgstr "noreply"
 
-#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1548
+#: include/like.php:27 include/conversation.php:153 include/diaspora.php:1576
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s mag %2$ss %3$s"
@@ -175,20 +175,20 @@ msgid "%1$s may attend %2$s's %3$s"
 msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
 #: include/like.php:178 include/conversation.php:141
-#: include/conversation.php:293 include/text.php:1806 mod/subthread.php:88
+#: include/conversation.php:293 include/text.php:1872 mod/subthread.php:88
 #: mod/tagger.php:62
 msgid "photo"
 msgstr "Foto"
 
 #: include/like.php:178 include/conversation.php:136
 #: include/conversation.php:146 include/conversation.php:288
-#: include/conversation.php:297 include/diaspora.php:1552 mod/subthread.php:88
+#: include/conversation.php:297 include/diaspora.php:1580 mod/subthread.php:88
 #: mod/tagger.php:62
 msgid "status"
 msgstr "Status"
 
 #: include/like.php:180 include/conversation.php:133
-#: include/conversation.php:285 include/text.php:1804
+#: include/conversation.php:285 include/text.php:1870
 msgid "event"
 msgstr "Event"
 
@@ -204,11 +204,11 @@ msgstr "Keine Neuigkeiten"
 msgid "Clear notifications"
 msgstr "Bereinige Benachrichtigungen"
 
-#: include/nav.php:40 include/text.php:1017
+#: include/nav.php:40 include/text.php:1083
 msgid "@name, !forum, #tags, content"
 msgstr "@name, !forum, #tags, content"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1809
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1867
 msgid "Logout"
 msgstr "Abmelden"
 
@@ -271,7 +271,7 @@ msgstr "Persönliche Notizen"
 msgid "Your personal notes"
 msgstr "Deine persönlichen Notizen"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1810
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1868
 msgid "Login"
 msgstr "Anmeldung"
 
@@ -283,7 +283,7 @@ msgstr "Anmelden"
 msgid "Home Page"
 msgstr "Homepage"
 
-#: include/nav.php:109 mod/register.php:289 boot.php:1786
+#: include/nav.php:109 mod/register.php:289 boot.php:1844
 msgid "Register"
 msgstr "Registrieren"
 
@@ -307,7 +307,7 @@ msgstr "Apps"
 msgid "Addon applications, utilities, games"
 msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: include/nav.php:123 include/text.php:1014 mod/search.php:149
+#: include/nav.php:123 include/text.php:1080 mod/search.php:149
 msgid "Search"
 msgstr "Suche"
 
@@ -315,16 +315,16 @@ msgstr "Suche"
 msgid "Search site content"
 msgstr "Inhalt der Seite durchsuchen"
 
-#: include/nav.php:126 include/text.php:1022
+#: include/nav.php:126 include/text.php:1088
 msgid "Full Text"
 msgstr "Volltext"
 
-#: include/nav.php:127 include/text.php:1023
+#: include/nav.php:127 include/text.php:1089
 msgid "Tags"
 msgstr "Tags"
 
 #: include/nav.php:128 include/nav.php:192 include/identity.php:838
-#: include/identity.php:841 include/text.php:1024 mod/contacts.php:800
+#: include/identity.php:841 include/text.php:1090 mod/contacts.php:800
 #: mod/contacts.php:861 mod/viewcontacts.php:121 view/theme/frio/theme.php:257
 msgid "Contacts"
 msgstr "Kontakte"
@@ -430,8 +430,8 @@ msgstr "Delegationen"
 msgid "Delegate Page Management"
 msgstr "Delegiere das Management für die Seite"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1615
-#: mod/admin.php:1891 mod/settings.php:111 view/theme/frio/theme.php:256
+#: include/nav.php:186 mod/newmember.php:22 mod/settings.php:111
+#: mod/admin.php:1618 mod/admin.php:1894 view/theme/frio/theme.php:256
 msgid "Settings"
 msgstr "Einstellungen"
 
@@ -911,7 +911,7 @@ msgstr "Endet:"
 
 #: include/bb2diaspora.php:253 include/event.php:41 include/event.php:67
 #: include/event.php:527 include/identity.php:336 mod/contacts.php:636
-#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:238
+#: mod/directory.php:139 mod/events.php:493 mod/notifications.php:244
 msgid "Location:"
 msgstr "Ort:"
 
@@ -964,19 +964,19 @@ msgstr "OK, wahrscheinlich harmlos"
 msgid "Reputable, has my trust"
 msgstr "Seriös, hat mein Vertrauen"
 
-#: include/contact_selectors.php:56 mod/admin.php:978
+#: include/contact_selectors.php:56 mod/admin.php:980
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: include/contact_selectors.php:57 mod/admin.php:979
+#: include/contact_selectors.php:57 mod/admin.php:981
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: include/contact_selectors.php:58 mod/admin.php:980
+#: include/contact_selectors.php:58 mod/admin.php:982
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: include/contact_selectors.php:59 mod/admin.php:981
+#: include/contact_selectors.php:59 mod/admin.php:983
 msgid "Daily"
 msgstr "Täglich"
 
@@ -1001,7 +1001,7 @@ msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1487 mod/admin.php:1500 mod/admin.php:1513 mod/admin.php:1531
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1534
 msgid "Email"
 msgstr "E-Mail"
 
@@ -1218,8 +1218,8 @@ msgid "Select"
 msgstr "Auswählen"
 
 #: include/conversation.php:748 mod/contacts.php:816 mod/contacts.php:1015
-#: mod/content.php:454 mod/content.php:760 mod/admin.php:1505
-#: mod/photos.php:1729 mod/settings.php:744 object/Item.php:138
+#: mod/content.php:454 mod/content.php:760 mod/photos.php:1729
+#: mod/settings.php:744 mod/admin.php:1508 object/Item.php:138
 msgid "Delete"
 msgstr "Löschen"
 
@@ -1473,7 +1473,7 @@ msgstr "Öffentlicher Beitrag"
 msgid "Preview"
 msgstr "Vorschau"
 
-#: include/conversation.php:1317 include/items.php:2099 mod/contacts.php:455
+#: include/conversation.php:1317 include/items.php:2167 mod/contacts.php:455
 #: mod/editpost.php:138 mod/fbrowser.php:100 mod/fbrowser.php:135
 #: mod/suggest.php:32 mod/tagrm.php:11 mod/tagrm.php:96
 #: mod/dfrn_request.php:894 mod/follow.php:124 mod/message.php:209
@@ -1617,71 +1617,16 @@ msgstr "%1$d %2$s her"
 msgid "%s's birthday"
 msgstr "%ss Geburtstag"
 
-#: include/datetime.php:621 include/dfrn.php:1230
+#: include/datetime.php:621 include/dfrn.php:1252
 #, php-format
 msgid "Happy Birthday %s"
 msgstr "Herzlichen Glückwunsch %s"
 
-#: include/dba.php:46 include/dba_pdo.php:72
+#: include/dba_pdo.php:72 include/dba.php:47
 #, php-format
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/dbstructure.php:20
-msgid "There are no tables on MyISAM."
-msgstr "Es gibt keine MyISAM Tabellen."
-
-#: include/dbstructure.php:61
-#, 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:66
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
-
-#: include/dbstructure.php:190
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
-
-#: include/dbstructure.php:193
-msgid "Errors encountered performing database changes: "
-msgstr "Fehler beim Ändern der Datenbank aufgetreten"
-
-#: include/dbstructure.php:201
-msgid ": Database update"
-msgstr ": Datenbank Update"
-
-#: include/dbstructure.php:422
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualisiere Tabelle %s"
-
-#: include/dfrn.php:1229
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
-
-#: include/diaspora.php:2106
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
-
-#: include/diaspora.php:3113
-msgid "Attachments:"
-msgstr "Anhänge:"
-
 #: include/enotify.php:24
 msgid "Friendica Notification"
 msgstr "Friendica-Benachrichtigung"
@@ -2007,31 +1952,31 @@ msgstr "Fr"
 msgid "Sat"
 msgstr "Sa"
 
-#: include/event.php:484 include/text.php:1132 mod/settings.php:981
+#: include/event.php:484 include/text.php:1198 mod/settings.php:981
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: include/event.php:485 include/text.php:1132 mod/settings.php:981
+#: include/event.php:485 include/text.php:1198 mod/settings.php:981
 msgid "Monday"
 msgstr "Montag"
 
-#: include/event.php:486 include/text.php:1132
+#: include/event.php:486 include/text.php:1198
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: include/event.php:487 include/text.php:1132
+#: include/event.php:487 include/text.php:1198
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: include/event.php:488 include/text.php:1132
+#: include/event.php:488 include/text.php:1198
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: include/event.php:489 include/text.php:1132
+#: include/event.php:489 include/text.php:1198
 msgid "Friday"
 msgstr "Freitag"
 
-#: include/event.php:490 include/text.php:1132
+#: include/event.php:490 include/text.php:1198
 msgid "Saturday"
 msgstr "Samstag"
 
@@ -2051,7 +1996,7 @@ msgstr "März"
 msgid "Apr"
 msgstr "Apr"
 
-#: include/event.php:496 include/event.php:509 include/text.php:1136
+#: include/event.php:496 include/event.php:509 include/text.php:1202
 msgid "May"
 msgstr "Mai"
 
@@ -2083,47 +2028,47 @@ msgstr "Nov"
 msgid "Dec"
 msgstr "Dez"
 
-#: include/event.php:505 include/text.php:1136
+#: include/event.php:505 include/text.php:1202
 msgid "January"
 msgstr "Januar"
 
-#: include/event.php:506 include/text.php:1136
+#: include/event.php:506 include/text.php:1202
 msgid "February"
 msgstr "Februar"
 
-#: include/event.php:507 include/text.php:1136
+#: include/event.php:507 include/text.php:1202
 msgid "March"
 msgstr "März"
 
-#: include/event.php:508 include/text.php:1136
+#: include/event.php:508 include/text.php:1202
 msgid "April"
 msgstr "April"
 
-#: include/event.php:510 include/text.php:1136
+#: include/event.php:510 include/text.php:1202
 msgid "June"
 msgstr "Juni"
 
-#: include/event.php:511 include/text.php:1136
+#: include/event.php:511 include/text.php:1202
 msgid "July"
 msgstr "Juli"
 
-#: include/event.php:512 include/text.php:1136
+#: include/event.php:512 include/text.php:1202
 msgid "August"
 msgstr "August"
 
-#: include/event.php:513 include/text.php:1136
+#: include/event.php:513 include/text.php:1202
 msgid "September"
 msgstr "September"
 
-#: include/event.php:514 include/text.php:1136
+#: include/event.php:514 include/text.php:1202
 msgid "October"
 msgstr "Oktober"
 
-#: include/event.php:515 include/text.php:1136
+#: include/event.php:515 include/text.php:1202
 msgid "November"
 msgstr "November"
 
-#: include/event.php:516 include/text.php:1136
+#: include/event.php:516 include/text.php:1202
 msgid "December"
 msgstr "Dezember"
 
@@ -2147,7 +2092,7 @@ msgstr "Veranstaltung bearbeiten"
 msgid "Delete event"
 msgstr "Veranstaltung löschen"
 
-#: include/event.php:685 include/text.php:1534 include/text.php:1541
+#: include/event.php:685 include/text.php:1600 include/text.php:1607
 msgid "link to source"
 msgstr "Link zum Originalbeitrag"
 
@@ -2362,8 +2307,8 @@ msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Pro
 msgid "Disallowed profile URL."
 msgstr "Nicht erlaubte Profil-URL."
 
-#: include/follow.php:86 mod/admin.php:279 mod/admin.php:297
-#: mod/dfrn_request.php:518 mod/friendica.php:114
+#: include/follow.php:86 mod/dfrn_request.php:518 mod/friendica.php:114
+#: mod/admin.php:279 mod/admin.php:297
 msgid "Blocked domain"
 msgstr "Blockierte Daimain"
 
@@ -2506,7 +2451,7 @@ msgid "Edit visibility"
 msgstr "Sichtbarkeit bearbeiten"
 
 #: include/identity.php:338 include/identity.php:633 mod/directory.php:141
-#: mod/notifications.php:244
+#: mod/notifications.php:250
 msgid "Gender:"
 msgstr "Geschlecht:"
 
@@ -2519,7 +2464,7 @@ msgid "Homepage:"
 msgstr "Homepage:"
 
 #: include/identity.php:345 include/identity.php:687 mod/contacts.php:640
-#: mod/directory.php:147 mod/notifications.php:240
+#: mod/directory.php:147 mod/notifications.php:246
 msgid "About:"
 msgstr "Über:"
 
@@ -2527,7 +2472,7 @@ msgstr "Über:"
 msgid "XMPP:"
 msgstr "XMPP:"
 
-#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:252
+#: include/identity.php:433 mod/contacts.php:55 mod/notifications.php:258
 msgid "Network:"
 msgstr "Netzwerk:"
 
@@ -2593,7 +2538,7 @@ msgid "Hometown:"
 msgstr "Heimatort:"
 
 #: include/identity.php:675 mod/contacts.php:642 mod/follow.php:137
-#: mod/notifications.php:242
+#: mod/notifications.php:248
 msgid "Tags:"
 msgstr "Tags:"
 
@@ -2657,8 +2602,8 @@ msgstr "Foren:"
 msgid "Basic"
 msgstr "Allgemein"
 
-#: include/identity.php:746 mod/contacts.php:878 mod/admin.php:1057
-#: mod/events.php:507
+#: include/identity.php:746 mod/contacts.php:878 mod/events.php:507
+#: mod/admin.php:1059
 msgid "Advanced"
 msgstr "Erweitert"
 
@@ -2682,57 +2627,6 @@ msgstr "Persönliche Notizen"
 msgid "Only You Can See This"
 msgstr "Nur Du kannst das sehen"
 
-#: include/items.php:1670 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: include/items.php:2055 mod/display.php:103 mod/display.php:279
-#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
-#: mod/admin.php:1562 mod/admin.php:1813
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:2094
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:2096 mod/api.php:105 mod/contacts.php:452
-#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
-#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
-#: mod/profiles.php:670 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
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:2259 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
-#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
-#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
-#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
-#: mod/invite.php:103 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/regmod.php:113 mod/repair_ostatus.php:9
-#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
-#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
-#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
-#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
-#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
-#: mod/group.php:19 mod/item.php:196 mod/item.php:208 mod/manage.php:102
-#: mod/message.php:46 mod/message.php:171 mod/network.php:4
-#: mod/notifications.php:71 mod/photos.php:166 mod/photos.php:1109
-#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
-#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
-#: mod/wall_upload.php:101 mod/wall_upload.php:104 index.php:407
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:2376
-msgid "Archives"
-msgstr "Archiv"
-
 #: include/network.php:687
 msgid "view full size"
 msgstr "Volle Größe anzeigen"
@@ -2745,24 +2639,6 @@ msgstr "Eingebetteter Inhalt"
 msgid "Embedding disabled"
 msgstr "Einbettungen deaktiviert"
 
-#: include/ostatus.php:1914
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: include/ostatus.php:1915
-msgid "following"
-msgstr "folgen"
-
-#: include/ostatus.php:1918
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
-
-#: include/ostatus.php:1919
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
-
 #: include/photos.php:57 include/photos.php:66 mod/fbrowser.php:40
 #: mod/fbrowser.php:61 mod/photos.php:187 mod/photos.php:1123
 #: mod/photos.php:1256 mod/photos.php:1277 mod/photos.php:1839
@@ -2770,380 +2646,504 @@ msgstr "wird nicht mehr gefolgt"
 msgid "Contact Photos"
 msgstr "Kontaktbilder"
 
-#: include/text.php:307
-msgid "newer"
-msgstr "neuer"
-
-#: include/text.php:308
-msgid "older"
-msgstr "älter"
-
-#: include/text.php:313
-msgid "first"
-msgstr "erste"
-
-#: include/text.php:314
-msgid "prev"
-msgstr "vorige"
+#: 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/text.php:348
-msgid "next"
-msgstr "nächste"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: include/text.php:349
-msgid "last"
-msgstr "letzte"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: include/text.php:403
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: include/text.php:404
-msgid "The end"
-msgstr "Das Ende"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: include/text.php:889
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: include/text.php:914
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: include/text.php:927
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: include/user.php:106
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: include/text.php:1015 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
-msgid "Save"
-msgstr "Speichern"
+#: include/user.php:111
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: include/text.php:1078
-msgid "poke"
-msgstr "anstupsen"
+#: include/user.php:114
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: include/text.php:1078
-msgid "poked"
-msgstr "stupste"
+#: include/user.php:127
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: include/text.php:1079
-msgid "ping"
-msgstr "anpingen"
+#: include/user.php:133
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
 
-#: include/text.php:1079
-msgid "pinged"
-msgstr "pingte"
+#: include/user.php:140 include/user.php:228
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/text.php:1080
-msgid "prod"
-msgstr "knuffen"
+#: include/user.php:150
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: include/text.php:1080
-msgid "prodded"
-msgstr "knuffte"
+#: include/user.php:166
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: include/text.php:1081
-msgid "slap"
-msgstr "ohrfeigen"
+#: include/user.php:214
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/text.php:1081
-msgid "slapped"
-msgstr "ohrfeigte"
+#: include/user.php:239 view/theme/duepuntozero/config.php:43
+msgid "default"
+msgstr "Standard"
 
-#: include/text.php:1082
-msgid "finger"
-msgstr "befummeln"
+#: include/user.php:249
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: include/text.php:1082
-msgid "fingered"
-msgstr "befummelte"
+#: include/user.php:309 include/user.php:317 include/user.php:325
+#: 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:71 mod/photos.php:187
+#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
+#: mod/photos.php:1863
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: include/text.php:1083
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: include/user.php:400
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
 
-#: include/text.php:1083
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: include/user.php:410
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
 
-#: include/text.php:1097
-msgid "happy"
-msgstr "glücklich"
+#: include/user.php:420
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: include/text.php:1098
-msgid "sad"
-msgstr "traurig"
+#: include/user.php:424
+#, 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/user.php:456 mod/admin.php:1308
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
+
+#: include/dbstructure.php:20
+msgid "There are no tables on MyISAM."
+msgstr "Es gibt keine MyISAM Tabellen."
+
+#: include/dbstructure.php:61
+#, 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:66
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+
+#: include/dbstructure.php:190
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
+
+#: include/dbstructure.php:193
+msgid "Errors encountered performing database changes: "
+msgstr "Fehler beim Ändern der Datenbank aufgetreten"
+
+#: include/dbstructure.php:201
+msgid ": Database update"
+msgstr ": Datenbank Update"
+
+#: include/dbstructure.php:425
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualisiere Tabelle %s"
+
+#: include/dfrn.php:1251
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
+
+#: include/diaspora.php:2137
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
+
+#: include/diaspora.php:3146
+msgid "Attachments:"
+msgstr "Anhänge:"
+
+#: include/items.php:1738 mod/dfrn_confirm.php:736 mod/dfrn_request.php:759
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
+
+#: include/items.php:2123 mod/display.php:103 mod/display.php:279
+#: mod/display.php:484 mod/notice.php:15 mod/viewsrc.php:15 mod/admin.php:247
+#: mod/admin.php:1565 mod/admin.php:1816
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
+
+#: include/items.php:2162
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
+
+#: include/items.php:2164 mod/api.php:105 mod/contacts.php:452
+#: mod/suggest.php:29 mod/dfrn_request.php:880 mod/follow.php:113
+#: mod/message.php:206 mod/profiles.php:640 mod/profiles.php:643
+#: mod/profiles.php:670 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
+msgid "Yes"
+msgstr "Ja"
+
+#: include/items.php:2327 mod/allfriends.php:12 mod/api.php:26 mod/api.php:31
+#: mod/attach.php:33 mod/common.php:18 mod/contacts.php:360
+#: mod/crepair.php:102 mod/delegate.php:12 mod/display.php:481
+#: mod/editpost.php:10 mod/fsuggest.php:79 mod/invite.php:15
+#: mod/invite.php:103 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/regmod.php:113 mod/repair_ostatus.php:9
+#: mod/suggest.php:58 mod/uimport.php:24 mod/viewcontacts.php:46
+#: mod/wall_attach.php:67 mod/wall_attach.php:70 mod/wallmessage.php:9
+#: mod/wallmessage.php:33 mod/wallmessage.php:73 mod/wallmessage.php:97
+#: mod/cal.php:299 mod/dfrn_confirm.php:61 mod/dirfind.php:11
+#: mod/events.php:185 mod/follow.php:11 mod/follow.php:74 mod/follow.php:158
+#: mod/group.php:19 mod/manage.php:102 mod/message.php:46 mod/message.php:171
+#: mod/network.php:4 mod/photos.php:166 mod/photos.php:1109
+#: mod/profiles.php:168 mod/profiles.php:607 mod/register.php:42
+#: mod/settings.php:22 mod/settings.php:130 mod/settings.php:668
+#: mod/wall_upload.php:101 mod/wall_upload.php:104 mod/item.php:196
+#: mod/item.php:208 mod/notifications.php:71 index.php:407
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
+
+#: include/items.php:2444
+msgid "Archives"
+msgstr "Archiv"
+
+#: include/ostatus.php:1947
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: include/text.php:1099
+#: include/ostatus.php:1948
+msgid "following"
+msgstr "folgen"
+
+#: include/ostatus.php:1951
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
+
+#: include/ostatus.php:1952
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
+
+#: include/text.php:307
+msgid "newer"
+msgstr "neuer"
+
+#: include/text.php:308
+msgid "older"
+msgstr "älter"
+
+#: include/text.php:313
+msgid "first"
+msgstr "erste"
+
+#: include/text.php:314
+msgid "prev"
+msgstr "vorige"
+
+#: include/text.php:348
+msgid "next"
+msgstr "nächste"
+
+#: include/text.php:349
+msgid "last"
+msgstr "letzte"
+
+#: include/text.php:403
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
+
+#: include/text.php:404
+msgid "The end"
+msgstr "Das Ende"
+
+#: include/text.php:955
+msgid "No contacts"
+msgstr "Keine Kontakte"
+
+#: include/text.php:980
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
+
+#: include/text.php:993
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
+
+#: include/text.php:1081 mod/editpost.php:99 mod/filer.php:31 mod/notes.php:62
+msgid "Save"
+msgstr "Speichern"
+
+#: include/text.php:1144
+msgid "poke"
+msgstr "anstupsen"
+
+#: include/text.php:1144
+msgid "poked"
+msgstr "stupste"
+
+#: include/text.php:1145
+msgid "ping"
+msgstr "anpingen"
+
+#: include/text.php:1145
+msgid "pinged"
+msgstr "pingte"
+
+#: include/text.php:1146
+msgid "prod"
+msgstr "knuffen"
+
+#: include/text.php:1146
+msgid "prodded"
+msgstr "knuffte"
+
+#: include/text.php:1147
+msgid "slap"
+msgstr "ohrfeigen"
+
+#: include/text.php:1147
+msgid "slapped"
+msgstr "ohrfeigte"
+
+#: include/text.php:1148
+msgid "finger"
+msgstr "befummeln"
+
+#: include/text.php:1148
+msgid "fingered"
+msgstr "befummelte"
+
+#: include/text.php:1149
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
+
+#: include/text.php:1149
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
+
+#: include/text.php:1163
+msgid "happy"
+msgstr "glücklich"
+
+#: include/text.php:1164
+msgid "sad"
+msgstr "traurig"
+
+#: include/text.php:1165
 msgid "mellow"
 msgstr "sanft"
 
-#: include/text.php:1100
+#: include/text.php:1166
 msgid "tired"
 msgstr "müde"
 
-#: include/text.php:1101
+#: include/text.php:1167
 msgid "perky"
 msgstr "frech"
 
-#: include/text.php:1102
+#: include/text.php:1168
 msgid "angry"
 msgstr "sauer"
 
-#: include/text.php:1103
+#: include/text.php:1169
 msgid "stupified"
 msgstr "verblüfft"
 
-#: include/text.php:1104
+#: include/text.php:1170
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: include/text.php:1105
+#: include/text.php:1171
 msgid "interested"
 msgstr "interessiert"
 
-#: include/text.php:1106
+#: include/text.php:1172
 msgid "bitter"
 msgstr "verbittert"
 
-#: include/text.php:1107
+#: include/text.php:1173
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: include/text.php:1108
+#: include/text.php:1174
 msgid "alive"
 msgstr "lebendig"
 
-#: include/text.php:1109
+#: include/text.php:1175
 msgid "annoyed"
 msgstr "verärgert"
 
-#: include/text.php:1110
+#: include/text.php:1176
 msgid "anxious"
 msgstr "unruhig"
 
-#: include/text.php:1111
+#: include/text.php:1177
 msgid "cranky"
 msgstr "schrullig"
 
-#: include/text.php:1112
+#: include/text.php:1178
 msgid "disturbed"
 msgstr "verstört"
 
-#: include/text.php:1113
+#: include/text.php:1179
 msgid "frustrated"
 msgstr "frustriert"
 
-#: include/text.php:1114
+#: include/text.php:1180
 msgid "motivated"
 msgstr "motiviert"
 
-#: include/text.php:1115
+#: include/text.php:1181
 msgid "relaxed"
 msgstr "entspannt"
 
-#: include/text.php:1116
+#: include/text.php:1182
 msgid "surprised"
 msgstr "überrascht"
 
-#: include/text.php:1326 mod/videos.php:386
+#: include/text.php:1392 mod/videos.php:386
 msgid "View Video"
 msgstr "Video ansehen"
 
-#: include/text.php:1358
+#: include/text.php:1424
 msgid "bytes"
 msgstr "Byte"
 
-#: include/text.php:1390 include/text.php:1402
+#: include/text.php:1456 include/text.php:1468
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: include/text.php:1528
+#: include/text.php:1594
 msgid "View on separate page"
 msgstr "Auf separater Seite ansehen"
 
-#: include/text.php:1529
+#: include/text.php:1595
 msgid "view on separate page"
 msgstr "auf separater Seite ansehen"
 
-#: include/text.php:1808
+#: include/text.php:1874
 msgid "activity"
 msgstr "Aktivität"
 
-#: include/text.php:1810 mod/content.php:623 object/Item.php:419
+#: include/text.php:1876 mod/content.php:623 object/Item.php:419
 #: object/Item.php:431
 msgid "comment"
 msgid_plural "comments"
 msgstr[0] "Kommentar"
 msgstr[1] "Kommentare"
 
-#: include/text.php:1811
+#: include/text.php:1877
 msgid "post"
 msgstr "Beitrag"
 
-#: include/text.php:1979
+#: include/text.php:2045
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
-#: 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/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: mod/allfriends.php:46
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
 
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: mod/api.php:76 mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: 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:"
 
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: include/user.php:106
-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/user.php:111
-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/user.php:114
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: include/user.php:127
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: include/user.php:133
-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:140 include/user.php:228
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:150
-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/user.php:166
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: include/user.php:214
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:239 view/theme/duepuntozero/config.php:43
-msgid "default"
-msgstr "Standard"
-
-#: include/user.php:249
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:309 include/user.php:317 include/user.php:325
-#: 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:71 mod/photos.php:187
-#: mod/photos.php:774 mod/photos.php:1256 mod/photos.php:1277
-#: mod/photos.php:1863
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: include/user.php:400
-#, 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/user.php:410
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
-
-#: include/user.php:420
-#, 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/user.php:424
-#, 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/user.php:456 mod/admin.php:1305
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
-
-#: 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:89
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
 #: mod/api.php:104
 msgid ""
@@ -3271,7 +3271,7 @@ msgstr "%s teilt mit Dir"
 msgid "Private communications are not available for this contact."
 msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/contacts.php:538 mod/admin.php:976
+#: mod/contacts.php:538 mod/admin.php:978
 msgid "Never"
 msgstr "Niemals"
 
@@ -3300,7 +3300,7 @@ msgstr "Verbindungen mit diesem Kontakt verloren!"
 msgid "Fetch further information for feeds"
 msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/contacts.php:565 mod/admin.php:985
+#: mod/contacts.php:565 mod/admin.php:987
 msgid "Disabled"
 msgstr "Deaktiviert"
 
@@ -3318,11 +3318,11 @@ msgstr "Kontakt"
 
 #: mod/contacts.php:585 mod/content.php:728 mod/crepair.php:156
 #: mod/fsuggest.php:108 mod/invite.php:142 mod/localtime.php:45
-#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/install.php:269
-#: mod/install.php:309 mod/manage.php:155 mod/message.php:338
-#: mod/message.php:521 mod/photos.php:1141 mod/photos.php:1271
-#: mod/photos.php:1597 mod/photos.php:1646 mod/photos.php:1688
-#: mod/photos.php:1768 mod/profiles.php:681 object/Item.php:705
+#: mod/mood.php:138 mod/poke.php:203 mod/events.php:505 mod/manage.php:155
+#: mod/message.php:338 mod/message.php:521 mod/photos.php:1141
+#: mod/photos.php:1271 mod/photos.php:1597 mod/photos.php:1646
+#: mod/photos.php:1688 mod/photos.php:1768 mod/profiles.php:681
+#: mod/install.php:242 mod/install.php:282 object/Item.php:705
 #: view/theme/duepuntozero/config.php:61 view/theme/frio/config.php:64
 #: view/theme/quattro/config.php:67 view/theme/vier/config.php:112
 msgid "Submit"
@@ -3382,12 +3382,12 @@ msgid "Update now"
 msgstr "Jetzt aktualisieren"
 
 #: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1507
+#: mod/admin.php:1510
 msgid "Unblock"
 msgstr "Entsperren"
 
 #: mod/contacts.php:613 mod/contacts.php:813 mod/contacts.php:991
-#: mod/admin.php:1506
+#: mod/admin.php:1509
 msgid "Block"
 msgstr "Sperren"
 
@@ -3397,7 +3397,7 @@ msgstr "Ignorieren aufheben"
 
 #: mod/contacts.php:614 mod/contacts.php:814 mod/contacts.php:999
 #: mod/notifications.php:60 mod/notifications.php:179
-#: mod/notifications.php:257
+#: mod/notifications.php:263
 msgid "Ignore"
 msgstr "Ignorieren"
 
@@ -3413,7 +3413,7 @@ msgstr "Derzeit ignoriert"
 msgid "Currently archived"
 msgstr "Momentan archiviert"
 
-#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:245
+#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251
 msgid "Hide this contact from others"
 msgstr "Verbirg diesen Kontakt vor Anderen"
 
@@ -3440,7 +3440,7 @@ msgid ""
 "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/contacts.php:632 mod/follow.php:129 mod/notifications.php:249
+#: mod/contacts.php:632 mod/follow.php:129 mod/notifications.php:255
 msgid "Profile URL"
 msgstr "Profil URL"
 
@@ -3811,9 +3811,8 @@ msgid ""
 "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:167 mod/admin.php:1487 mod/admin.php:1500
-#: mod/admin.php:1513 mod/admin.php:1529 mod/settings.php:683
-#: mod/settings.php:709
+#: mod/crepair.php:167 mod/settings.php:683 mod/settings.php:709
+#: mod/admin.php:1490 mod/admin.php:1503 mod/admin.php:1516 mod/admin.php:1532
 msgid "Name"
 msgstr "Name"
 
@@ -4161,7 +4160,7 @@ msgid ""
 "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:110 boot.php:1824
+#: mod/lostpass.php:110 boot.php:1882
 msgid "Password Reset"
 msgstr "Passwort zurücksetzen"
 
@@ -4227,7 +4226,7 @@ msgid ""
 "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:1812
+#: mod/lostpass.php:161 boot.php:1870
 msgid "Nickname or Email: "
 msgstr "Spitzname oder E-Mail:"
 
@@ -4792,2744 +4791,2584 @@ msgstr "An:"
 msgid "Subject:"
 msgstr "Betreff:"
 
-#: mod/admin.php:96
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/babel.php:16
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: mod/admin.php:165 mod/admin.php:1052
-msgid "Site"
-msgstr "Seite"
+#: mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: mod/admin.php:166 mod/admin.php:986 mod/admin.php:1495 mod/admin.php:1511
-msgid "Users"
-msgstr "Nutzer"
+#: mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: mod/admin.php:167 mod/admin.php:1613 mod/admin.php:1676 mod/settings.php:74
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: mod/admin.php:168 mod/admin.php:1889 mod/admin.php:1939
-msgid "Themes"
-msgstr "Themen"
+#: mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: mod/admin.php:169 mod/settings.php:52
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: mod/admin.php:170
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: mod/admin.php:171 mod/admin.php:512
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: mod/admin.php:172 mod/admin.php:288
-msgid "Server Blocklist"
-msgstr "Server Blockliste"
+#: mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: mod/admin.php:173 mod/admin.php:478
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2013
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/babel.php:65
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: mod/admin.php:188 mod/admin.php:2081
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/babel.php:69
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: mod/admin.php:189
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/cal.php:271 mod/events.php:375
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/admin.php:190
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/cal.php:272 mod/events.php:377
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/admin.php:197
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/cal.php:273 mod/events.php:378 mod/install.php:201
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/admin.php:199
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/cal.php:282 mod/events.php:387
+msgid "list"
+msgstr "Liste"
 
-#: mod/admin.php:200
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/cal.php:292
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/admin.php:279
-msgid "The blocked domain"
-msgstr "Die blockierte Domain"
+#: mod/cal.php:308
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: mod/admin.php:280 mod/admin.php:298 mod/friendica.php:114
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
+#: mod/cal.php:310
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: mod/admin.php:280 mod/admin.php:293
-msgid "The reason why you blocked this domain."
-msgstr "Die Begründung warum du diese Domain blockiert hast."
+#: mod/cal.php:325
+msgid "calendar"
+msgstr "Kalender"
 
-#: mod/admin.php:281
-msgid "Delete domain"
-msgstr "Domain löschen"
+#: mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
-#: mod/admin.php:1051 mod/admin.php:1494 mod/admin.php:1612 mod/admin.php:1675
-#: mod/admin.php:1888 mod/admin.php:1938 mod/admin.php:2012 mod/admin.php:2080
-msgid "Administration"
-msgstr "Administration"
+#: mod/community.php:50 mod/search.php:219
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: mod/admin.php:289
-msgid ""
-"This page can be used to define a black list of servers from the federated "
-"network that are not allowed to interact with your node. For all entered "
-"domains you should also give a reason why you have blocked the remote "
-"server."
-msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
+#: mod/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
+#: mod/profiles.php:182 mod/profiles.php:619
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/admin.php:290
+#: mod/dfrn_confirm.php:127
 msgid ""
-"The list of blocked servers will be made publically available on the "
-"/friendica page so that your users and people investigating communication "
-"problems can find the reason easily."
-msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
-
-#: mod/admin.php:291
-msgid "Add new entry to block list"
-msgstr "Neuen Eintrag in die Blockliste"
+"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/admin.php:292
-msgid "Server Domain"
-msgstr "Domain des Servers"
+#: mod/dfrn_confirm.php:244
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: mod/admin.php:292
-msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
-msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
+#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: mod/admin.php:293
-msgid "Block reason"
-msgstr "Begründung der Blockierung"
+#: mod/dfrn_confirm.php:267
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: mod/admin.php:294
-msgid "Add Entry"
-msgstr "Eintrag hinzufügen"
+#: mod/dfrn_confirm.php:269 mod/dfrn_confirm.php:283 mod/dfrn_confirm.php:290
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: mod/admin.php:295
-msgid "Save changes to the blocklist"
-msgstr "Änderungen der Blockliste speichern"
+#: 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/admin.php:296
-msgid "Current Entries in the Blocklist"
-msgstr "Aktuelle Einträge der Blockliste"
+#: mod/dfrn_confirm.php:288
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: mod/admin.php:299
-msgid "Delete entry from blocklist"
-msgstr "Eintrag von der Blockliste entfernen"
+#: mod/dfrn_confirm.php:418
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: mod/admin.php:302
-msgid "Delete entry from blocklist?"
-msgstr "Eintrag von der Blockliste entfernen?"
+#: mod/dfrn_confirm.php:559
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: mod/admin.php:327
-msgid "Server added to blocklist."
-msgstr "Server zur Blockliste hinzugefügt."
+#: 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/admin.php:343
-msgid "Site blocklist updated."
-msgstr "Blockliste aktualisiert."
+#: 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/admin.php:408
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/dfrn_confirm.php:602
+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:471
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+#: mod/dfrn_confirm.php:616
+#, 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/admin.php:472
+#: mod/dfrn_confirm.php:636
 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."
+"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:484
-#, 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/dfrn_confirm.php:647
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: mod/admin.php:514
-msgid "ID"
-msgstr "ID"
+#: mod/dfrn_confirm.php:709
+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:515
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/dfrn_confirm.php:781
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: mod/admin.php:516
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/dfrn_request.php:101
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: mod/admin.php:518
-msgid "Created"
-msgstr "Erstellt"
+#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
+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:519
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
+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:520
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: mod/admin.php:545
+#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
 #, php-format
-msgid ""
-"Your DB still runs with MyISAM tables. You should change the engine type to "
-"InnoDB. As Friendica will use InnoDB only features in the future, you should"
-" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
-"converting the table engines. You may also use the command <tt>php "
-"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
-"automatic conversion.<br />"
-msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
+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/admin.php:550
-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."
+#: mod/dfrn_request.php:180
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: mod/admin.php:554 mod/admin.php:1444
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/dfrn_request.php:225
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: mod/admin.php:555 mod/admin.php:1445
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: mod/dfrn_request.php:253
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: mod/admin.php:556 mod/admin.php:1446
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: 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/admin.php:557 mod/admin.php:1447
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/dfrn_request.php:281
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: mod/admin.php:558
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: 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/admin.php:559
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: mod/dfrn_request.php:344
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: mod/admin.php:581
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/dfrn_request.php:353
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/admin.php:587
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: 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:589
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/dfrn_request.php:481
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: mod/admin.php:591
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: 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:592
-msgid "Version"
-msgstr "Version"
+#: mod/dfrn_request.php:506
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: mod/admin.php:597
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/dfrn_request.php:614
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: mod/admin.php:622
-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/dfrn_request.php:656
+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:912
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/dfrn_request.php:677
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: mod/admin.php:940 mod/settings.php:943
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/dfrn_request.php:687
+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:969
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: mod/admin.php:970
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/dfrn_request.php:713
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: mod/admin.php:971
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/dfrn_request.php:716
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: mod/admin.php:977
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/dfrn_request.php:717
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: mod/admin.php:987
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/dfrn_request.php:848
+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:988
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/dfrn_request.php:872
+#, 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:992
-msgid "One month"
-msgstr "ein Monat"
+#: mod/dfrn_request.php:877
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: mod/admin.php:993
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/dfrn_request.php:878
+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:994
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/dfrn_request.php:879 mod/follow.php:112
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: mod/admin.php:995
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/dfrn_request.php:880 mod/follow.php:113
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: mod/admin.php:1000
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/dfrn_request.php:884 mod/follow.php:114
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: mod/admin.php:1023
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/dfrn_request.php:887
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: mod/admin.php:1024
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/dfrn_request.php:889
+#, 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/admin.php:1025
-msgid "Open"
-msgstr "Offen"
+#: mod/dfrn_request.php:890 mod/follow.php:120
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: mod/admin.php:1029
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/dfrn_request.php:893 mod/follow.php:19
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: mod/admin.php:1030
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/dirfind.php:37
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/admin.php:1031
-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/dirfind.php:48
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/admin.php:1053 mod/admin.php:1677 mod/admin.php:1940 mod/admin.php:2014
-#: mod/admin.php:2167 mod/settings.php:681 mod/settings.php:792
-#: mod/settings.php:841 mod/settings.php:908 mod/settings.php:1005
-#: mod/settings.php:1271
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/events.php:93 mod/events.php:95
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/admin.php:1054 mod/register.php:272
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/events.php:102 mod/events.php:104
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/admin.php:1055
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/events.php:376
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/admin.php:1056
-msgid "Policies"
-msgstr "Regeln"
+#: mod/events.php:481
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/admin.php:1058
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/events.php:482
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/admin.php:1059
-msgid "Performance"
-msgstr "Performance"
+#: mod/events.php:483 mod/events.php:484
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/admin.php:1060
-msgid "Worker"
-msgstr "Worker"
+#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
+msgid "Required"
+msgstr "Benötigt"
 
-#: mod/admin.php:1061
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: mod/events.php:485 mod/events.php:501
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/admin.php:1064
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/events.php:487 mod/events.php:488
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/admin.php:1065
-msgid "Host name"
-msgstr "Host Name"
+#: mod/events.php:489 mod/events.php:502
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/admin.php:1066
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/events.php:491
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/admin.php:1066
-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/events.php:495 mod/events.php:497
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/admin.php:1067
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/events.php:498 mod/events.php:499
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/admin.php:1068
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/events.php:528
+msgid "Failed to remove event"
+msgstr "Entfernen der Veranstaltung fehlgeschlagen"
 
-#: mod/admin.php:1068
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/events.php:530
+msgid "Event removed"
+msgstr "Veranstaltung enfternt"
 
-#: mod/admin.php:1069
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/follow.php:30
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: mod/admin.php:1069
-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/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:1070
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: 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:1070
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
+#: mod/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:1071
-msgid "System language"
-msgstr "Systemsprache"
+#: mod/follow.php:186
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: mod/admin.php:1072
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/friendica.php:68
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/admin.php:1072
+#: mod/friendica.php:69
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
+
+#: mod/friendica.php:73
 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>"
+"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/admin.php:1073
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/friendica.php:77
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/admin.php:1073
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/friendica.php:77
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/admin.php:1074
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/friendica.php:80
+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/admin.php:1074
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/friendica.php:94
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps:"
 
-#: mod/admin.php:1075
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/friendica.php:108
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: mod/admin.php:1075
-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/friendica.php:113
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
 
-#: mod/admin.php:1076
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/friendica.php:114 mod/admin.php:280 mod/admin.php:298
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
 
-#: mod/admin.php:1076
-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/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/admin.php:1077
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/admin.php:1077
-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/group.php:49 mod/group.php:154
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/admin.php:1078
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/group.php:63
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/admin.php:1078
-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/group.php:93
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/admin.php:1079
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/group.php:98
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/admin.php:1079
-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/group.php:123
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/admin.php:1080
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/group.php:125
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/admin.php:1080
-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/group.php:189
+msgid "Delete Group"
+msgstr "Gruppe löschen"
 
-#: mod/admin.php:1082
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/group.php:195
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/admin.php:1083
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/group.php:200
+msgid "Edit Group Name"
+msgstr "Gruppen Name bearbeiten"
 
-#: mod/admin.php:1083
-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/group.php:210
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/admin.php:1084
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/group.php:226
+msgid "Remove Contact"
+msgstr "Kontakt löschen"
 
-#: mod/admin.php:1084
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/group.php:250
+msgid "Add Contact"
+msgstr "Kontakt hinzufügen"
 
-#: mod/admin.php:1085
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/manage.php:151
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/admin.php:1085
+#: mod/manage.php:152
 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."
+"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/admin.php:1086
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/manage.php:153
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/admin.php:1086
-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/message.php:64
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/admin.php:1087
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/message.php:204
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/admin.php:1087
-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/message.php:224
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/admin.php:1088
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/message.php:255
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/admin.php:1088
-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/message.php:364
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/admin.php:1089
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/message.php:403
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: mod/admin.php:1089
-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/message.php:477
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: mod/admin.php:1090
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/message.php:503 mod/message.php:591
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: mod/admin.php:1090
+#: mod/message.php:505
 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."
+"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/admin.php:1091
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: mod/message.php:509
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: mod/admin.php:1091
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: mod/message.php:561
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: mod/admin.php:1092
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/message.php:563
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: mod/admin.php:1092
-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/message.php:565
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: mod/admin.php:1093
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/message.php:594
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: mod/admin.php:1093
-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/message.php:597
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: mod/admin.php:1094
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/network.php:197 mod/search.php:25
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/admin.php:1094
+#: mod/network.php:404
+#, php-format
 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."
+"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/admin.php:1095
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/network.php:407
+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/admin.php:1095
-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/network.php:535
+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/admin.php:1096
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/network.php:540
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/admin.php:1096
-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/network.php:813
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/admin.php:1097
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/network.php:816
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/admin.php:1097
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/network.php:821
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/admin.php:1098
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/network.php:824
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/admin.php:1098
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/network.php:835
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/admin.php:1099
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/network.php:843
+msgid "New"
+msgstr "Neue"
 
-#: mod/admin.php:1099
-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/network.php:846
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/admin.php:1100
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/network.php:854
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/admin.php:1100
-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/network.php:857
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/admin.php:1101
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/network.php:865
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/admin.php:1101
-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/network.php:868
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/admin.php:1102
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: mod/admin.php:1102
+#: mod/openid.php:60
 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."
+"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/admin.php:1103
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: mod/photos.php:94 mod/photos.php:1900
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/admin.php:1103
-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/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/admin.php:1104
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/photos.php:112 mod/settings.php:36
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/admin.php:1104
-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/photos.php:176
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/admin.php:1105
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/photos.php:197
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/admin.php:1107
-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/photos.php:230 mod/photos.php:242 mod/photos.php:1272
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/admin.php:1108
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/photos.php:240
+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/admin.php:1108
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/admin.php:1109
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/photos.php:332
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/admin.php:1109
-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/photos.php:713
+#, 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/admin.php:1110
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: mod/photos.php:713
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/admin.php:1110
-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/photos.php:821
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/admin.php:1111
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/photos.php:988
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/admin.php:1112
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/photos.php:1091 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/admin.php:1113
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/photos.php:1151
+#, 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/admin.php:1113
-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/photos.php:1188
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/admin.php:1114
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
-
-#: mod/admin.php:1114
-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:1115
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
-
-#: mod/admin.php:1115
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
-
-#: mod/admin.php:1116
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
-
-#: mod/admin.php:1116
-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:1117
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
-
-#: mod/admin.php:1117
-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:1119
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
-
-#: mod/admin.php:1119
-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:1120
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
-
-#: mod/admin.php:1120
-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/photos.php:1192 mod/photos.php:1267
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/admin.php:1121
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/photos.php:1193
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/admin.php:1121
-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/photos.php:1194
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/admin.php:1122
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/admin.php:1122
-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/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/admin.php:1123
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/photos.php:1207
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: mod/admin.php:1123
-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/photos.php:1208
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: mod/admin.php:1125
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/photos.php:1278
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/admin.php:1125
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+#: mod/photos.php:1283
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/admin.php:1127
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/photos.php:1285
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: mod/admin.php:1127
-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/photos.php:1314 mod/photos.php:1885
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/admin.php:1128
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/photos.php:1359
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/admin.php:1128
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+#: mod/photos.php:1361
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/admin.php:1129
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/photos.php:1422
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/admin.php:1129
-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/photos.php:1422
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/admin.php:1130
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/photos.php:1423
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/admin.php:1130
-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/photos.php:1448
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/admin.php:1131
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/photos.php:1538
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/admin.php:1131
-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/photos.php:1541
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/admin.php:1132
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/photos.php:1584
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/admin.php:1132
-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/photos.php:1585
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/admin.php:1133
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/photos.php:1586
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/admin.php:1133
+#: mod/photos.php:1586
 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:1134
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
-
-#: mod/admin.php:1134
-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."
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/admin.php:1136
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/photos.php:1587
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/admin.php:1136
-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/photos.php:1588
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/admin.php:1138
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/photos.php:1589
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/admin.php:1138
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/photos.php:1604
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: mod/admin.php:1140
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/photos.php:1605
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: mod/admin.php:1140
-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/photos.php:1814
+msgid "Map"
+msgstr "Karte"
 
-#: mod/admin.php:1141
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/photos.php:1891 mod/videos.php:393
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/admin.php:1141
-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/probe.php:10 mod/webfinger.php:9
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
 
-#: mod/admin.php:1142
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/profile.php:175
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/admin.php:1142
-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/profiles.php:38
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/admin.php:1143
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/profiles.php:54 mod/profiles.php:90
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/admin.php:1143
-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/profiles.php:73 mod/profiles.php:118
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/admin.php:1173
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/profiles.php:96
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/admin.php:1181
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/profiles.php:192
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/admin.php:1184
-#, 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/profiles.php:332
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/admin.php:1198
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/profiles.php:336
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/admin.php:1201
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/profiles.php:348
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/admin.php:1204
-#, 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/profiles.php:351
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/admin.php:1207
-#, 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/profiles.php:355
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/admin.php:1227
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/profiles.php:359
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/admin.php:1228
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/profiles.php:363
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/admin.php:1233
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/profiles.php:367
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:1234
-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/profiles.php:371
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/admin.php:1235
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/profiles.php:375 mod/profiles.php:695
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/admin.php:1236
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/profiles.php:379
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/admin.php:1270
-#, 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/profiles.php:386 mod/profiles.php:691
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/admin.php:1273
-#, 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/profiles.php:471
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/admin.php:1317
-#, 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/profiles.php:564
+msgid " and "
+msgstr " und "
 
-#: mod/admin.php:1324
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/admin.php:1371
+#: mod/profiles.php:576
 #, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+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:1379
+#: mod/profiles.php:577
 #, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: mod/admin.php:1379
+#: mod/profiles.php:579
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+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:1487 mod/admin.php:1513
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/profiles.php:637
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/admin.php:1487 mod/admin.php:1513
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: 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:1487 mod/admin.php:1513
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/profiles.php:667
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/admin.php:1487 mod/settings.php:43
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/profiles.php:679
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/admin.php:1496
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/profiles.php:680
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/admin.php:1497
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/profiles.php:682
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: mod/admin.php:1498
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/profiles.php:683
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/admin.php:1499
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/profiles.php:685
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/admin.php:1500
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/profiles.php:686
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/admin.php:1501
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/profiles.php:687
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/admin.php:1502
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/profiles.php:689
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/admin.php:1503 mod/notifications.php:176 mod/notifications.php:255
-msgid "Approve"
-msgstr "Genehmigen"
+#: mod/profiles.php:690
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/admin.php:1504
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/profiles.php:692
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/admin.php:1508
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/profiles.php:693
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/admin.php:1509
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/profiles.php:694
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1512
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/profiles.php:697
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/admin.php:1513
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/profiles.php:701
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/admin.php:1518
-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/profiles.php:702
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+
+#: mod/profiles.php:704
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
+
+#: mod/profiles.php:709
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/admin.php:1519
+#: mod/profiles.php:711
 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?"
+"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:1529
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/profiles.php:712
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/admin.php:1530
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/profiles.php:713
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/admin.php:1530
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/profiles.php:716
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/admin.php:1531
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/profiles.php:717
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/admin.php:1574
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: mod/profiles.php:718
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/admin.php:1578
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: mod/profiles.php:719
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/admin.php:1589 mod/admin.php:1841
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/profiles.php:720
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/admin.php:1591 mod/admin.php:1843
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/profiles.php:724
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/admin.php:1614 mod/admin.php:1890
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/profiles.php:724
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:1622 mod/admin.php:1899
-msgid "Author: "
-msgstr "Autor:"
+#: mod/profiles.php:725
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/admin.php:1623 mod/admin.php:1900
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/profiles.php:727
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: mod/admin.php:1678
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/profiles.php:728
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/admin.php:1683
-#, php-format
+#: mod/profiles.php:728
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
-
-#: mod/admin.php:1802
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+"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:1881
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/profiles.php:729
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/admin.php:1941
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/profiles.php:732
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: mod/admin.php:1946
-#, 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/profiles.php:733
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/admin.php:1947
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/profiles.php:733
+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:1948
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/profiles.php:734
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/admin.php:1972
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/profiles.php:734
+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:2004
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/profiles.php:737
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/admin.php:2006
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/profiles.php:738
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/admin.php:2015
-msgid "Clear"
-msgstr "löschen"
+#: mod/profiles.php:739
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/admin.php:2020
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/profiles.php:740
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/admin.php:2021
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/profiles.php:741
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/admin.php:2021
-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/profiles.php:742
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/admin.php:2022
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/profiles.php:743
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/admin.php:2025
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/profiles.php:744
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/admin.php:2026
-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/profiles.php:745
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/admin.php:2156 mod/admin.php:2157 mod/settings.php:782
-msgid "Off"
-msgstr "Aus"
+#: mod/profiles.php:786
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/admin.php:2156 mod/admin.php:2157 mod/settings.php:782
-msgid "On"
-msgstr "An"
+#: 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/admin.php:2157
+#: mod/register.php:98
 #, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+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/admin.php:2165
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/register.php:105
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
 
-#: mod/babel.php:16
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: mod/register.php:111
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: 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/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: 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/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: 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/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: mod/register.php:228
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: mod/register.php:242
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
 
-#: mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: 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/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: 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/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: mod/register.php:269
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: mod/babel.php:65
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
+#: mod/register.php:272 mod/admin.php:1056
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/babel.php:69
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: 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/cal.php:271 mod/events.php:375
-msgid "View"
-msgstr "Ansehen"
+#: mod/register.php:281
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: mod/cal.php:272 mod/events.php:377
-msgid "Previous"
-msgstr "Vorherige"
+#: mod/register.php:283 mod/settings.php:1278
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/cal.php:273 mod/events.php:378 mod/install.php:228
-msgid "Next"
-msgstr "Nächste"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/cal.php:282 mod/events.php:387
-msgid "list"
-msgstr "Liste"
+#: mod/register.php:284 mod/settings.php:1279
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/cal.php:292
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: 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/cal.php:308
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: mod/register.php:286
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: mod/cal.php:310
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/cal.php:325
-msgid "calendar"
-msgstr "Kalender"
+#: mod/search.php:100
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
 
-#: mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/search.php:124
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
 
-#: mod/community.php:50 mod/search.php:219
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: 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/dfrn_confirm.php:70 mod/profiles.php:19 mod/profiles.php:135
-#: mod/profiles.php:182 mod/profiles.php:619
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: mod/search.php:225
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
 
-#: mod/dfrn_confirm.php:127
-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."
+#: mod/settings.php:43 mod/admin.php:1490
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/dfrn_confirm.php:244
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: mod/settings.php:52 mod/admin.php:169
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/dfrn_confirm.php:253 mod/dfrn_confirm.php:258
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: mod/settings.php:60
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/dfrn_confirm.php:267
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: mod/settings.php:67 mod/settings.php:890
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: 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:74 mod/admin.php:167 mod/admin.php:1616 mod/admin.php:1679
+msgid "Plugins"
+msgstr "Plugins"
 
-#: 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:88
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/dfrn_confirm.php:288
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: mod/settings.php:95 mod/uexport.php:45
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/dfrn_confirm.php:418
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: mod/settings.php:102
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: 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:157
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: 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: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/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:276
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/dfrn_confirm.php:602
-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:291
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/dfrn_confirm.php:616
-#, 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:361
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/dfrn_confirm.php:636
-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:380
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/dfrn_confirm.php:647
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: mod/settings.php:388
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/dfrn_confirm.php:709
-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:399
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/dfrn_confirm.php:781
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: mod/settings.php:401
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/dfrn_request.php:101
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: mod/settings.php:481
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/dfrn_request.php:124 mod/dfrn_request.php:528
-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:483
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/dfrn_request.php:129 mod/dfrn_request.php:533
-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:492
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/dfrn_request.php:132 mod/dfrn_request.php:536
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: mod/settings.php:497
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: mod/dfrn_request.php:136 mod/dfrn_request.php:540
-#, 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/settings.php:503
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/dfrn_request.php:180
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: 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/dfrn_request.php:225
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: 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/dfrn_request.php:253
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: mod/settings.php:603
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: 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/settings.php:680 mod/settings.php:706 mod/settings.php:742
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/dfrn_request.php:281
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: 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:1055 mod/admin.php:1680 mod/admin.php:1943 mod/admin.php:2017
+#: mod/admin.php:2170
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: 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/settings.php:684 mod/settings.php:710
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/dfrn_request.php:344
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: mod/settings.php:685 mod/settings.php:711
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/dfrn_request.php:353
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/settings.php:686 mod/settings.php:712
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: 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/settings.php:687 mod/settings.php:713
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/dfrn_request.php:481
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: mod/settings.php:698
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: 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/settings.php:741
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/dfrn_request.php:506
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: mod/settings.php:745
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/dfrn_request.php:614
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: mod/settings.php:746
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/dfrn_request.php:656
-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/settings.php:747
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/dfrn_request.php:677
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: mod/settings.php:759
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/dfrn_request.php:687
-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/settings.php:768
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: mod/dfrn_request.php:701 mod/dfrn_request.php:718
-msgid "Confirm"
-msgstr "Bestätigen"
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "Off"
+msgstr "Aus"
 
-#: mod/dfrn_request.php:713
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: mod/settings.php:782 mod/admin.php:2159 mod/admin.php:2160
+msgid "On"
+msgstr "An"
 
-#: mod/dfrn_request.php:716
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: mod/settings.php:790
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/dfrn_request.php:717
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+#: mod/settings.php:800 mod/settings.php:804
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/dfrn_request.php:848
-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/settings.php:810
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/dfrn_request.php:872
-#, php-format
+#: mod/settings.php:812
 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."
+"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/dfrn_request.php:877
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+#: mod/settings.php:818
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/dfrn_request.php:878
+#: mod/settings.php:820
 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"
+"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/dfrn_request.php:879 mod/follow.php:112
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: mod/settings.php:826
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/dfrn_request.php:880 mod/follow.php:113
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: mod/settings.php:834
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/dfrn_request.php:884 mod/follow.php:114
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: 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/dfrn_request.php:887
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: mod/settings.php:839
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/dfrn_request.php:889
+#: mod/settings.php:848 mod/settings.php:849
 #, 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."
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: mod/dfrn_request.php:890 mod/follow.php:120
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/dfrn_request.php:893 mod/follow.php:19
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: mod/settings.php:848 mod/settings.php:849
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/dirfind.php:37
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/settings.php:849
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/dirfind.php:48
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: mod/settings.php:883
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/events.php:93 mod/events.php:95
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/settings.php:895
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/events.php:102 mod/events.php:104
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: 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 "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an."
 
-#: mod/events.php:376
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/settings.php:897
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/events.php:481
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/settings.php:899
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/events.php:482
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/settings.php:900
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/events.php:483 mod/events.php:484
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/settings.php:901
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/events.php:483 mod/events.php:495 mod/profiles.php:709
-msgid "Required"
-msgstr "Benötigt"
+#: mod/settings.php:901 mod/settings.php:906
+msgid "None"
+msgstr "Keine"
 
-#: mod/events.php:485 mod/events.php:501
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/settings.php:902
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/events.php:487 mod/events.php:488
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/settings.php:903
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/events.php:489 mod/events.php:502
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/settings.php:904
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/events.php:491
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/settings.php:905
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/events.php:495 mod/events.php:497
-msgid "Title:"
-msgstr "Titel:"
+#: mod/settings.php:906
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/events.php:498 mod/events.php:499
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/settings.php:906
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/events.php:528
-msgid "Failed to remove event"
-msgstr "Entfernen der Veranstaltung fehlgeschlagen"
+#: mod/settings.php:907
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/events.php:530
-msgid "Event removed"
-msgstr "Veranstaltung enfternt"
+#: mod/settings.php:943 mod/admin.php:942
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/follow.php:30
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
+#: mod/settings.php:1003
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: 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/settings.php:1009 mod/settings.php:1032
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: 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/settings.php:1010
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: 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/settings.php:1011
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/follow.php:186
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: 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/friendica.php:68
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: mod/settings.php:1012
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/friendica.php:69
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: 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/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/settings.php:1013
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/friendica.php:77
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: mod/settings.php:1013 mod/settings.php:1014
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/friendica.php:77
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
+#: 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/friendica.php:80
-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:1015
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/friendica.php:94
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps:"
+#: mod/settings.php:1016
+msgid "Calendar"
+msgstr "Kalender"
 
-#: mod/friendica.php:108
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: mod/settings.php:1017
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
 
-#: mod/friendica.php:113
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
+#: mod/settings.php:1018
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: mod/settings.php:1019
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: 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/group.php:49 mod/group.php:154
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: mod/settings.php:1021
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/group.php:63
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: 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/group.php:93
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: mod/settings.php:1023
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/group.php:98
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
+#: mod/settings.php:1024
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/group.php:123
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: mod/settings.php:1025
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/group.php:125
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
+#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
+#: view/theme/vier/config.php:114
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/group.php:189
-msgid "Delete Group"
-msgstr "Gruppe löschen"
+#: mod/settings.php:1110
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/group.php:195
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: mod/settings.php:1111
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/group.php:200
-msgid "Edit Group Name"
-msgstr "Gruppen Name bearbeiten"
+#: mod/settings.php:1112
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/group.php:210
-msgid "Members"
-msgstr "Mitglieder"
+#: mod/settings.php:1119
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/group.php:226
-msgid "Remove Contact"
-msgstr "Kontakt löschen"
+#: mod/settings.php:1120
+msgid "This account is a regular personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/group.php:250
-msgid "Add Contact"
-msgstr "Kontakt hinzufügen"
+#: mod/settings.php:1123
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/install.php:133
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/settings.php:1124
+msgid "This account is a profile for an organisation"
+msgstr "Diese Konto ist ein Profil für eine Organisation"
 
-#: mod/install.php:139
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/settings.php:1127
+msgid "News Page"
+msgstr "Nachrichtenseite"
 
-#: mod/install.php:143
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/settings.php:1128
+msgid "This account is a news account/reflector"
+msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
 
-#: mod/install.php:149
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/settings.php:1131
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
 
-#: mod/install.php:154
+#: mod/settings.php:1132
 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."
+"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/install.php:155 mod/install.php:227 mod/install.php:582
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/settings.php:1135
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/install.php:167
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/settings.php:1136
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/install.php:224
-msgid "System check"
-msgstr "Systemtest"
+#: mod/settings.php:1139
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/install.php:229
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/settings.php:1140
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/install.php:248
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/settings.php:1143
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/install.php:249
-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/settings.php:1144
+msgid "Automatically approve all contact requests"
+msgstr "Bestätige alle Kontaktanfragen automatisch"
 
-#: mod/install.php:250
-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/settings.php:1147
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/install.php:251
-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/settings.php:1148
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/install.php:255
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/settings.php:1151
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/install.php:256
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/settings.php:1152
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/install.php:257
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/settings.php:1163
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/install.php:257
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+#: 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/install.php:258
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: 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/install.php:259 mod/install.php:300
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/settings.php:1171
+msgid "Your profile may be visible in public."
+msgstr "Dein Profil könnte öffentlich abrufbar sein."
+
+#: 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/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/install.php:259 mod/install.php:300
+#: mod/settings.php:1188
 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."
+"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/install.php:263 mod/install.php:303
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/settings.php:1193
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/install.php:290
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/settings.php:1198
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/install.php:304
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: 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/install.php:304
-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/settings.php:1208
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/install.php:344
-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/settings.php:1216
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/install.php:345
-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/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/install.php:349
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/settings.php:1231
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/install.php:349
-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/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/install.php:354
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/settings.php:1232
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
+
+#: mod/settings.php:1233
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
+
+#: mod/settings.php:1234
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/install.php:363
-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/settings.php:1235
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/install.php:364
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/settings.php:1236
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/install.php:366
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/settings.php:1237
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/install.php:377
-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/settings.php:1238
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/install.php:378
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/settings.php:1269
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/install.php:380
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/settings.php:1277
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/install.php:403
-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/settings.php:1279
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/install.php:404
-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/settings.php:1280
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/install.php:406
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: 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/install.php:413
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/settings.php:1281
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/install.php:414
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/settings.php:1285
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/install.php:415
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/settings.php:1287
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/install.php:416
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: mod/settings.php:1288
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/install.php:417
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/settings.php:1289
+msgid "Your Language:"
+msgstr "Deine Sprache:"
 
-#: mod/install.php:418
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: 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/install.php:419
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/settings.php:1290
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/install.php:423 mod/install.php:425
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/settings.php:1291
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/install.php:423
-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/settings.php:1294
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/install.php:431
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/settings.php:1296
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/install.php:435
-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/settings.php:1296 mod/settings.php:1326
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/install.php:439
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1297
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/install.php:443
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1298
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/install.php:447
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/settings.php:1309
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/install.php:451
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/settings.php:1310
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/install.php:461
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/settings.php:1314
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/install.php:473
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: mod/settings.php:1326
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/install.php:474
-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/settings.php:1329
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/install.php:475
-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/settings.php:1330
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/install.php:476
-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/settings.php:1331
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/install.php:479
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/settings.php:1332
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/install.php:489
-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/settings.php:1333
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/install.php:490
-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/settings.php:1334
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/install.php:491
-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/settings.php:1335
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/install.php:492
-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/settings.php:1336
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/install.php:495
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/settings.php:1337
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/install.php:511
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/settings.php:1338
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/install.php:513
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/settings.php:1339
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/install.php:532
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: mod/settings.php:1340
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/install.php:534
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/settings.php:1341
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/install.php:536
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/settings.php:1342
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/install.php:543
-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/settings.php:1344
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/install.php:580
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/settings.php:1344
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/install.php:581
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: mod/settings.php:1346
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/item.php:116
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: 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/item.php:344
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/settings.php:1350
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/item.php:890
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: mod/settings.php:1351
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/item.php:981
-#, php-format
+#: mod/settings.php:1354
+msgid "Relocate"
+msgstr "Umziehen"
+
+#: mod/settings.php:1355
 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."
+"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/item.php:983
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: mod/settings.php:1356
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/item.php:984
-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."
+#: mod/uexport.php:37
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: mod/item.php:988
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: 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/manage.php:151
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: mod/uexport.php:38
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: mod/manage.php:152
+#: mod/uexport.php:38
 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."
+"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/manage.php:153
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: mod/videos.php:124
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: mod/message.php:64
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: mod/videos.php:129
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: mod/message.php:204
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: mod/videos.php:208
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: mod/message.php:224
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: mod/videos.php:402
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: mod/message.php:255
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: mod/videos.php:404
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: mod/message.php:364
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: mod/install.php:106
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/message.php:403
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: mod/install.php:112
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/message.php:477
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: mod/install.php:116
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/message.php:503 mod/message.php:591
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: mod/install.php:122
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/message.php:505
+#: mod/install.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."
+"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/message.php:509
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: mod/install.php:128 mod/install.php:200 mod/install.php:547
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/message.php:561
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: mod/install.php:140
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/message.php:563
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: mod/install.php:197
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/message.php:565
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+#: mod/install.php:202
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/message.php:594
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: mod/install.php:221
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/message.php:597
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: mod/install.php:222
+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/network.php:197 mod/search.php:25
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: mod/install.php:223
+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/network.php:404
-#, php-format
+#: mod/install.php:224
 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."
+"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/network.php:407
-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:228
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/network.php:535
-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:229
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/network.php:540
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/install.php:230
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/network.php:813
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/install.php:230
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
 
-#: mod/network.php:816
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/install.php:231
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/network.php:821
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/install.php:232 mod/install.php:273
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/network.php:824
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/install.php:232 mod/install.php:273
+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/network.php:835
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/install.php:236 mod/install.php:276
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/network.php:843
-msgid "New"
-msgstr "Neue"
+#: mod/install.php:263
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/network.php:846
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/install.php:277
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/network.php:854
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/install.php:277
+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/network.php:857
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/install.php:317
+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/install.php:318
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run the background processing. See <a "
+"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>"
+
+#: mod/install.php:322
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
+
+#: mod/install.php:322
+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/install.php:327
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/network.php:865
-msgid "Starred"
-msgstr "Markierte"
+#: mod/install.php:336
+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:868
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/install.php:337
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/notifications.php:35
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: mod/install.php:339
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/notifications.php:44 mod/notifications.php:180
-#: mod/notifications.php:258
-msgid "Discard"
-msgstr "Verwerfen"
+#: mod/install.php:350
+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/notifications.php:105
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: mod/install.php:351
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/notifications.php:117
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: mod/install.php:353
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/notifications.php:123
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: mod/install.php:376
+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/notifications.php:152
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: mod/install.php:377
+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/notifications.php:152
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: mod/install.php:379
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/notifications.php:164 mod/notifications.php:228
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: mod/install.php:386
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/notifications.php:167
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: mod/install.php:387
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/notifications.php:173 mod/notifications.php:246
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: mod/install.php:388
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/notifications.php:173 mod/notifications.php:246
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: mod/install.php:389
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
 
-#: mod/notifications.php:195
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: mod/install.php:390
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/notifications.php:196
-msgid "yes"
-msgstr "ja"
+#: mod/install.php:391
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: mod/notifications.php:196
-msgid "no"
-msgstr "nein"
+#: mod/install.php:392
+msgid "iconv module"
+msgstr "iconv module"
 
-#: 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:396 mod/install.php:398
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: mod/notifications.php:198 mod/notifications.php:203
-#, php-format
+#: mod/install.php:396
 msgid ""
-"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
-"also receive updates from them in your news feed."
-msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
+"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:199
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: mod/install.php:404
+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:204
-#, php-format
+#: mod/install.php:408
 msgid ""
-"Accepting %s as a sharer allows them to subscribe to your posts, but you "
-"will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Teilenden akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+"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:215
-msgid "Friend"
-msgstr "Kontakt"
+#: mod/install.php:412
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/notifications.php:216
-msgid "Sharer"
-msgstr "Teilenden"
+#: mod/install.php:416
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
 
-#: mod/notifications.php:216
-msgid "Subscriber"
-msgstr "Abonnent"
+#: mod/install.php:420
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
 
-#: mod/notifications.php:266
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: mod/install.php:424
+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:307
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: mod/install.php:428
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/notifications.php:307
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: mod/install.php:438
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/notifications.php:313
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: mod/install.php:450
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: mod/install.php:451
+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/openid.php:60
+#: mod/install.php:452
 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."
+"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/photos.php:94 mod/photos.php:1900
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: mod/install.php:453
+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/photos.php:97 mod/photos.php:1328 mod/photos.php:1902
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: mod/install.php:456
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/photos.php:112 mod/settings.php:36
-msgid "everybody"
-msgstr "jeder"
+#: mod/install.php:466
+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/photos.php:176
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: mod/install.php:467
+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/photos.php:197
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: mod/install.php:468
+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/photos.php:230 mod/photos.php:242 mod/photos.php:1272
-msgid "Delete Album"
-msgstr "Album löschen"
+#: mod/install.php:469
+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/photos.php:240
-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/install.php:472
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/photos.php:323 mod/photos.php:334 mod/photos.php:1598
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: mod/install.php:488
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: mod/photos.php:332
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: mod/install.php:490
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/photos.php:713
-#, 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/install.php:509
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: mod/photos.php:713
-msgid "a photo"
-msgstr "einem Foto"
+#: mod/install.php:511
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/photos.php:821
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: mod/install.php:513
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/photos.php:988
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: mod/install.php:520
+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/photos.php:1091 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: mod/install.php:545
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/photos.php:1151
-#, 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/install.php:546
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+
+#: mod/item.php:116
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: mod/photos.php:1188
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: mod/item.php:344
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/photos.php:1192 mod/photos.php:1267
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: mod/item.php:904
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/photos.php:1193
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: mod/item.php:995
+#, 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/photos.php:1194
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: mod/item.php:997
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/photos.php:1205 mod/photos.php:1602 mod/settings.php:1307
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: mod/item.php:998
+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."
 
-#: mod/photos.php:1206 mod/photos.php:1603 mod/settings.php:1308
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: mod/item.php:1002
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: mod/photos.php:1207
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: mod/notifications.php:35
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: mod/photos.php:1208
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: mod/notifications.php:44 mod/notifications.php:180
+#: mod/notifications.php:227
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: mod/photos.php:1278
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: mod/notifications.php:105
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: mod/photos.php:1283
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: mod/notifications.php:117
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: mod/photos.php:1285
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: mod/notifications.php:123
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: mod/photos.php:1314 mod/photos.php:1885
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: mod/notifications.php:152
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: mod/photos.php:1359
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: mod/notifications.php:152
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: mod/photos.php:1361
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: mod/notifications.php:164 mod/notifications.php:234
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: mod/photos.php:1422
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: mod/notifications.php:167
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: mod/photos.php:1422
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: mod/photos.php:1423
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: mod/notifications.php:173 mod/notifications.php:252
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: mod/photos.php:1448
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: mod/notifications.php:176 mod/notifications.php:261 mod/admin.php:1506
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/photos.php:1538
-msgid "Tags: "
-msgstr "Tags: "
+#: mod/notifications.php:195
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: mod/photos.php:1541
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: mod/notifications.php:196
+msgid "yes"
+msgstr "ja"
 
-#: mod/photos.php:1584
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: mod/notifications.php:196
+msgid "no"
+msgstr "nein"
 
-#: mod/photos.php:1585
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: 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/photos.php:1586
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: mod/notifications.php:198 mod/notifications.php:203
+#, php-format
+msgid ""
+"Accepting %s as a friend allows %s to subscribe to your posts, and you will "
+"also receive updates from them in your news feed."
+msgstr "Akzeptierst du %s als Kontakt, erlaubst du damit das Lesen deiner Beiträge und abonnierst selbst auch die Beiträge von %s."
 
-#: mod/photos.php:1586
+#: mod/notifications.php:199
+#, php-format
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"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/photos.php:1587
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: 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 "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/photos.php:1588
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: mod/notifications.php:215
+msgid "Friend"
+msgstr "Kontakt"
 
-#: mod/photos.php:1589
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: mod/notifications.php:216
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: mod/photos.php:1604
-msgid "Private photo"
-msgstr "Privates Foto"
+#: mod/notifications.php:216
+msgid "Subscriber"
+msgstr "Abonnent"
 
-#: mod/photos.php:1605
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: mod/notifications.php:272
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: mod/photos.php:1814
-msgid "Map"
-msgstr "Karte"
+#: mod/notifications.php:313
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: mod/photos.php:1891 mod/videos.php:393
-msgid "View Album"
-msgstr "Album betrachten"
+#: mod/notifications.php:313
+msgid "Show all"
+msgstr "Alle anzeigen"
+
+#: mod/notifications.php:319
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
 #: mod/ping.php:270
 msgid "{0} wants to be your friend"
@@ -7543,1183 +7382,1361 @@ msgstr "{0} schickte Dir eine Nachricht"
 msgid "{0} requested registration"
 msgstr "{0} möchte sich registrieren"
 
-#: mod/probe.php:10 mod/webfinger.php:9
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
-
-#: mod/profile.php:175
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: mod/admin.php:96
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/profiles.php:38
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/admin.php:165 mod/admin.php:1054
+msgid "Site"
+msgstr "Seite"
 
-#: mod/profiles.php:54 mod/profiles.php:90
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/admin.php:166 mod/admin.php:988 mod/admin.php:1498 mod/admin.php:1514
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/profiles.php:73 mod/profiles.php:118
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/admin.php:168 mod/admin.php:1892 mod/admin.php:1942
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/profiles.php:96
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/admin.php:170
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/profiles.php:192
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/admin.php:171 mod/admin.php:512
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/profiles.php:332
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/admin.php:172 mod/admin.php:288
+msgid "Server Blocklist"
+msgstr "Server Blockliste"
 
-#: mod/profiles.php:336
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/admin.php:173 mod/admin.php:478
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/profiles.php:348
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/admin.php:187 mod/admin.php:198 mod/admin.php:2016
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/profiles.php:351
-msgid "Religion"
-msgstr "Religion"
+#: mod/admin.php:188 mod/admin.php:2084
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/profiles.php:355
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/admin.php:189
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/profiles.php:359
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/admin.php:190
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/profiles.php:363
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/admin.php:197
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/profiles.php:367
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/admin.php:199
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/profiles.php:371
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/admin.php:200
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/profiles.php:375 mod/profiles.php:695
-msgid "Interests"
-msgstr "Interessen"
+#: mod/admin.php:279
+msgid "The blocked domain"
+msgstr "Die blockierte Domain"
 
-#: mod/profiles.php:379
-msgid "Address"
-msgstr "Adresse"
+#: mod/admin.php:280 mod/admin.php:293
+msgid "The reason why you blocked this domain."
+msgstr "Die Begründung warum du diese Domain blockiert hast."
 
-#: mod/profiles.php:386 mod/profiles.php:691
-msgid "Location"
-msgstr "Wohnort"
+#: mod/admin.php:281
+msgid "Delete domain"
+msgstr "Domain löschen"
 
-#: mod/profiles.php:471
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/admin.php:281
+msgid "Check to delete this entry from the blocklist"
+msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " und "
+#: mod/admin.php:287 mod/admin.php:477 mod/admin.php:511 mod/admin.php:586
+#: mod/admin.php:1053 mod/admin.php:1497 mod/admin.php:1615 mod/admin.php:1678
+#: mod/admin.php:1891 mod/admin.php:1941 mod/admin.php:2015 mod/admin.php:2083
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/admin.php:289
+msgid ""
+"This page can be used to define a black list of servers from the federated "
+"network that are not allowed to interact with your node. For all entered "
+"domains you should also give a reason why you have blocked the remote "
+"server."
+msgstr "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben."
 
-#: 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:290
+msgid ""
+"The list of blocked servers will be made publically available on the "
+"/friendica page so that your users and people investigating communication "
+"problems can find the reason easily."
+msgstr "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können."
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: mod/admin.php:291
+msgid "Add new entry to block list"
+msgstr "Neuen Eintrag in die Blockliste"
 
-#: 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/admin.php:292
+msgid "Server Domain"
+msgstr "Domain des Servers"
 
-#: mod/profiles.php:637
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/admin.php:292
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!"
 
-#: 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:293
+msgid "Block reason"
+msgstr "Begründung der Blockierung"
 
-#: mod/profiles.php:667
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/admin.php:294
+msgid "Add Entry"
+msgstr "Eintrag hinzufügen"
 
-#: mod/profiles.php:679
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/admin.php:295
+msgid "Save changes to the blocklist"
+msgstr "Änderungen der Blockliste speichern"
 
-#: mod/profiles.php:680
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/admin.php:296
+msgid "Current Entries in the Blocklist"
+msgstr "Aktuelle Einträge der Blockliste"
 
-#: mod/profiles.php:682
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: mod/admin.php:299
+msgid "Delete entry from blocklist"
+msgstr "Eintrag von der Blockliste entfernen"
 
-#: mod/profiles.php:683
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/admin.php:302
+msgid "Delete entry from blocklist?"
+msgstr "Eintrag von der Blockliste entfernen?"
 
-#: mod/profiles.php:685
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/admin.php:327
+msgid "Server added to blocklist."
+msgstr "Server zur Blockliste hinzugefügt."
 
-#: mod/profiles.php:686
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/admin.php:343
+msgid "Site blocklist updated."
+msgstr "Blockliste aktualisiert."
 
-#: mod/profiles.php:687
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/admin.php:408
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/profiles.php:689
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/admin.php:471
+msgid ""
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
 
-#: mod/profiles.php:690
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/admin.php:472
+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/profiles.php:692
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/admin.php:484
+#, 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/profiles.php:693
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/admin.php:514
+msgid "ID"
+msgstr "ID"
 
-#: mod/profiles.php:694
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/admin.php:515
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/profiles.php:697
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/admin.php:516
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/profiles.php:701
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/admin.php:518
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/profiles.php:702
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/admin.php:519
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/profiles.php:704
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/admin.php:520
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
 
-#: mod/profiles.php:709
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/admin.php:545
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the command <tt>php "
+"include/dbstructure.php toinnodb</tt> of your Friendica installation for an "
+"automatic conversion.<br />"
+msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
 
-#: mod/profiles.php:711
+#: mod/admin.php:550
 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."
+"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/profiles.php:712
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/admin.php:554 mod/admin.php:1447
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/profiles.php:713
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/admin.php:555 mod/admin.php:1448
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: mod/profiles.php:716
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/admin.php:556 mod/admin.php:1449
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
+
+#: mod/admin.php:557 mod/admin.php:1450
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/profiles.php:717
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/admin.php:558
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/profiles.php:718
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/admin.php:559
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/profiles.php:719
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/admin.php:581
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/profiles.php:720
-msgid "Country:"
-msgstr "Land:"
+#: mod/admin.php:587
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/profiles.php:724
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/admin.php:589
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/profiles.php:724
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:591
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/profiles.php:725
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/admin.php:592
+msgid "Version"
+msgstr "Version"
 
-#: mod/profiles.php:727
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: mod/admin.php:597
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/profiles.php:728
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/admin.php:622
+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/profiles.php:728
-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/admin.php:914
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/profiles.php:729
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/admin.php:971
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/profiles.php:732
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/admin.php:972
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/profiles.php:733
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/admin.php:973
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/profiles.php:733
-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:979
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/profiles.php:734
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/admin.php:989
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/profiles.php:734
-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:990
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/profiles.php:737
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/admin.php:994
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/profiles.php:738
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/admin.php:995
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/profiles.php:739
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/admin.php:996
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/profiles.php:740
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/admin.php:997
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/profiles.php:741
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/admin.php:1002
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/profiles.php:742
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/admin.php:1025
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/profiles.php:743
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/admin.php:1026
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/profiles.php:744
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/admin.php:1027
+msgid "Open"
+msgstr "Offen"
 
-#: mod/profiles.php:745
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/admin.php:1031
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/profiles.php:786
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/admin.php:1032
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: 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/admin.php:1033
+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/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/admin.php:1057
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/register.php:105
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
+#: mod/admin.php:1058
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/register.php:111
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/admin.php:1060
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: 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/admin.php:1061
+msgid "Performance"
+msgstr "Performance"
 
-#: 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/admin.php:1062
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/register.php:227
+#: mod/admin.php:1063
 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/register.php:228
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/register.php:242
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/admin.php:1066
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/register.php:267
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/admin.php:1067
+msgid "Host name"
+msgstr "Host Name"
 
-#: 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/admin.php:1068
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: 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/admin.php:1068
+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/register.php:269
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: mod/admin.php:1069
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: 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/admin.php:1070
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/register.php:281
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: mod/admin.php:1070
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/register.php:283 mod/settings.php:1278
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/admin.php:1071
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/register.php:283
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/admin.php:1071
+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/register.php:284 mod/settings.php:1279
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/admin.php:1072
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/register.php:285
+#: mod/admin.php:1072
+#, php-format
 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."
+"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/register.php:286
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/admin.php:1073
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/register.php:296
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/admin.php:1074
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/search.php:100
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: mod/admin.php:1074
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: mod/search.php:124
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: mod/admin.php:1075
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: 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/admin.php:1075
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/search.php:225
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: mod/admin.php:1076
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/settings.php:60
-msgid "Display"
-msgstr "Anzeige"
+#: mod/admin.php:1076
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/settings.php:67 mod/settings.php:890
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/admin.php:1077
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/settings.php:88
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:1077
+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/settings.php:95 mod/uexport.php:45
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: mod/admin.php:1078
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/settings.php:102
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/admin.php:1078
+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/settings.php:157
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/admin.php:1079
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: 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/admin.php:1079
+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/settings.php:276
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/admin.php:1080
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/settings.php:291
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/admin.php:1080
+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/settings.php:361
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/admin.php:1081
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/settings.php:380
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/admin.php:1081
+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/settings.php:388
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/admin.php:1082
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/settings.php:399
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/admin.php:1082
+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/settings.php:401
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/admin.php:1084
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/settings.php:481
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/admin.php:1085
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/settings.php:483
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/admin.php:1085
+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/settings.php:492
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/admin.php:1086
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/settings.php:497
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: mod/admin.php:1086
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/settings.php:503
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: mod/admin.php:1087
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: 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/admin.php:1087
+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/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/admin.php:1088
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/settings.php:603
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/admin.php:1088
+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/settings.php:680 mod/settings.php:706 mod/settings.php:742
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/admin.php:1089
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/settings.php:684 mod/settings.php:710
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/admin.php:1089
+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/settings.php:685 mod/settings.php:711
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/admin.php:1090
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/settings.php:686 mod/settings.php:712
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/admin.php:1090
+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/settings.php:687 mod/settings.php:713
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/admin.php:1091
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/settings.php:698
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/admin.php:1091
+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/settings.php:741
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:1092
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/settings.php:745
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: mod/admin.php:1092
+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:1093
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/settings.php:746
-msgid "No name"
-msgstr "Kein Name"
+#: mod/admin.php:1093
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/settings.php:747
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/admin.php:1094
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/settings.php:759
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: mod/admin.php:1094
+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/settings.php:768
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: mod/admin.php:1095
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/settings.php:790
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/admin.php:1095
+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/settings.php:800 mod/settings.php:804
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/admin.php:1096
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/settings.php:810
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/admin.php:1096
+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/settings.php:812
+#: mod/admin.php:1097
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
+
+#: mod/admin.php:1097
 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."
+"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/settings.php:818
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/admin.php:1098
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/settings.php:820
+#: mod/admin.php:1098
 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,."
+"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/settings.php:826
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/admin.php:1099
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/settings.php:834
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/admin.php:1099
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: 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/admin.php:1100
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/settings.php:839
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
+#: mod/admin.php:1100
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: 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/admin.php:1101
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: mod/settings.php:848 mod/settings.php:849
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/admin.php:1101
+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/settings.php:848 mod/settings.php:849
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/admin.php:1102
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: mod/settings.php:849
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/admin.php:1102
+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/settings.php:883
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/admin.php:1103
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/settings.php:895
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: mod/admin.php:1103
+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/settings.php:896
+#: mod/admin.php:1104
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
+
+#: mod/admin.php:1104
 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."
+"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/settings.php:897
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/admin.php:1105
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: mod/settings.php:899
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/admin.php:1105
+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/settings.php:900
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/admin.php:1106
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/settings.php:901
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/admin.php:1106
+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/settings.php:901 mod/settings.php:906
-msgid "None"
-msgstr "Keine"
+#: mod/admin.php:1107
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/settings.php:902
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/admin.php:1109
+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/settings.php:903
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/admin.php:1110
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/settings.php:904
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/admin.php:1110
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/settings.php:905
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/admin.php:1111
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/settings.php:906
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/admin.php:1111
+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/settings.php:906
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/admin.php:1112
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: mod/settings.php:907
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/admin.php:1112
+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/settings.php:1003
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/admin.php:1113
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/settings.php:1009 mod/settings.php:1032
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/admin.php:1114
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/settings.php:1010
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/admin.php:1115
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/settings.php:1011
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/admin.php:1115
+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/settings.php:1011
+#: mod/admin.php:1116
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
+
+#: mod/admin.php:1116
 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."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/settings.php:1012
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/admin.php:1117
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: 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/admin.php:1117
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/settings.php:1013
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/admin.php:1118
+msgid "Minimal Memory"
+msgstr "Minimaler Speicher"
 
-#: mod/settings.php:1013 mod/settings.php:1014
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/admin.php:1118
+msgid ""
+"Minimal free memory in MB for the poller. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert)."
 
-#: mod/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/admin.php:1119
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/settings.php:1015
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/admin.php:1119
+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/settings.php:1016
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/admin.php:1120
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/settings.php:1017
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/admin.php:1120
+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/settings.php:1018
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/admin.php:1122
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/settings.php:1019
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/admin.php:1122
+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/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/admin.php:1123
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/settings.php:1021
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/admin.php:1123
+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/settings.php:1021
+#: mod/admin.php:1124
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
+
+#: mod/admin.php:1124
 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."
+"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/settings.php:1023
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+#: mod/admin.php:1125
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/settings.php:1024
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/admin.php:1125
+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/settings.php:1025
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/admin.php:1126
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/settings.php:1026 view/theme/duepuntozero/config.php:63
-#: view/theme/frio/config.php:66 view/theme/quattro/config.php:69
-#: view/theme/vier/config.php:114
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/admin.php:1126
+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/settings.php:1110
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/admin.php:1128
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/settings.php:1111
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/admin.php:1128
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
 
-#: mod/settings.php:1112
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/admin.php:1130
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/settings.php:1119
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/admin.php:1130
+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/settings.php:1120
-msgid "This account is a regular personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/admin.php:1131
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/settings.php:1123
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/admin.php:1131
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
 
-#: mod/settings.php:1124
-msgid "This account is a profile for an organisation"
-msgstr "Diese Konto ist ein Profil für eine Organisation"
+#: mod/admin.php:1132
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/settings.php:1127
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/admin.php:1132
+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/settings.php:1128
-msgid "This account is a news account/reflector"
-msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
+#: mod/admin.php:1133
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/settings.php:1131
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+#: mod/admin.php:1133
+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/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/admin.php:1134
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/settings.php:1135
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/admin.php:1134
+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/settings.php:1136
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: mod/admin.php:1135
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/settings.php:1139
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: mod/admin.php:1135
+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/settings.php:1140
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: mod/admin.php:1136
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/settings.php:1143
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
+#: mod/admin.php:1136
+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/settings.php:1144
-msgid "Automatically approve all contact requests"
-msgstr "Bestätige alle Kontaktanfragen automatisch"
+#: mod/admin.php:1137
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/settings.php:1147
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: mod/admin.php:1137
+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/settings.php:1148
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: mod/admin.php:1139
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/settings.php:1151
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/admin.php:1139
+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/settings.php:1152
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: mod/admin.php:1141
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
 
-#: mod/settings.php:1163
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:1141
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: 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/admin.php:1143
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: 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/admin.php:1143
+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/settings.php:1171
-msgid "Your profile may be visible in public."
-msgstr "Dein Profil könnte öffentlich abrufbar sein."
+#: mod/admin.php:1144
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: 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/admin.php:1144
+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/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/admin.php:1145
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
 
-#: mod/settings.php:1188
+#: mod/admin.php:1145
 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"
+"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/settings.php:1193
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/admin.php:1146
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
 
-#: mod/settings.php:1198
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/admin.php:1146
+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/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/admin.php:1176
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/settings.php:1208
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/admin.php:1184
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/settings.php:1216
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/admin.php:1187
+#, 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/settings.php:1224
+#: mod/admin.php:1201
 #, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/settings.php:1231
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/admin.php:1204
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: 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/admin.php:1207
+#, 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/settings.php:1232
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/admin.php:1210
+#, 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/settings.php:1233
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/admin.php:1230
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/settings.php:1234
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/admin.php:1231
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/settings.php:1235
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/admin.php:1236
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: mod/settings.php:1236
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/admin.php:1237
+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/settings.php:1237
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/admin.php:1238
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/settings.php:1238
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/admin.php:1239
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/settings.php:1269
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/admin.php:1273
+#, 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/settings.php:1277
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/admin.php:1276
+#, 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/settings.php:1279
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
+#: mod/admin.php:1320
+#, 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/settings.php:1280
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/admin.php:1327
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: 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/admin.php:1374
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/settings.php:1281
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/settings.php:1285
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/admin.php:1382
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/settings.php:1287
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/settings.php:1288
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/settings.php:1289
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/admin.php:1490 mod/admin.php:1516
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: 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/admin.php:1499
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
+
+#: mod/admin.php:1500
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/settings.php:1290
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: mod/admin.php:1501
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/settings.php:1291
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/admin.php:1502
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/settings.php:1294
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/admin.php:1503
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/settings.php:1296
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/admin.php:1504
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/settings.php:1296 mod/settings.php:1326
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/admin.php:1505
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/settings.php:1297
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/admin.php:1507
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/settings.php:1298
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: mod/admin.php:1511
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/settings.php:1309
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/admin.php:1512
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/settings.php:1310
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/admin.php:1515
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/settings.php:1314
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/admin.php:1516
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/settings.php:1326
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/admin.php:1521
+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/settings.php:1329
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/admin.php:1522
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/settings.php:1330
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/admin.php:1532
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/settings.php:1331
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/admin.php:1533
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/settings.php:1332
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/admin.php:1533
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: 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/admin.php:1534
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/settings.php:1334
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/admin.php:1577
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/settings.php:1335
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/admin.php:1581
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/settings.php:1336
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/admin.php:1592 mod/admin.php:1844
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/settings.php:1337
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/admin.php:1594 mod/admin.php:1846
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/settings.php:1338
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/admin.php:1617 mod/admin.php:1893
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/settings.php:1339
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/admin.php:1625 mod/admin.php:1902
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/settings.php:1340
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/admin.php:1626 mod/admin.php:1903
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/settings.php:1341
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/admin.php:1681
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
 
-#: mod/settings.php:1342
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/admin.php:1686
+#, 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/settings.php:1344
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1805
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/settings.php:1344
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/admin.php:1884
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/settings.php:1346
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/admin.php:1944
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: 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/admin.php:1949
+#, 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/settings.php:1350
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/admin.php:1950
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/settings.php:1351
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/admin.php:1951
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/settings.php:1354
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/admin.php:1975
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: 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/admin.php:2007
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/settings.php:1356
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/admin.php:2009
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/uexport.php:37
-msgid "Export account"
-msgstr "Account exportieren"
+#: mod/admin.php:2018
+msgid "Clear"
+msgstr "löschen"
 
-#: 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/admin.php:2023
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/uexport.php:38
-msgid "Export all"
-msgstr "Alles exportieren"
+#: mod/admin.php:2024
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: mod/uexport.php:38
+#: mod/admin.php:2024
 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)."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/videos.php:124
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: mod/admin.php:2025
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/videos.php:129
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: mod/admin.php:2028
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
 
-#: mod/videos.php:208
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: mod/admin.php:2029
+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/videos.php:402
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: mod/admin.php:2160
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/videos.php:404
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: mod/admin.php:2168
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
 #: object/Item.php:359
 msgid "via"
@@ -8897,55 +8914,55 @@ msgstr "Lokales Verzeichnis"
 msgid "Quick Start"
 msgstr "Schnell-Start"
 
-#: boot.php:984
+#: index.php:433
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
+
+#: boot.php:999
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: boot.php:986
+#: boot.php:1001
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:1671
+#: boot.php:1729
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:1785
+#: boot.php:1843
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:1813
+#: boot.php:1871
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:1814
+#: boot.php:1872
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:1817
+#: boot.php:1875
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:1823
+#: boot.php:1881
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:1826
+#: boot.php:1884
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:1827
+#: boot.php:1885
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:1829
+#: boot.php:1887
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:1830
+#: boot.php:1888
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
-
-#: index.php:433
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
index 0714bd95af5a39e3a330367fbeb8e200a6ab919a..31e283643f27ee9ae88da7f98ebc9c769694426b 100644 (file)
@@ -390,16 +390,6 @@ $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["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
-$a->strings[": Database update"] = ": Datenbank Update";
-$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
-$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
 $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
 $a->strings["Thank You,"] = "Danke,";
 $a->strings["%s Administrator"] = "der Administrator von %s";
@@ -631,20 +621,54 @@ $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["view full size"] = "Volle Größe anzeigen";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$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["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ändern der Datenbank aufgetreten";
+$a->strings[": Database update"] = ": Datenbank Update";
+$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
 $a->strings["[Name Withheld]"] = "[Name unterdrückt]";
 $a->strings["Item not found."] = "Beitrag nicht gefunden.";
 $a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
 $a->strings["Yes"] = "Ja";
 $a->strings["Permission denied."] = "Zugriff verweigert.";
 $a->strings["Archives"] = "Archiv";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["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["Contact Photos"] = "Kontaktbilder";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["first"] = "erste";
@@ -704,30 +728,6 @@ $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["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:";
@@ -1098,416 +1098,117 @@ $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["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
-$a->strings["Server Blocklist"] = "Server Blockliste";
-$a->strings["Federation Statistics"] = "Federation Statistik";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["View Logs"] = "Protokolle anzeigen";
-$a->strings["probe address"] = "Adresse untersuchen";
-$a->strings["check webfinger"] = "Webfinger überprüfen";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["diagnostics"] = "Diagnose";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
-$a->strings["The blocked domain"] = "Die blockierte Domain";
+$a->strings["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["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["Not available."] = "Nicht verfügbar.";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$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["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["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["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$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["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
+$a->strings["Event removed"] = "Veranstaltung enfternt";
+$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["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
 $a->strings["Reason for the block"] = "Begründung für die Blockierung";
-$a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
-$a->strings["Delete domain"] = "Domain löschen";
-$a->strings["Administration"] = "Administration";
-$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben.";
-$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können.";
-$a->strings["Add new entry to block list"] = "Neuen Eintrag in die Blockliste";
-$a->strings["Server Domain"] = "Domain des Servers";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!";
-$a->strings["Block reason"] = "Begründung der Blockierung";
-$a->strings["Add Entry"] = "Eintrag hinzufügen";
-$a->strings["Save changes to the blocklist"] = "Änderungen der Blockliste speichern";
-$a->strings["Current Entries in the Blocklist"] = "Aktuelle Einträge der Blockliste";
-$a->strings["Delete entry from blocklist"] = "Eintrag von der Blockliste entfernen";
-$a->strings["Delete entry from blocklist?"] = "Eintrag von der Blockliste entfernen?";
-$a->strings["Server added to blocklist."] = "Server zur Blockliste hinzugefügt.";
-$a->strings["Site blocklist updated."] = "Blockliste aktualisiert.";
-$a->strings["unknown"] = "Unbekannt";
-$a->strings["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."] = "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.";
-$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
-$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:";
-$a->strings["ID"] = "ID";
-$a->strings["Recipient Name"] = "Empfänger Name";
-$a->strings["Recipient Profile"] = "Empfänger Profil";
-$a->strings["Created"] = "Erstellt";
-$a->strings["Last Tried"] = "Zuletzt versucht";
-$a->strings["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."] = "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.";
-$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
-$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "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.";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Soapbox Account"] = "Marktschreier-Konto";
-$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
-$a->strings["Blog Account"] = "Blog-Konto";
-$a->strings["Private Forum"] = "Privates Forum";
-$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
-$a->strings["Summary"] = "Zusammenfassung";
-$a->strings["Registered users"] = "Registrierte Nutzer";
-$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
-$a->strings["Version"] = "Version";
-$a->strings["Active plugins"] = "Aktive Plugins";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
-$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
-$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["At post arrival"] = "Beim Empfang von Nachrichten";
-$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
-$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
-$a->strings["One month"] = "ein Monat";
-$a->strings["Three months"] = "drei Monate";
-$a->strings["Half a year"] = "ein halbes Jahr";
-$a->strings["One year"] = "ein Jahr";
-$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
-$a->strings["Closed"] = "Geschlossen";
-$a->strings["Requires approval"] = "Bedarf der Zustimmung";
-$a->strings["Open"] = "Offen";
-$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
-$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["File upload"] = "Datei hochladen";
-$a->strings["Policies"] = "Regeln";
-$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
-$a->strings["Performance"] = "Performance";
-$a->strings["Worker"] = "Worker";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
-$a->strings["Site name"] = "Seitenname";
-$a->strings["Host name"] = "Host Name";
-$a->strings["Sender Email"] = "Absender für Emails";
-$a->strings["The email address your server shall use to send notification emails from."] = "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll.";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "Shortcut Icon";
-$a->strings["Link to an icon that will be used for browsers."] = "Link zu einem Icon, das Browser verwenden werden.";
-$a->strings["Touch icon"] = "Touch Icon";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link zu einem Icon das Tablets und Handies verwenden sollen.";
-$a->strings["Additional Info"] = "Zusätzliche Informationen";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden.";
-$a->strings["System language"] = "Systemsprache";
-$a->strings["System theme"] = "Systemweites Theme";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
-$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
-$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
-$a->strings["SSL link policy"] = "Regeln für SSL Links";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
-$a->strings["Force SSL"] = "Erzwinge SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
-$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
-$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
-$a->strings["Maximum image size"] = "Maximale Bildgröße";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
-$a->strings["Maximum image length"] = "Maximale Bildlänge";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
-$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
-$a->strings["Register policy"] = "Registrierungsmethode";
-$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
-$a->strings["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."] = "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.";
-$a->strings["Register text"] = "Registrierungstext";
-$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
-$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
-$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
-$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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.";
-$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
-$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
-$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.";
-$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
-$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
-$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
-$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
-$a->strings["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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
-$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
-$a->strings["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."] = "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.";
-$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
-$a->strings["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."] = "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.";
-$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
-$a->strings["OpenID support"] = "OpenID Unterstützung";
-$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
-$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
-$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
-$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
-$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
-$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
-$a->strings["Only import OStatus threads from our contacts"] = "Nur OStatus Konversationen unserer Kontakte importieren";
-$a->strings["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."] = "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.";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. ";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist.";
-$a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
-$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
-$a->strings["Verify SSL"] = "SSL Überprüfen";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
-$a->strings["Proxy user"] = "Proxy Nutzer";
-$a->strings["Proxy URL"] = "Proxy URL";
-$a->strings["Network timeout"] = "Netzwerk Wartezeit";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
-$a->strings["Maximum Load Average"] = "Maximum Load Average";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
-$a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50.";
-$a->strings["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein.";
-$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%";
-$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "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.";
-$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll.";
-$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken";
-$a->strings["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'."] = "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'.";
-$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte";
-$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "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.";
-$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen";
-$a->strings["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."] = "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.";
-$a->strings["Publish server information"] = "Server Informationen veröffentlichen";
-$a->strings["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."] = "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.";
-$a->strings["Suppress Tags"] = "Tags Unterdrücken";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
-$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
-$a->strings["The item caches buffers generated bbcode and external images."] = "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert.";
-$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
-$a->strings["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."] = "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.";
-$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
-$a->strings["Temp path"] = "Temp Pfad";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "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.";
-$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
-$a->strings["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."] = "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.";
-$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "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.";
-$a->strings["Only search in tags"] = "Nur in Tags suchen";
-$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
-$a->strings["New base url"] = "Neue Basis-URL";
-$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen.";
-$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
-$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
-$a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel laufender Worker";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "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.";
-$a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit den Workern verwenden";
-$a->strings["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."] = "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.";
-$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "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.";
-$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
-$a->strings["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."] = "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.";
-$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
-$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
-$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
-$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
-$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
-$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
-$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
-$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
-$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["Account"] = "Nutzerkonto";
-$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["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Lock feature %s"] = "Feature festlegen: %s";
-$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
-$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["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["Not available."] = "Nicht verfügbar.";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$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["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["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["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$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["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
-$a->strings["Event removed"] = "Veranstaltung enfternt";
-$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["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps:";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
 $a->strings["Group created."] = "Gruppe erstellt.";
 $a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
 $a->strings["Group not found."] = "Gruppe nicht gefunden.";
@@ -1522,85 +1223,6 @@ $a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
 $a->strings["Members"] = "Mitglieder";
 $a->strings["Remove Contact"] = "Kontakt löschen";
 $a->strings["Add Contact"] = "Kontakt hinzufügen";
-$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["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: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
-$a->strings["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["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: ";
@@ -1641,31 +1263,6 @@ $a->strings["Shared Links"] = "Geteilte Links";
 $a->strings["Interesting Links"] = "Interessante Links";
 $a->strings["Starred"] = "Markierte";
 $a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["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["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["Recent Photos"] = "Neueste Fotos";
@@ -1714,9 +1311,6 @@ $a->strings["Private photo"] = "Privates Foto";
 $a->strings["Public photo"] = "Öffentliches Foto";
 $a->strings["Map"] = "Karte";
 $a->strings["View Album"] = "Album betrachten";
-$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["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
 $a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
 $a->strings["Profile deleted."] = "Profil gelöscht.";
@@ -1805,6 +1399,7 @@ $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:";
@@ -1817,8 +1412,11 @@ $a->strings["Only logged in users are permitted to perform a search."] = "Nur ei
 $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["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";
@@ -1840,6 +1438,7 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
 $a->strings["Settings updated."] = "Einstellungen aktualisiert.";
 $a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Save Settings"] = "Einstellungen speichern";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Umleiten";
@@ -1851,6 +1450,8 @@ $a->strings["No name"] = "Kein Name";
 $a->strings["Remove authorization"] = "Autorisierung entziehen";
 $a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
 $a->strings["Plugin Settings"] = "Plugin-Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
 $a->strings["Additional Features"] = "Zusätzliche Features";
 $a->strings["General Social Media Settings"] = "Allgemeine Einstellungen zu Sozialen Medien";
 $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen ausschalten";
@@ -1880,6 +1481,7 @@ $a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Be
 $a->strings["Action after import:"] = "Aktion nach Import:";
 $a->strings["Move to folder"] = "In einen Ordner verschieben";
 $a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
 $a->strings["Display Settings"] = "Anzeige-Einstellungen";
 $a->strings["Display Theme:"] = "Theme:";
 $a->strings["Mobile Theme:"] = "Mobiles Theme";
@@ -1999,6 +1601,408 @@ $a->strings["Delete Video"] = "Video Löschen";
 $a->strings["No videos selected"] = "Keine Videos  ausgewählt";
 $a->strings["Recent Videos"] = "Neueste Videos";
 $a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["For security reasons the password must not be empty"] = "Aus Sicherheitsgründen darf das Passwort nicht leer sein.";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["System Language:"] = "Systemsprache:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn auf deinem Server keine Kommandozeilenversion von PHP installiert ist, kannst du den Hintergrundprozess nicht einrichten. Hier findest du alternative Möglichkeiten<a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'für das Poller Setup'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["PDO or MySQLi PHP module"] = "PDO oder MySQLi PHP Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["XML PHP module"] = "XML PHP Modul";
+$a->strings["iconv module"] = "iconv module";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Fehler: der MySQL Treiber für PDO ist nicht installiert";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagicx PHP Erweiterung ist nicht installiert.";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["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["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["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?"] = "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["{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["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
+$a->strings["Server Blocklist"] = "Server Blockliste";
+$a->strings["Federation Statistics"] = "Federation Statistik";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["View Logs"] = "Protokolle anzeigen";
+$a->strings["probe address"] = "Adresse untersuchen";
+$a->strings["check webfinger"] = "Webfinger überprüfen";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["diagnostics"] = "Diagnose";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
+$a->strings["The blocked domain"] = "Die blockierte Domain";
+$a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
+$a->strings["Delete domain"] = "Domain löschen";
+$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen";
+$a->strings["Administration"] = "Administration";
+$a->strings["This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server."] = "Auf dieser Seite kannst du die Liste der blockierten Domains aus dem föderalen Netzwerk verwalten, denen es untersagt ist mit deinem Knoten zu interagieren. Für jede der blockierten Domains musst du außerdem einen Grund für die Sperrung angeben.";
+$a->strings["The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "Die Liste der blockierten Domains wird auf der /friendica Seite öffentlich einsehbar gemacht, damit deine Nutzer und Personen die Kommunikationsprobleme erkunden, die Ursachen einfach finden können.";
+$a->strings["Add new entry to block list"] = "Neuen Eintrag in die Blockliste";
+$a->strings["Server Domain"] = "Domain des Servers";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "Der Domain-Name des Servers der geblockt werden soll. Gib das Protokoll nicht mit an!";
+$a->strings["Block reason"] = "Begründung der Blockierung";
+$a->strings["Add Entry"] = "Eintrag hinzufügen";
+$a->strings["Save changes to the blocklist"] = "Änderungen der Blockliste speichern";
+$a->strings["Current Entries in the Blocklist"] = "Aktuelle Einträge der Blockliste";
+$a->strings["Delete entry from blocklist"] = "Eintrag von der Blockliste entfernen";
+$a->strings["Delete entry from blocklist?"] = "Eintrag von der Blockliste entfernen?";
+$a->strings["Server added to blocklist."] = "Server zur Blockliste hinzugefügt.";
+$a->strings["Site blocklist updated."] = "Blockliste aktualisiert.";
+$a->strings["unknown"] = "Unbekannt";
+$a->strings["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."] = "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.";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
+$a->strings["Currently this node is aware of %d nodes from the following platforms:"] = "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:";
+$a->strings["ID"] = "ID";
+$a->strings["Recipient Name"] = "Empfänger Name";
+$a->strings["Recipient Profile"] = "Empfänger Profil";
+$a->strings["Created"] = "Erstellt";
+$a->strings["Last Tried"] = "Zuletzt versucht";
+$a->strings["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."] = "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.";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php include/dbstructure.php toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du  <a href=\"%s\">hier</a>  finden. Du kannst außerdem mit dem Befehl <tt>php include/dbstructure.php toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "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.";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Soapbox Account"] = "Marktschreier-Konto";
+$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
+$a->strings["Blog Account"] = "Blog-Konto";
+$a->strings["Private Forum"] = "Privates Forum";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
+$a->strings["Summary"] = "Zusammenfassung";
+$a->strings["Registered users"] = "Registrierte Nutzer";
+$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Aktive Plugins";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
+$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["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
+$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
+$a->strings["One month"] = "ein Monat";
+$a->strings["Three months"] = "drei Monate";
+$a->strings["Half a year"] = "ein halbes Jahr";
+$a->strings["One year"] = "ein Jahr";
+$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
+$a->strings["Closed"] = "Geschlossen";
+$a->strings["Requires approval"] = "Bedarf der Zustimmung";
+$a->strings["Open"] = "Offen";
+$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
+$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["File upload"] = "Datei hochladen";
+$a->strings["Policies"] = "Regeln";
+$a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverzeichnis erstellen";
+$a->strings["Performance"] = "Performance";
+$a->strings["Worker"] = "Worker";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
+$a->strings["Site name"] = "Seitenname";
+$a->strings["Host name"] = "Host Name";
+$a->strings["Sender Email"] = "Absender für Emails";
+$a->strings["The email address your server shall use to send notification emails from."] = "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll.";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "Shortcut Icon";
+$a->strings["Link to an icon that will be used for browsers."] = "Link zu einem Icon, das Browser verwenden werden.";
+$a->strings["Touch icon"] = "Touch Icon";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Link zu einem Icon das Tablets und Handies verwenden sollen.";
+$a->strings["Additional Info"] = "Zusätzliche Informationen";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden.";
+$a->strings["System language"] = "Systemsprache";
+$a->strings["System theme"] = "Systemweites Theme";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
+$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
+$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
+$a->strings["SSL link policy"] = "Regeln für SSL Links";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
+$a->strings["Force SSL"] = "Erzwinge SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
+$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
+$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
+$a->strings["Maximum image size"] = "Maximale Bildgröße";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
+$a->strings["Maximum image length"] = "Maximale Bildlänge";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
+$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
+$a->strings["Register policy"] = "Registrierungsmethode";
+$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
+$a->strings["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."] = "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.";
+$a->strings["Register text"] = "Registrierungstext";
+$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
+$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
+$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
+$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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.";
+$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
+$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar.";
+$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
+$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
+$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
+$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
+$a->strings["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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
+$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
+$a->strings["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."] = "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.";
+$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
+$a->strings["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."] = "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.";
+$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
+$a->strings["OpenID support"] = "OpenID Unterstützung";
+$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
+$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
+$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
+$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
+$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
+$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
+$a->strings["Only import OStatus threads from our contacts"] = "Nur OStatus Konversationen unserer Kontakte importieren";
+$a->strings["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."] = "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.";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. ";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist.";
+$a->strings["Enable Diaspora support"] = "Diaspora Unterstützung aktivieren";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
+$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
+$a->strings["Verify SSL"] = "SSL Überprüfen";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
+$a->strings["Proxy user"] = "Proxy Nutzer";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Netzwerk Wartezeit";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
+$a->strings["Maximum Load Average"] = "Maximum Load Average";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
+$a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50.";
+$a->strings["Minimal Memory"] = "Minimaler Speicher";
+$a->strings["Minimal free memory in MB for the poller. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Poller. Benötigt Zugriff auf /proc/meminfo - Standard 0 (Deaktiviert).";
+$a->strings["Maximum table size for optimization"] = "Maximale Tabellengröße zur Optimierung";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein.";
+$a->strings["Minimum level of fragmentation"] = "Minimaler Fragmentationsgrad";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%";
+$a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "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.";
+$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll.";
+$a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken";
+$a->strings["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'."] = "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'.";
+$a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte";
+$a->strings["When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers."] = "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.";
+$a->strings["Search the local directory"] = "Lokales Verzeichnis durchsuchen";
+$a->strings["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."] = "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.";
+$a->strings["Publish server information"] = "Server Informationen veröffentlichen";
+$a->strings["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."] = "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.";
+$a->strings["Suppress Tags"] = "Tags Unterdrücken";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
+$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
+$a->strings["The item caches buffers generated bbcode and external images."] = "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert.";
+$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
+$a->strings["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."] = "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.";
+$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
+$a->strings["Temp path"] = "Temp Pfad";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "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.";
+$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
+$a->strings["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."] = "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.";
+$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "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.";
+$a->strings["Only search in tags"] = "Nur in Tags suchen";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
+$a->strings["New base url"] = "Neue Basis-URL";
+$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen.";
+$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
+$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
+$a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel laufender Worker";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "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.";
+$a->strings["Don't use 'proc_open' with the worker"] = "'proc_open' nicht mit den Workern verwenden";
+$a->strings["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."] = "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.";
+$a->strings["Enable fastlane"] = "Aktiviere Fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "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.";
+$a->strings["Enable frontend worker"] = "Aktiviere den Frontend Worker";
+$a->strings["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."] = "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.";
+$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
+$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
+$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
+$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
+$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
+$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
+$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
+$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
+$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["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["via"] = "via";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
@@ -2043,6 +2047,7 @@ $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["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.";
@@ -2055,4 +2060,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";
diff --git a/view/theme/frio/templates/admin_aside.tpl b/view/theme/frio/templates/admin_aside.tpl
new file mode 100644 (file)
index 0000000..2ef95fa
--- /dev/null
@@ -0,0 +1,86 @@
+<script>
+       // update pending count //
+       $(function(){
+               $("nav").bind('nav-update', function(e,data){
+                       var elm = $('#pending-update');
+                       var register = $(data).find('register').text();
+                       if (register=="0") { register = ""; }
+                       elm.html(register);
+               });
+       });
+</script>
+
+<div class="widget">
+       <h3><a href="{{$admurl}}">{{$admtxt}}</a></h3>
+
+       <ul role="menu">
+               {{foreach $subpages as $name => $item}}
+               <li role="menuitem" class="{{$item.2}}">
+                       <a href="{{$item.0}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}}>
+                               {{$item.1}}
+                               {{if $name == "users"}}
+                                <span id="pending-update" class="badge pull-right"></span>
+                               {{/if}}
+                       </a>
+               </li>
+               {{/foreach}}
+       </ul>
+
+       {{if $admin.update}}
+       <ul role="menu">
+               <li role="menuitem" class="{{$admin.update.2}}">
+                       <a href="{{$admin.update.0}}" {{if $admin.update.accesskey}}accesskey="{{$admin.update.accesskey}}"{{/if}}>
+                               {{$admin.update.1}}
+                       </a>
+               </li>
+       </ul>
+       {{/if}}
+</div>
+
+{{if $admin.plugins_admin}}
+<div class="widget">
+       <h3>{{$plugadmtxt}}</h3>
+       <ul role="menu">
+               {{foreach $admin.plugins_admin as $name => $item}}
+               <li role="menuitem" class="{{$item.2}}">
+                       <a href="{{$item.0}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}}>
+                               {{$item.1}}
+                       </a>
+               </li>
+               {{/foreach}}
+       </ul>
+</div>
+{{/if}}
+
+<div class="widget">
+       <h3>{{$logtxt}}</h3>
+       <ul role="menu">
+               <li role="menuitem" class="{{$admin.logs.2}}">
+                       <a href="{{$admin.logs.0}}" {{if $admin.logs.accesskey}}accesskey="{{$admin.logs.accesskey}}"{{/if}}>
+                               {{$admin.logs.1}}
+                       </a>
+               </li>
+               <li role="menuitem" class="{{$admin.viewlogs.2}}">
+                       <a href="{{$admin.viewlogs.0}}" {{if $admin.viewlogs.accesskey}}accesskey="{{$admin.viewlogs.accesskey}}"{{/if}}>
+                               {{$admin.viewlogs.1}}
+                       </a>
+               </li>
+       </ul>
+</div>
+
+<div class="widget">
+       <h3>{{$diagnosticstxt}}</h3>
+       <ul role="menu">
+               <li role="menuitem" class="{{$admin.diagnostics_probe.2}}">
+                       <a href="{{$admin.diagnostics_probe.0}}" {{if $admin.diagnostics_probe.accesskey}}accesskey="{{$admin.diagnostics_probe.accesskey}}"{{/if}}>
+                               {{$admin.diagnostics_probe.1}}
+                       </a>
+               </li>
+               <li role="menuitem" class="{{$admin.diagnostics_webfinger.2}}">
+                       <a href="{{$admin.diagnostics_webfinger.0}}" {{if $admin.viewlogs.accesskey}}accesskey="{{$admin.diagnostics_webfinger.accesskey}}"{{/if}}>
+                               {{$admin.diagnostics_webfinger.1}}
+                       </a>
+               </li>
+       </ul>
+</div>
+
diff --git a/view/theme/frio/templates/generic_links_widget.tpl b/view/theme/frio/templates/generic_links_widget.tpl
new file mode 100644 (file)
index 0000000..5510eae
--- /dev/null
@@ -0,0 +1,12 @@
+
+<div class="widget{{if $class}} {{$class}}{{/if}}">
+       {{if $title}}<h3>{{$title}}</h3>{{/if}}
+       {{if $desc}}<div class="desc">{{$desc}}</div>{{/if}}
+
+       <ul role="menu">
+               {{foreach $items as $item}}
+                       <li role="menuitem" class="{{if $item.selected}}selected{{/if}}"><a href="{{$item.url}}" {{if $item.accesskey}}accesskey="{{$item.accesskey}}"{{/if}}>{{$item.label}}</a></li>
+               {{/foreach}}
+       </ul>
+
+</div>