]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #4912 from annando/archivecontacts
authorHypolite Petovan <mrpetovan@gmail.com>
Mon, 23 Apr 2018 06:07:53 +0000 (02:07 -0400)
committerGitHub <noreply@github.com>
Mon, 23 Apr 2018 06:07:53 +0000 (02:07 -0400)
Added console command to manually archive contacts

21 files changed:
.travis.yml
include/dba.php
include/text.php
mod/babel.php
mod/friendica.php
src/Content/Text/BBCode.php
src/Model/Item.php
src/Model/ItemContent.php [new file with mode: 0644]
src/Model/Profile.php
src/Object/Post.php
src/Util/Temporal.php
view/lang/de/messages.po
view/lang/de/strings.php
view/lang/fi-fi/messages.po
view/lang/fi-fi/strings.php
view/templates/wall/content_filter.tpl [new file with mode: 0644]
view/theme/frio/css/mod_admin.css
view/theme/frio/css/style.css
view/theme/frio/js/mod_admin.js
view/theme/frio/templates/admin/contactblock.tpl
view/theme/frio/templates/admin/users.tpl

index fe436c5ddda1ff6b5f5ea211b539f1c48c232992..d68b7727e893648344978d94f4ff378589a62e15 100644 (file)
@@ -2,9 +2,9 @@
 language: php
 ## Friendica supports PHP version >= 5.6
 php:
      - 5.6
      - 7.0
      - 7.1
      - 7.2
+ - 5.6
+ - 7.0
+ - 7.1
+ - 7.2
 
 install: composer install
index bac61ec2f519160d06d026e84d485abc94d0811d..d2f631c0640d84e936b5466ca4373e5e5f029ebe 100644 (file)
@@ -971,7 +971,7 @@ class dba {
                                        // Split the SQL queries in chunks of 100 values
                                        // We do the $i stuff here to make the code better readable
                                        $i = $counter[$key_table][$key_condition];
-                                       if (count($compacted[$key_table][$key_condition][$i]) > 100) {
+                                       if (isset($compacted[$key_table][$key_condition][$i]) && count($compacted[$key_table][$key_condition][$i]) > 100) {
                                                ++$i;
                                        }
 
index 6c09167494231dd20635681ef307ef6bb55c822c..5e189d58f14857f480d4b291e8d513a16dacc0b3 100644 (file)
@@ -1411,27 +1411,13 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
 function apply_content_filter($html, array $reasons)
 {
        if (count($reasons)) {
-               $rnd = random_string(8);
-
-               if (count($reasons) > 1) {
-                       $content_filter_html = '<ul class="content-filter-reasons">';
-                       foreach ($reasons as $reason) {
-                               $content_filter_html .= '<li>' . htmlspecialchars($reason) . '</li>' . PHP_EOL;
-                       }
-                       $content_filter_html .= '</ul>
-                               <p><button type="button" id="content-filter-wrap-' . $rnd . '" class="btn btn-default btn-small content-filter-button" onclick="openClose(\'content-filter-' . $rnd . '\');"><i class="glyphicon glyphicon-eye-open"></i> ' .
-                               L10n::t('Click to open/close') .
-                               '</button></p>';
-               } elseif (count($reasons) == 1) {
-                       $reason = array_pop($reasons);
-                       $content_filter_html .= '<p>' . htmlspecialchars($reason) . ' <button type="button" id="content-filter-wrap-' . $rnd . '" class="btn btn-default btn-xs content-filter-button" onclick="openClose(\'content-filter-' . $rnd . '\');"><i class="glyphicon glyphicon-eye-open"></i> ' .
-                               L10n::t('Click to open/close') .
-                               '</button></p>';
-               }
-
-               $content_filter_html .= '<div id="content-filter-' . $rnd . '" class="content-filter-content" style="display: none;">';
-
-               $html = $content_filter_html . $html . '</div>';
+               $tpl = get_markup_template('wall/content_filter.tpl');
+               $html = replace_macros($tpl, [
+                       '$reasons'   => $reasons,
+                       '$rnd'       => random_string(8),
+                       '$openclose' => L10n::t('Click to open/close'),
+                       '$html'      => $html
+               ]);
        }
 
        return $html;
index cafd06556b8adde32498fe28dd39c9e120e2849f..3352366bd5a78279c3e21d2b069c48c89e796c61 100644 (file)
@@ -23,6 +23,12 @@ function babel_content()
                                        'content' => visible_lf($bbcode)
                                ];
 
+                               $plain = Text\BBCode::toPlaintext($bbcode, false);
+                               $results[] = [
+                                       'title' => L10n::t('BBCode::toPlaintext'),
+                                       'content' => visible_lf($plain)
+                               ];
+
                                $html = Text\BBCode::convert($bbcode);
                                $results[] = [
                                        'title' => L10n::t("BBCode::convert \x28raw HTML\x29"),
index 6c143634caf980ae9cc430e46dfc8c53f0b380ca..1929150f27beb626ae4baad195798e807b578eb4 100644 (file)
@@ -116,14 +116,14 @@ function friendica_content(App $a)
        } else {
                $o .= '<p>' . L10n::t('No installed addons/apps') . '</p>' . PHP_EOL;
        }
-       
+
        if (Config::get('system', 'tosdisplay'))
        {
                $o .= '<p>'.L10n::t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', System::baseurl()).'</p>';
        }
 
-       $blocklist = Config::get('system', 'blocklist');
-       if (count($blocklist)) {
+       $blocklist = Config::get('system', 'blocklist', []);
+       if (!empty($blocklist)) {
                $o .= '<div id="about_blocklist"><p>' . L10n::t('On this server the following remote servers are blocked.') . '</p>' . PHP_EOL;
                $o .= '<table class="table"><thead><tr><th>' . L10n::t('Blocked domain') . '</th><th>' . L10n::t('Reason for the block') . '</th></thead><tbody>' . PHP_EOL;
                foreach ($blocklist as $b) {
index 3755593465db0687bbd642a0104fcecd998c304a..6c441bac6fb152621a948c8a98da59cee72b4020 100644 (file)
@@ -343,159 +343,20 @@ class BBCode extends BaseObject
        }
 
        /**
-        * @brief Convert a message into plaintext for connectors to other networks
+        * @brief Converts a BBCode text into plaintext
         *
-        * @param array $b The message array that is about to be posted
-        * @param int $limit The maximum number of characters when posting to that network
-        * @param bool $includedlinks Has an attached link to be included into the message?
-        * @param int $htmlmode This triggers the behaviour of the bbcode conversion
-        * @param string $target_network Name of the network where the post should go to.
+        * @param bool $keep_urls Whether to keep URLs in the resulting plaintext
         *
-        * @return string The converted message
+        * @return string
         */
-       public static function toPlaintext($b, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = "")
+       public static function toPlaintext($text, $keep_urls = true)
        {
-               // Remove the hash tags
-               $URLSearchString = "^\[\]";
-               $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $b["body"]);
-
-               // Add an URL element if the text contains a raw link
-               $body = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url]$2[/url]', $body);
-
-               // Remove the abstract
-               $body = self::stripAbstract($body);
-
-               // At first look at data that is attached via "type-..." stuff
-               // This will hopefully replaced with a dedicated bbcode later
-               //$post = self::getAttachedData($b["body"]);
-               $post = self::getAttachedData($body, $b);
-
-               if (($b["title"] != "") && ($post["text"] != "")) {
-                       $post["text"] = trim($b["title"]."\n\n".$post["text"]);
-               } elseif ($b["title"] != "") {
-                       $post["text"] = trim($b["title"]);
-               }
-
-               $abstract = "";
-
-               // Fetch the abstract from the given target network
-               if ($target_network != "") {
-                       $default_abstract = self::getAbstract($b["body"]);
-                       $abstract = self::getAbstract($b["body"], $target_network);
-
-                       // If we post to a network with no limit we only fetch
-                       // an abstract exactly for this network
-                       if (($limit == 0) && ($abstract == $default_abstract)) {
-                               $abstract = "";
-                       }
-               } else {// Try to guess the correct target network
-                       switch ($htmlmode) {
-                               case 8:
-                                       $abstract = self::getAbstract($b["body"], NETWORK_TWITTER);
-                                       break;
-                               case 7:
-                                       $abstract = self::getAbstract($b["body"], NETWORK_STATUSNET);
-                                       break;
-                               case 6:
-                                       $abstract = self::getAbstract($b["body"], NETWORK_APPNET);
-                                       break;
-                               default: // We don't know the exact target.
-                                       // We fetch an abstract since there is a posting limit.
-                                       if ($limit > 0) {
-                                               $abstract = self::getAbstract($b["body"]);
-                                       }
-                       }
-               }
-
-               if ($abstract != "") {
-                       $post["text"] = $abstract;
-
-                       if ($post["type"] == "text") {
-                               $post["type"] = "link";
-                               $post["url"] = $b["plink"];
-                       }
-               }
-
-               $html = self::convert($post["text"].$post["after"], false, $htmlmode);
-               $msg = HTML::toPlaintext($html, 0, true);
-               $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
-
-               $link = "";
-               if ($includedlinks) {
-                       if ($post["type"] == "link") {
-                               $link = $post["url"];
-                       } elseif ($post["type"] == "text") {
-                               $link = $post["url"];
-                       } elseif ($post["type"] == "video") {
-                               $link = $post["url"];
-                       } elseif ($post["type"] == "photo") {
-                               $link = $post["image"];
-                       }
-
-                       if (($msg == "") && isset($post["title"])) {
-                               $msg = trim($post["title"]);
-                       }
-
-                       if (($msg == "") && isset($post["description"])) {
-                               $msg = trim($post["description"]);
-                       }
-
-                       // If the link is already contained in the post, then it neeedn't to be added again
-                       // But: if the link is beyond the limit, then it has to be added.
-                       if (($link != "") && strstr($msg, $link)) {
-                               $pos = strpos($msg, $link);
-
-                               // Will the text be shortened in the link?
-                               // Or is the link the last item in the post?
-                               if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
-                                       $msg = trim(str_replace($link, "", $msg));
-                               } elseif (($limit == 0) || ($pos < $limit)) {
-                                       // The limit has to be increased since it will be shortened - but not now
-                                       // Only do it with Twitter (htmlmode = 8)
-                                       if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
-                                               $limit = $limit - 23 + strlen($link);
-                                       }
-
-                                       $link = "";
-
-                                       if ($post["type"] == "text") {
-                                               unset($post["url"]);
-                                       }
-                               }
-                       }
+               $naked_text = preg_replace('/\[(.+?)\]/','', $text);
+               if (!$keep_urls) {
+                       $naked_text = preg_replace('#https?\://[^\s<]+[^\s\.\)]#i', '', $naked_text);
                }
 
-               if ($limit > 0) {
-                       // Reduce multiple spaces
-                       // When posted to a network with limited space, we try to gain space where possible
-                       while (strpos($msg, "  ") !== false) {
-                               $msg = str_replace("  ", " ", $msg);
-                       }
-
-                       // Twitter is using its own limiter, so we always assume that shortened links will have this length
-                       if (iconv_strlen($link, "UTF-8") > 0) {
-                               $limit = $limit - 23;
-                       }
-
-                       if (iconv_strlen($msg, "UTF-8") > $limit) {
-                               if (($post["type"] == "text") && isset($post["url"])) {
-                                       $post["url"] = $b["plink"];
-                               } elseif (!isset($post["url"])) {
-                                       $limit = $limit - 23;
-                                       $post["url"] = $b["plink"];
-                               // Which purpose has this line? It is now uncommented, but left as a reminder
-                               //} elseif (strpos($b["body"], "[share") !== false) {
-                               //      $post["url"] = $b["plink"];
-                               } elseif (PConfig::get($b["uid"], "system", "no_intelligent_shortening")) {
-                                       $post["url"] = $b["plink"];
-                               }
-                               $msg = Plaintext::shorten($msg, $limit);
-                       }
-               }
-
-               $post["text"] = trim($msg);
-
-               return($post);
+               return $naked_text;
        }
 
        public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
@@ -1947,7 +1808,7 @@ class BBCode extends BaseObject
         * @param string $addon The addon for which the abstract is meant for
         * @return string The abstract
         */
-       private static function getAbstract($text, $addon = "")
+       public static function getAbstract($text, $addon = "")
        {
                $abstract = "";
                $abstracts = [];
index bdb85af44141e28f5bad05507af81338283ce1a0..499ec25c1ae3a65bbcfd0dc36f58d945d8eae371 100644 (file)
@@ -7,6 +7,7 @@
 namespace Friendica\Model;
 
 use Friendica\BaseObject;
+use Friendica\Content\Text;
 use Friendica\Core\Addon;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
@@ -977,35 +978,35 @@ class Item extends BaseObject
         * if possible and not already present.
         * Expects "body" element to exist in $arr.
         */
-       private static function addLanguageInPostopts(&$arr)
+       private static function addLanguageInPostopts(&$item)
        {
-               if (x($arr, 'postopts')) {
-                       if (strstr($arr['postopts'], 'lang=')) {
+               if (!empty($item['postopts'])) {
+                       if (strstr($item['postopts'], 'lang=')) {
                                // do not override
                                return;
                        }
-                       $postopts = $arr['postopts'];
+                       $postopts = $item['postopts'];
                } else {
                        $postopts = "";
                }
 
-               $naked_body = preg_replace('/\[(.+?)\]/','', $arr['body']);
-               $l = new Text_LanguageDetect();
-               $lng = $l->detect($naked_body, 3);
+               $naked_body = Text\BBCode::toPlaintext($item['body'], false);
 
-               if (sizeof($lng) > 0) {
-                       if ($postopts != "") {
+               $languages = (new Text_LanguageDetect())->detect($naked_body, 3);
+
+               if (sizeof($languages) > 0) {
+                       if ($postopts != '') {
                                $postopts .= '&'; // arbitrary separator, to be reviewed
                        }
 
                        $postopts .= 'lang=';
                        $sep = "";
 
-                       foreach ($lng as $language => $score) {
+                       foreach ($languages as $language => $score) {
                                $postopts .= $sep . $language . ";" . $score;
                                $sep = ':';
                        }
-                       $arr['postopts'] = $postopts;
+                       $item['postopts'] = $postopts;
                }
        }
 
diff --git a/src/Model/ItemContent.php b/src/Model/ItemContent.php
new file mode 100644 (file)
index 0000000..21dbd34
--- /dev/null
@@ -0,0 +1,176 @@
+<?php
+
+/**
+ * @file src/Model/ItemContent.php
+ */
+
+namespace Friendica\Model;
+
+use Friendica\BaseObject;
+use Friendica\Content\Text;
+use Friendica\Core\PConfig;
+
+require_once 'boot.php';
+require_once 'include/items.php';
+require_once 'include/text.php';
+
+class ItemContent extends BaseObject
+{
+       /**
+        * @brief Convert a message into plaintext for connectors to other networks
+        *
+        * @param array  $item           The message array that is about to be posted
+        * @param int    $limit          The maximum number of characters when posting to that network
+        * @param bool   $includedlinks  Has an attached link to be included into the message?
+        * @param int    $htmlmode       This controls the behavior of the BBCode conversion
+        * @param string $target_network Name of the network where the post should go to.
+        *
+        * @see \Friendica\Content\Text\BBCode::getAttachedData
+        *
+        * @return array Same array structure than \Friendica\Content\Text\BBCode::getAttachedData
+        */
+       public static function getPlaintextPost($item, $limit = 0, $includedlinks = false, $htmlmode = 2, $target_network = '')
+       {
+               // Remove hashtags
+               $URLSearchString = '^\[\]';
+               $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $item['body']);
+
+               // Add an URL element if the text contains a raw link
+               $body = preg_replace('/([^\]\=\'"]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism',
+                       '$1[url]$2[/url]', $body);
+
+               // Remove the abstract
+               $body = Text\BBCode::stripAbstract($body);
+
+               // At first look at data that is attached via "type-..." stuff
+               // This will hopefully replaced with a dedicated bbcode later
+               //$post = self::getAttachedData($b['body']);
+               $post = Text\BBCode::getAttachedData($body, $item);
+
+               if (($item['title'] != '') && ($post['text'] != '')) {
+                       $post['text'] = trim($item['title'] . "\n\n" . $post['text']);
+               } elseif ($item['title'] != '') {
+                       $post['text'] = trim($item['title']);
+               }
+
+               $abstract = '';
+
+               // Fetch the abstract from the given target network
+               if ($target_network != '') {
+                       $default_abstract = Text\BBCode::getAbstract($item['body']);
+                       $abstract = Text\BBCode::getAbstract($item['body'], $target_network);
+
+                       // If we post to a network with no limit we only fetch
+                       // an abstract exactly for this network
+                       if (($limit == 0) && ($abstract == $default_abstract)) {
+                               $abstract = '';
+                       }
+               } else {// Try to guess the correct target network
+                       switch ($htmlmode) {
+                               case 8:
+                                       $abstract = Text\BBCode::getAbstract($item['body'], NETWORK_TWITTER);
+                                       break;
+                               case 7:
+                                       $abstract = Text\BBCode::getAbstract($item['body'], NETWORK_STATUSNET);
+                                       break;
+                               case 6:
+                                       $abstract = Text\BBCode::getAbstract($item['body'], NETWORK_APPNET);
+                                       break;
+                               default: // We don't know the exact target.
+                                       // We fetch an abstract since there is a posting limit.
+                                       if ($limit > 0) {
+                                               $abstract = Text\BBCode::getAbstract($item['body']);
+                                       }
+                       }
+               }
+
+               if ($abstract != '') {
+                       $post['text'] = $abstract;
+
+                       if ($post['type'] == 'text') {
+                               $post['type'] = 'link';
+                               $post['url'] = $item['plink'];
+                       }
+               }
+
+               $html = Text\BBCode::convert($post['text'] . $post['after'], false, $htmlmode);
+               $msg = Text\HTML::toPlaintext($html, 0, true);
+               $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
+
+               $link = '';
+               if ($includedlinks) {
+                       if ($post['type'] == 'link') {
+                               $link = $post['url'];
+                       } elseif ($post['type'] == 'text') {
+                               $link = $post['url'];
+                       } elseif ($post['type'] == 'video') {
+                               $link = $post['url'];
+                       } elseif ($post['type'] == 'photo') {
+                               $link = $post['image'];
+                       }
+
+                       if (($msg == '') && isset($post['title'])) {
+                               $msg = trim($post['title']);
+                       }
+
+                       if (($msg == '') && isset($post['description'])) {
+                               $msg = trim($post['description']);
+                       }
+
+                       // If the link is already contained in the post, then it neeedn't to be added again
+                       // But: if the link is beyond the limit, then it has to be added.
+                       if (($link != '') && strstr($msg, $link)) {
+                               $pos = strpos($msg, $link);
+
+                               // Will the text be shortened in the link?
+                               // Or is the link the last item in the post?
+                               if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
+                                       $msg = trim(str_replace($link, '', $msg));
+                               } elseif (($limit == 0) || ($pos < $limit)) {
+                                       // The limit has to be increased since it will be shortened - but not now
+                                       // Only do it with Twitter (htmlmode = 8)
+                                       if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == 8)) {
+                                               $limit = $limit - 23 + strlen($link);
+                                       }
+
+                                       $link = '';
+
+                                       if ($post['type'] == 'text') {
+                                               unset($post['url']);
+                                       }
+                               }
+                       }
+               }
+
+               if ($limit > 0) {
+                       // Reduce multiple spaces
+                       // When posted to a network with limited space, we try to gain space where possible
+                       while (strpos($msg, '  ') !== false) {
+                               $msg = str_replace('  ', ' ', $msg);
+                       }
+
+                       // Twitter is using its own limiter, so we always assume that shortened links will have this length
+                       if (iconv_strlen($link, 'UTF-8') > 0) {
+                               $limit = $limit - 23;
+                       }
+
+                       if (iconv_strlen($msg, 'UTF-8') > $limit) {
+                               if (($post['type'] == 'text') && isset($post['url'])) {
+                                       $post['url'] = $item['plink'];
+                               } elseif (!isset($post['url'])) {
+                                       $limit = $limit - 23;
+                                       $post['url'] = $item['plink'];
+                               } elseif (strpos($item['body'], '[share') !== false) {
+                                       $post['url'] = $item['plink'];
+                               } elseif (PConfig::get($item['uid'], 'system', 'no_intelligent_shortening')) {
+                                       $post['url'] = $item['plink'];
+                               }
+                               $msg = Text\Plaintext::shorten($msg, $limit);
+                       }
+               }
+
+               $post['text'] = trim($msg);
+
+               return $post;
+       }
+}
index cd8fa29e136ca208176287835f9fd2895acd6e9b..f86fce9b21a61c9348e04955801d76ab6f64c853 100644 (file)
@@ -92,14 +92,14 @@ class Profile
        {
                $user = dba::selectFirst('user', ['uid'], ['nickname' => $nickname]);
 
-               if (!$user && !count($user) && !count($profiledata)) {
+               if (!DBM::is_result($user) && empty($profiledata)) {
                        logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
                        notice(L10n::t('Requested account is not available.') . EOL);
                        $a->error = 404;
                        return;
                }
 
-               if (!x($a->page, 'aside')) {
+               if (empty($a->page['aside'])) {
                        $a->page['aside'] = '';
                }
 
@@ -157,10 +157,6 @@ class Profile
                        require_once $theme_info_file;
                }
 
-               if (!x($a->page, 'aside')) {
-                       $a->page['aside'] = '';
-               }
-
                if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
                        $a->page['aside'] .= replace_macros(
                                get_markup_template('profile_edlink.tpl'),
index 86e1414678e7bb7e76b9675139618a08d893bb0a..820730a32b9e01a4942af6b24c3eeca6a82d3eb3 100644 (file)
@@ -78,7 +78,7 @@ class Post extends BaseObject
                }
 
                // Prepare the children
-               if (count($data['children'])) {
+               if (!empty($data['children'])) {
                        foreach ($data['children'] as $item) {
                                // Only add will be displayed
                                if ($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) {
index 1ed08ed1df06332df96cd70dbc51799f8874f077..46bd8bba50871deafc49449891feb330de8ebe70 100644 (file)
@@ -59,7 +59,7 @@ class Temporal
 
                $o = '<select id="timezone_select" name="timezone">';
 
-               usort($timezone_identifiers, [self, 'timezoneCompareCallback']);
+               usort($timezone_identifiers, [__CLASS__, 'timezoneCompareCallback']);
                $continent = '';
                foreach ($timezone_identifiers as $value) {
                        $ex = explode("/", $value);
index 7341e1729feb920289ea306f99c19f11a1b2552f..55e5912953a339f13478230245e902f380ad9126 100644 (file)
@@ -41,8 +41,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
-"PO-Revision-Date: 2018-04-21 05:39+0000\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
+"PO-Revision-Date: 2018-04-23 04:59+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"
@@ -51,67 +51,10 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354
-#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr "Ja"
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
-
-#: include/items.php:471
-msgid "Archives"
-msgstr "Archiv"
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
-msgstr "mehr anzeigen"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll Ã¼berprüfen."
 
 #: include/api.php:1202
 #, php-format
@@ -133,353 +76,646 @@ msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag
 msgid "Monthly posting limit of %d post reached. The post was rejected."
 msgstr "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen."
 
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
 #: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
 msgid "Profile Photos"
 msgstr "Profilbilder"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr "Event"
+#: include/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr "Status"
+#: include/enotify.php:34
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr "Foto"
+#: include/enotify.php:37
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
+#: include/enotify.php:39
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/conversation.php:167 src/Model/Item.php:1671
+#: include/enotify.php:95
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Email erhalten um %s"
 
-#: include/conversation.php:170
+#: include/enotify.php:97
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat Dir eine neue private Nachricht um %2$s geschickt."
 
-#: include/conversation.php:173
+#: include/enotify.php:98
+msgid "a private message"
+msgstr "eine private Nachricht"
+
+#: include/enotify.php:98
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: include/conversation.php:176
+#: include/enotify.php:100
 #, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
+#: include/enotify.php:138
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:250
+#: include/enotify.php:146
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/enotify.php:156
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
 
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: include/enotify.php:168
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: include/conversation.php:332
+#: include/enotify.php:170
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Likes"
+#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
+#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Dislikes"
+#: include/enotify.php:180
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
+#: include/enotify.php:182
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb um %2$s auf Deine Pinnwand"
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/enotify.php:183
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/enotify.php:195
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Auswählen"
+#: include/enotify.php:197
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr "Löschen"
+#: include/enotify.php:198
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
+#: include/enotify.php:210
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/enotify.php:212
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/conversation.php:777 src/Object/Post.php:377
+#: include/enotify.php:225
 #, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/enotify.php:227
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/enotify.php:228
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/conversation.php:865
-msgid "remove"
-msgstr "löschen"
+#: include/enotify.php:244
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/enotify.php:246
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/enotify.php:247
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/enotify.php:259
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/enotify.php:261
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/enotify.php:262
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/enotify.php:267 include/enotify.php:313
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
+#: include/enotify.php:269
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/enotify.php:277
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/enotify.php:279 include/enotify.php:280
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: include/enotify.php:287
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/conversation.php:1173
+#: include/enotify.php:289 include/enotify.php:290
 #, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: include/enotify.php:302
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/conversation.php:1179
+#: include/enotify.php:304
 #, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/conversation.php:1182
+#: include/enotify.php:305
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/conversation.php:1185
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+#: include/enotify.php:311
+msgid "Name:"
+msgstr "Name:"
 
-#: include/conversation.php:1196
-msgid "and"
-msgstr "und"
+#: include/enotify.php:312
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/conversation.php:1202
+#: include/enotify.php:315
 #, php-format
-msgid "and %d other people"
-msgstr "und %dandere"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/conversation.php:1211
+#: include/enotify.php:323 include/enotify.php:338
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+
+#: include/enotify.php:325 include/enotify.php:340
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/conversation.php:1212
+#: include/enotify.php:326 include/enotify.php:341
 #, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: include/conversation.php:1215
+#: include/enotify.php:331
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+
+#: include/enotify.php:333
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst."
 
-#: include/conversation.php:1216
+#: include/enotify.php:346
 #, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden Dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: include/conversation.php:1219
+#: include/enotify.php:348
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: include/conversation.php:1220
+#: include/enotify.php:350
 #, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst."
 
-#: include/conversation.php:1223
+#: include/enotify.php:360 mod/removeme.php:43
+msgid "[Friendica System Notify]"
+msgstr "[Friendica System Benachrichtigung]"
+
+#: include/enotify.php:360
+msgid "registration request"
+msgstr "Registrierungsanfrage"
+
+#: include/enotify.php:362
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: include/conversation.php:1224
+#: include/enotify.php:363
 #, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: include/conversation.php:1227
+#: include/enotify.php:368
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: include/conversation.php:1228
+#: include/enotify.php:374
 #, php-format
-msgid "%s attend maybe."
-msgstr "%s nimmt eventuell teil."
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "Event"
 
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr "Status"
 
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr "Foto"
 
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: include/conversation.php:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr "Neuer Beitrag"
+#: include/conversation.php:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/conversation.php:1315
-msgid "Share"
-msgstr "Teilen"
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/conversation.php:304 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "Datei anhängen"
+#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Likes"
 
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "Weblink"
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
 
-#: include/conversation.php:1323 mod/editpost.php:118
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
+
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr "Auswählen"
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr "Löschen"
+
+#: include/conversation.php:757 src/Object/Post.php:363
+#: src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr "Kategorien:"
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr "löschen"
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr "Pinnwand anschauen"
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr "Profil anschauen"
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr "Bilder anschauen"
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr "Private Nachricht senden"
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr "Anstupsen"
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr "und"
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr "und %dandere"
+
+#: include/conversation.php:1211
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
+
+#: include/conversation.php:1219
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
+
+#: include/conversation.php:1223
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
+
+#: include/conversation.php:1227
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s nimmt eventuell teil."
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr "Tag:"
+
+#: include/conversation.php:1263 include/conversation.php:1279
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr "Neuer Beitrag"
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr "Teilen"
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr "Foto hochladen"
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr "Bild hochladen"
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Datei anhängen"
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr "Datei anhängen"
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr "Weblink"
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
+
+#: include/conversation.php:1323 mod/editpost.php:118
 msgid "video link"
 msgstr "Video-Link"
 
@@ -527,12 +763,21 @@ msgstr "Zugriffsrechte"
 msgid "Public post"
 msgstr "Öffentlicher Beitrag"
 
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
 msgid "Preview"
 msgstr "Vorschau"
 
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr "Abbrechen"
+
 #: include/conversation.php:1357
 msgid "Post to Groups"
 msgstr "Poste an Gruppe"
@@ -545,8 +790,8 @@ msgstr "Poste an Kontakte"
 msgid "Private post"
 msgstr "Privater Beitrag"
 
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
 msgid "Message"
 msgstr "Nachricht"
 
@@ -587,473 +832,181 @@ msgstr[1] "Unentschieden"
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: include/enotify.php:31
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/enotify.php:34
-msgid "Thank You,"
-msgstr "Danke,"
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/enotify.php:37
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/enotify.php:39
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
-
-#: include/enotify.php:95
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Email erhalten um %s"
+#: include/security.php:440
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/enotify.php:97
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat Dir eine neue private Nachricht um %2$s geschickt."
+#: include/text.php:302
+msgid "newer"
+msgstr "neuer"
 
-#: include/enotify.php:98
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: include/text.php:303
+msgid "older"
+msgstr "älter"
 
-#: include/enotify.php:98
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: include/text.php:308
+msgid "first"
+msgstr "erste"
 
-#: include/enotify.php:100
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: include/text.php:309
+msgid "prev"
+msgstr "vorige"
 
-#: include/enotify.php:138
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: include/text.php:343
+msgid "next"
+msgstr "nächste"
 
-#: include/enotify.php:146
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: include/text.php:344
+msgid "last"
+msgstr "letzte"
 
-#: include/enotify.php:156
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: include/enotify.php:168
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: include/text.php:399
+msgid "The end"
+msgstr "Das Ende"
 
-#: include/enotify.php:170
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
-#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#: include/text.php:908
 #, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: include/enotify.php:180
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: include/enotify.php:182
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb um %2$s auf Deine Pinnwand"
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
+msgid "Save"
+msgstr "Speichern"
 
-#: include/enotify.php:183
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Folge"
 
-#: include/enotify.php:195
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
+msgid "Search"
+msgstr "Suche"
 
-#: include/enotify.php:197
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/enotify.php:198
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Volltext"
 
-#: include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
+msgid "Tags"
+msgstr "Tags"
 
-#: include/enotify.php:212
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: include/enotify.php:213
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Foren"
 
-#: include/enotify.php:225
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: include/text.php:1074
+msgid "poke"
+msgstr "anstupsen"
 
-#: include/enotify.php:227
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: include/text.php:1074
+msgid "poked"
+msgstr "stupste"
 
-#: include/enotify.php:228
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: include/text.php:1075
+msgid "ping"
+msgstr "anpingen"
 
-#: include/enotify.php:244
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: include/text.php:1075
+msgid "pinged"
+msgstr "pingte"
 
-#: include/enotify.php:246
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: include/text.php:1076
+msgid "prod"
+msgstr "knuffen"
 
-#: include/enotify.php:247
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: include/text.php:1076
+msgid "prodded"
+msgstr "knuffte"
 
-#: include/enotify.php:259
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: include/text.php:1077
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: include/enotify.php:261
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+#: include/text.php:1077
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: include/enotify.php:262
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: include/text.php:1078
+msgid "finger"
+msgstr "befummeln"
 
-#: include/enotify.php:267 include/enotify.php:313
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: include/text.php:1078
+msgid "fingered"
+msgstr "befummelte"
 
-#: include/enotify.php:269
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: include/text.php:1079
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: include/enotify.php:277
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: include/enotify.php:279 include/enotify.php:280
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
+msgid "Monday"
+msgstr "Montag"
 
-#: include/enotify.php:287
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/enotify.php:289 include/enotify.php:290
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/enotify.php:302
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/enotify.php:304
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
-
-#: include/enotify.php:305
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
-
-#: include/enotify.php:311
-msgid "Name:"
-msgstr "Name:"
-
-#: include/enotify.php:312
-msgid "Photo:"
-msgstr "Foto:"
-
-#: include/enotify.php:315
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
-
-#: include/enotify.php:323 include/enotify.php:338
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
-
-#: include/enotify.php:325 include/enotify.php:340
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
-
-#: include/enotify.php:326 include/enotify.php:341
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
-
-#: include/enotify.php:331
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
-
-#: include/enotify.php:333
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst."
-
-#: include/enotify.php:346
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a fan, which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' hat sich entschieden Dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
-
-#: include/enotify.php:348
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
-
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst."
-
-#: include/enotify.php:360 mod/removeme.php:43
-msgid "[Friendica System Notify]"
-msgstr "[Friendica System Benachrichtigung]"
-
-#: include/enotify.php:360
-msgid "registration request"
-msgstr "Registrierungsanfrage"
-
-#: include/enotify.php:362
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
-
-#: include/enotify.php:363
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
-
-#: include/enotify.php:368
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-
-#: include/enotify.php:374
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
-
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Willkommen "
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Willkommen zurück "
-
-#: include/security.php:440
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
-
-#: include/text.php:302
-msgid "newer"
-msgstr "neuer"
-
-#: include/text.php:303
-msgid "older"
-msgstr "älter"
-
-#: include/text.php:308
-msgid "first"
-msgstr "erste"
-
-#: include/text.php:309
-msgid "prev"
-msgstr "vorige"
-
-#: include/text.php:343
-msgid "next"
-msgstr "nächste"
-
-#: include/text.php:344
-msgid "last"
-msgstr "letzte"
-
-#: include/text.php:398
-msgid "Loading more entries..."
-msgstr "lade weitere Einträge..."
-
-#: include/text.php:399
-msgid "The end"
-msgstr "Das Ende"
-
-#: include/text.php:884
-msgid "No contacts"
-msgstr "Keine Kontakte"
-
-#: include/text.php:908
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
-
-#: include/text.php:921
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
-
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
-msgid "Save"
-msgstr "Speichern"
-
-#: include/text.php:1010
-msgid "Follow"
-msgstr "Folge"
-
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
-msgid "Search"
-msgstr "Suche"
-
-#: include/text.php:1019 src/Content/Nav.php:58
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
-
-#: include/text.php:1025 src/Content/Nav.php:145
-msgid "Full Text"
-msgstr "Volltext"
-
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
-msgid "Tags"
-msgstr "Tags"
-
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
-msgid "Contacts"
-msgstr "Kontakte"
-
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
-msgid "Forums"
-msgstr "Foren"
-
-#: include/text.php:1074
-msgid "poke"
-msgstr "anstupsen"
-
-#: include/text.php:1074
-msgid "poked"
-msgstr "stupste"
-
-#: include/text.php:1075
-msgid "ping"
-msgstr "anpingen"
-
-#: include/text.php:1075
-msgid "pinged"
-msgstr "pingte"
-
-#: include/text.php:1076
-msgid "prod"
-msgstr "knuffen"
-
-#: include/text.php:1076
-msgid "prodded"
-msgstr "knuffte"
-
-#: include/text.php:1077
-msgid "slap"
-msgstr "ohrfeigen"
-
-#: include/text.php:1077
-msgid "slapped"
-msgstr "ohrfeigte"
-
-#: include/text.php:1078
-msgid "finger"
-msgstr "befummeln"
-
-#: include/text.php:1078
-msgid "fingered"
-msgstr "befummelte"
-
-#: include/text.php:1079
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
-
-#: include/text.php:1079
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
-
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
-msgid "Monday"
-msgstr "Montag"
-
-#: include/text.php:1093 src/Model/Event.php:380
-msgid "Tuesday"
-msgstr "Dienstag"
-
-#: include/text.php:1093 src/Model/Event.php:381
-msgid "Wednesday"
-msgstr "Mittwoch"
-
-#: include/text.php:1093 src/Model/Event.php:382
-msgid "Thursday"
-msgstr "Donnerstag"
-
-#: include/text.php:1093 src/Model/Event.php:383
-msgid "Friday"
-msgstr "Freitag"
+#: include/text.php:1093 src/Model/Event.php:383
+msgid "Friday"
+msgstr "Freitag"
 
 #: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Samstag"
 
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
 msgid "Sunday"
 msgstr "Sonntag"
 
@@ -1221,8329 +1174,8378 @@ msgstr "Beitrag"
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
-msgid "Connect"
-msgstr "Verbinden"
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Ja"
 
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141
+#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28
+#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74
+#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150
+#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26
+#: mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: include/items.php:471
+msgid "Archives"
+msgstr "Archiv"
 
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
-msgstr "Nein"
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Anwendungen"
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Organisation"
 
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Nachrichten"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Forum"
 
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Credits"
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr "Blockierte Domain"
 
-#: mod/credits.php:19
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
+
+#: src/Model/Contact.php:1254
 msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Ãœbersetzung beigetragen haben. Dank an alle !"
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte Ã¼berprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: src/Model/Contact.php:1301
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: mod/crepair.php:114
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: mod/crepair.php:115
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+
+#: src/Model/Contact.php:1325
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Ãœberprüfung der E-Mail-Adresse zu erzwingen."
 
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: src/Model/Contact.php:1332
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
-msgstr "Kontaktdaten neu laden"
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56
-#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265
-#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/install.php:251 mod/install.php:290 mod/invite.php:155
-#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:796
-msgid "Submit"
-msgstr "Senden"
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: mod/crepair.php:149
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: mod/crepair.php:154
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr "Name"
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - Ã¼berschreibt Name/Spitzname"
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
+msgid "Connect"
+msgstr "Verbinden"
 
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "Konto-URL"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Atom-Feed"
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL für Kontaktschaftsanfragen"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profile"
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Kontaktanfragen"
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Profilbild Ã¤ndern"
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr "Bilder"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Hochladen"
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
+msgstr "Ort:"
 
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr "Dateien"
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Status:"
 
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Kein Profil"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Hilfe:"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
+msgstr "Ãœber:"
 
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Hilfe"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Netzwerk:"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: src/Model/Profile.php:551
+msgid "F d"
+msgstr "d. F"
 
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[heute]"
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: mod/newmember.php:14
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Einstieg"
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
+msgid "Profile"
+msgstr "Profil"
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr "Einstellungen"
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Mitglied seit:"
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: src/Model/Profile.php:753
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
+#: src/Model/Profile.php:754
+msgid "j F"
+msgstr "j F"
 
-#: mod/newmember.php:22
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Ãœberprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
-msgid "Profile"
-msgstr "Profil"
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Alter:"
 
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: mod/newmember.php:26
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Ãœberprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tags:"
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: mod/newmember.php:28
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar Ã¶ffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr "Religion:"
 
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Likes:"
 
-#: mod/newmember.php:36
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Ãœber die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: mod/newmember.php:41
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: mod/newmember.php:43 src/Model/Group.php:414
-msgid "Groups"
-msgstr "Gruppen"
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: mod/newmember.php:45
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Foren:"
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht Ã¶ffentlich?"
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr "Allgemein"
 
-#: mod/newmember.php:48
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Status"
 
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: mod/newmember.php:54
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Bilder"
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Videos"
 
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Nicht erweitert."
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
-msgstr "Erneuern der OStatus Abonements"
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr "Fehler"
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr "Erledigt"
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
-msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "ganztägig"
 
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Jun"
 
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Sep"
 
-#: mod/uimport.php:55 mod/register.php:191
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde Ã¼berschritten. Bitte versuche es morgen noch einmal."
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "Heute"
 
-#: mod/uimport.php:70 mod/register.php:285
-msgid "Import"
-msgstr "Import"
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "Monat"
 
-#: mod/uimport.php:72
-msgid "Move account"
-msgstr "Account umziehen"
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "Woche"
 
-#: mod/uimport.php:73
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "Tag"
 
-#: mod/uimport.php:74
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: mod/uimport.php:75
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
 
-#: mod/uimport.php:76
-msgid "Account file"
-msgstr "Account Datei"
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Veranstaltung kopieren"
 
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Veranstaltung löschen"
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr "D H:i"
 
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr "H:i"
 
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Karte anzeigen"
 
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Keine Ãœbereinstimmungen"
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Karte verbergen"
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: src/Model/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Verwerfen"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: mod/notifications.php:62 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
-#: mod/contacts.php:1019
-msgid "Ignore"
-msgstr "Ignorieren"
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "bearbeiten"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "hinzufügen"
 
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: src/Model/Group.php:414 mod/newmember.php:43
+msgid "Groups"
+msgstr "Gruppen"
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Gruppen bearbeiten"
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt vor Anderen"
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Anmeldung fehlgeschlagen"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
+msgstr "Nicht genügend Informationen für die Authentifizierung"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Genehmigen"
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht Ã¼berein. Das Passwort bleibt unverändert."
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
-
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "ja"
+#: src/Model/User.php:342
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: mod/notifications.php:199
-msgid "no"
-msgstr "nein"
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht Ã¼berprüft werden."
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Soll die Verbindung beidseitig sein oder nicht?"
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: mod/notifications.php:201 mod/notifications.php:206
-#, php-format
+#: src/Model/User.php:366 src/Module/Login.php:100
 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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte Ã¼berprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: mod/notifications.php:202
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
-msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: mod/notifications.php:207
-#, 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."
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kontakt"
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Teilenden"
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Abonnent"
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr "Ort:"
+#: src/Model/User.php:401
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr "Ãœber:"
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tags:"
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: src/Model/User.php:424
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
 
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr "Profil URL"
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Netzwerk:"
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Ungelesene anzeigen"
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "Standard"
 
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Alle anzeigen"
+#: src/Model/User.php:503
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
-msgstr "Keine weiteren %s Benachrichtigungen"
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Kontakte"
 
-#: mod/openid.php:66
+#: src/Model/User.php:519
 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."
+"An error occurred creating your default contact group. Please try again."
+msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."
 
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: src/Model/User.php:593
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens geprüft werden."
 
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
 
-#: mod/dfrn_confirm.php:132
+#: src/Model/User.php:621
+#, php-format
 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."
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Ungültiges Quell-Protokoll"
 
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Ungültiges Link-Protokoll"
 
-#: mod/dfrn_confirm.php:519
-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."
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: mod/dfrn_confirm.php:549
-#, 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."
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: mod/dfrn_confirm.php:565
-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."
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Aufnahmeort"
 
-#: mod/dfrn_confirm.php:576
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: src/Content/Feature.php:82
+msgid ""
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
+msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
 
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Öffentlichen Kalender exportieren"
 
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
-
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
+msgstr "Möglichkeit für Besucher den Ã¶ffentlichen Kalender herunter zu laden"
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: mod/manage.php:181
-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."
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: src/Content/Feature.php:90
+msgid ""
+"Add/remove mention when a forum page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Zeige Foren"
 
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
 
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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"
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
 
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr "Blockierte Domain"
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: mod/dfrn_request.php:477
-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.   "
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tagging"
 
-#: mod/dfrn_request.php:501
-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."
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Bestätigen"
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: mod/dfrn_request.php:642
-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:"
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">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\">folge diesem Link</a> um einen Ã¶ffentlichen Friendica Server zu finden und beizutreten."
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Kontaktanfrage"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
-
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Erweiterte Profil-Einstellungen"
 
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr "Zeige Besuchern Ã¶ffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Schlagwort Wolke"
 
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen."
 
-#: mod/dfrn_request.php:659
-#, 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."
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Mitgliedschaftsdatum anzeigen"
 
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden."
 
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Exportieren"
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- auswählen -"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: mod/localtime.php:42
+#: src/Content/Widget.php:53
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Leute finden"
 
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Finde"
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Globales Verzeichnis betrachten"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Alles"
 
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Kategorien"
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Täglich"
 
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
 
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr "E-Mail"
 
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Zu viele Abfragen"
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/search.php:130
-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."
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
 
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zott"
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Beiträge die mit %s getaggt sind"
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Ergebnisse für: %s"
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
 
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Entfernen"
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora Connector"
 
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Account exportieren"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU social Connector"
 
-#: mod/uexport.php:44
-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."
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
 
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Alles exportieren"
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
 
-#: mod/uexport.php:45
-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)."
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Männlich"
 
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Weiblich"
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße Ã¼berschreitet das Limit von %s"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transgender"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersex"
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist Ã¼berschritten. Zustellung fehlgeschlagen."
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neuter"
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Andere"
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Männer"
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Frauen"
 
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Schwul"
 
-#: mod/wallmessage.php:133
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn Du möchtest, dass %s Dir antworten kann, Ã¼berprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "An:"
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Betreff:"
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Anmeldung"
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
+msgstr "Deviant"
 
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr "Fetish"
 
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Lokale Gemeinschaft"
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr "Oodles"
 
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Beiträge von Nutzern dieses Servers"
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Globale Gemeinschaft"
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Single"
 
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Beiträge von Nutzern des gesamten  föderalen Netzwerks"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Einsam"
 
-#: mod/community.php:180
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
-msgstr "Diese Gemeinschaftsseite zeigt alle Ã¶ffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr "Verfügbar"
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "verknallt"
 
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Dating"
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
-
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
-
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr "Casual"
 
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Verheiratet"
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Eine Kontaktgruppe anlegen."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Partner"
 
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Gruppe löschen"
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Glücklich"
 
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Gruppen Name bearbeiten"
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr "Swinger"
 
-#: mod/group.php:213
-msgid "Members"
-msgstr "Mitglieder"
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: mod/group.php:215 mod/contacts.php:719
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr "Getrennt"
 
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: mod/group.php:229
-msgid "Remove Contact"
-msgstr "Kontakt löschen"
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: mod/group.php:253
-msgid "Add Contact"
-msgstr "Kontakt hinzufügen"
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Nachrichten"
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Externer Link zum Forum"
 
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - H:i"
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Abmelden"
 
-#: mod/message.php:416
-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."
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
+#: src/Content/Nav.php:105
+msgid "Personal notes"
 msgstr "Persönliche Notizen"
 
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Anmeldung"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "jeder"
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Pinnwand"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Homepage"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Registrieren"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Album löschen"
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Hilfe"
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Apps"
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "einem Foto"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Bilddatei konnte nicht gefunden werden."
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr "Unterhaltungen auf diesem und anderer Server"
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator."
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Information"
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Netzwerk"
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Zeige Ã¤lteste zuerst"
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Eingang"
 
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Verwalten"
 
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Tags: "
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Administration"
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Nicht rotieren"
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Navigation"
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Sitemap"
 
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr "Das bist Du"
+#: src/App.php:513
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr "Kommentar"
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Karte"
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Album betrachten"
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Passwort: "
 
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr "Beiträge von %s"
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr "Kommentare von %s"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr "Timeline von %s"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
-
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
-
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Video Löschen"
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr "Veranstaltungen"
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr "Nutzungsbedingungen"
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Ansehen"
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Datenschutzerklärung"
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Vorherige"
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen"
+" name), an username (nickname) and a working email address. The names will "
+"be accessible on the profile page of the account by any visitor of the page,"
+" even if other profile details are not displayed. The email address will "
+"only be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or"
+" the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Nächste"
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners. Users can enter additional private data that may be"
+" transmitted to the communication partners accounts."
+msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner Ã¼bermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner Ã¼bermittelt werden können."
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "Heute"
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
+msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den <a href=\"%1$s/settings/uexport\">Kontoeinstellungen</a> aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter <a href=\"%1$s/removeme\">%1$s/removeme</a> möglich. Die Löschung des Nutzerkontos ist permanent."
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "Monat"
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "Woche"
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "Tag"
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "Liste"
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Ich werde teilnehmen"
 
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "Kalender"
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "Ich werde nicht teilnehmen"
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ich werde eventuell teilnehmen"
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "markieren"
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "markiert"
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "mag ich"
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: mod/contacts.php:523
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "Teilen"
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: src/Object/Post.php:365
+msgid "to"
+msgstr "zu"
 
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Niemals"
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "via"
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr "Kommentar"
 
-#: mod/contacts.php:558
+#: src/Object/Post.php:427
 #, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr "Das bist Du"
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr "Senden"
 
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
-msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Fett"
 
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursiv"
 
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Schlüsselwprter abrufen"
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Zitat"
 
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Code"
 
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Verbindung lösen/Nicht mehr folgen"
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Bild"
 
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakt"
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Link"
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
 
-#: mod/contacts.php:612
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
+msgstr "Es gibt keine MyISAM Tabellen."
+
+#: src/Database/DBStructure.php:75
 #, php-format
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
-
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\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."
 
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr "Die persönliche Mitteilung"
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: src/Database/DBStructure.php:191
+#, php-format
+msgid ""
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Fehler beim Ã„ndern der Datenbank aufgetreten"
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Datenbank Update"
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: aktualisiere Tabelle %s"
 
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Entsperren"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Sperren"
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr "Das neuer Passwort wurde in einem Ã¶ffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Bedarf der Bestätigung des Kontakts"
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden"
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine Ã¶ffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr "Der Kontakt wurde von diesem Knoten geblockt"
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: mod/contacts.php:650
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "zeigen"
 
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Aktionen"
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr "Status"
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Schließen"
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "System"
 
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Persönlich"
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
-
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Geblockt"
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Ignoriert"
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Archiviert"
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
 
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Verborgen"
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Finde"
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Aktualisierungen"
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Archivieren"
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Alter: "
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "nie"
 
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Profildetails"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "Jahr"
 
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "Jahre"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr "Erweitert"
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "Monate"
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "Wochen"
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "Tage"
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "Stunde"
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "Stunden"
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "Minute"
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "Minuten"
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "Sekunde"
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "Sekunden"
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr "Verwalter nicht gefunden."
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "vor %1$d %2$s"
 
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr "Kein Verwalter"
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "Timeline von %s"
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr "Passwort des Verwalters"
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "Beiträge von %s"
 
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen."
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "Kommentare von %s"
 
-#: mod/delegate.php:164
-msgid "Parent User"
-msgstr "Verwalter"
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s folgt nun %s"
 
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
-msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen Ã¤ndern."
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "folgen"
 
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346
-#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s hat aufgehört %s zu folgen"
 
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: mod/delegate.php:170
-msgid "Delegates"
-msgstr "Bevollmächtigte"
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Hinzufügen"
+#: mod/directory.php:204
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr "Keine Einträge."
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
-
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Benötigt"
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Keine Ãœbereinstimmungen"
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
+msgstr "Erneuern der OStatus Abonements"
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Fehler"
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Erledigt"
 
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Titel:"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr "Allgemein"
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Entfernen der Veranstaltung fehlgeschlagen"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
 
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Veranstaltung enfternt"
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Du musst eingeloggt sein um dieses Modul benutzen zu können."
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "URL der Quelle"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke â€“ Setup"
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße Ã¼berschreitet das Limit von %s"
 
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: mod/install.php:205
-msgid "System check"
-msgstr "Systemtest"
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Hochladen"
 
-#: mod/install.php:231
-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/profile_photo.php:253
+msgid "or"
+msgstr "oder"
 
-#: mod/install.php:232
-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/profile_photo.php:253
+msgid "skip this step"
+msgstr "diesen Schritt Ã¼berspringen"
 
-#: mod/install.php:233
-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/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: mod/install.php:240
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Gelöschter Nutzeraccount"
 
-#: mod/install.php:241 mod/install.php:281
+#: mod/removeme.php:44
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse Ã¼bereinstimmen, damit Du das Admin-Panel benutzen kannst."
-
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden."
 
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr "Die ID des Users lautet %d"
 
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: mod/install.php:285
+#: mod/removeme.php:77
 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/install.php:325
-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."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: mod/install.php:326
-msgid ""
-"If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</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 Worker Setup'</a>"
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: mod/install.php:330
+#: mod/manage.php:181
 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:335
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
-
-#: mod/install.php:344
-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)"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du â€žVerwalten“-Befugnisse bekommen hast."
 
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/install.php:358
+#: mod/uimport.php:55 mod/register.php:191
 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."
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde Ã¼berschritten. Bitte versuche es morgen noch einmal."
 
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Import"
 
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: mod/install.php:384
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+
+#: mod/uimport.php:74
 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"
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: mod/install.php:385
+#: mod/uimport.php:75
 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."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren"
 
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Account Datei"
 
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/uimport.php:76
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO oder MySQLi PHP Modul"
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/invite.php:100
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "PHP iconv Modul"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr "PHP POSIX Modul"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/invite.php:130
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der Ã¶ffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: mod/install.php:405
+#: mod/invite.php:132
+#, php-format
 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."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen Ã¶ffentlichen Friendica Website."
 
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: mod/invite.php:133
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
 
-#: mod/install.php:417
+#: mod/invite.php:137
 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."
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen Ã¶ffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/invite.php:141
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden."
 
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
+#: mod/invite.php:140
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
 
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Fehler POSIX PHP Modul erforderlich aber nicht installiert."
+#: mod/invite.php:150
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: mod/install.php:463
+#: mod/invite.php:152
 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."
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: mod/install.php:464
+#: mod/invite.php:154
 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."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
+msgstr "Für weitere Informationen Ã¼ber das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
 
-#: mod/install.php:465
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+
+#: mod/openid.php:66
 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."
+"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/install.php:466
-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/hcard.php:18
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: mod/install.php:479
-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/apps.php:19
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: mod/install.php:480
-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/apps.php:22
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: mod/install.php:481
-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/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: mod/install.php:482
+#: mod/network.php:547
+#, php-format
 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."
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
+msgid_plural ""
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht Ã¶ffentlichen Beiträge empfangen kann."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
 
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/network.php:550
+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:501
-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/network.php:618
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
+#: mod/network.php:643
+#, php-format
+msgid "Group: %s"
+msgstr "Gruppe: %s"
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/network.php:669
+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:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: mod/install.php:533
-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/network.php:936
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"worker."
-msgstr "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: mod/install.php:560
-#, php-format
-msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"and register as new user. Remember to use the same email you have entered as"
-" administrator email. This will allow you to enter the site admin panel."
-msgstr "Du solltest nun die Seite zur <a href=\"%s/register\">Nutzerregistrierung</a> deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: mod/network.php:966
+msgid "New"
+msgstr "Neue"
 
-#: mod/item.php:799
-#, 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/network.php:969
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: mod/item.php:802
-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/network.php:980
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Markierte"
 
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus Kontakten folgen"
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Keine Kontakte gefunden."
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Konnte die Kontaktinformationen nicht einholen."
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr Ã¼ber das Friendica Projekt zu erfahren."
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "Erfolg"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "den Bugtracker auf github"
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "Fehlgeschlagen"
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""
 
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "Ignoriert"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Installierte Apps und Addons"
 
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Es sind keine Addons oder Apps installiert"
 
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
+#: mod/friendica.php:122
 #, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr "Erfahre mehr Ã¼ber die <a href=\"%1$s/tos\">Nutzungsbedingungen</a> dieses Knotens."
 
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Begründung für die Blockierung"
 
-#: mod/profile_photo.php:247
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "oder"
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "diesen Schritt Ã¼berspringen"
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profil-"
 
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
-msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Kontakt wird nicht mehr gefolgt"
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Religion"
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Information"
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:180
-msgid "Overview"
-msgstr "Ãœbersicht"
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Webseite"
 
-#: mod/admin.php:181 mod/admin.php:718
-msgid "Federation Statistics"
-msgstr "Föderation Statistik"
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Interessen"
 
-#: mod/admin.php:182
-msgid "Configuration"
-msgstr "Konfiguration"
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Adresse"
 
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
-msgstr "Seite"
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Wohnort"
 
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
-msgid "Users"
-msgstr "Nutzer"
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Addons"
+#: mod/profiles.php:564
+msgid " and "
+msgstr " und "
 
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
-msgid "Themes"
-msgstr "Themen"
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: 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:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr "Nutzungsbedingungen"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " â€“ %1$ss %2$s besuchen"
 
-#: mod/admin.php:189
-msgid "Database"
-msgstr "Datenbank"
+#: 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:190
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: mod/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr "Nein"
 
-#: mod/admin.php:192
-msgid "Tools"
-msgstr "Werkzeuge"
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: mod/admin.php:193
-msgid "Contact Blocklist"
-msgstr "Kontakt Sperrliste"
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Zeige mehr Profil-Felder:"
 
-#: mod/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
-msgstr "Server Blockliste"
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr "Profilaktionen"
 
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
-msgstr "Eintrag löschen"
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Profilbild Ã¤ndern"
 
-#: mod/admin.php:198 mod/admin.php:2358
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: mod/admin.php:200
-msgid "Diagnostics"
-msgstr "Diagnostik"
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: mod/admin.php:201
-msgid "PHP Info"
-msgstr "PHP Info"
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: mod/admin.php:202
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: mod/admin.php:203
-msgid "check webfinger"
-msgstr "Webfinger Ã¼berprüfen"
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Administration"
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: mod/admin.php:223
-msgid "Addon Features"
-msgstr "Addon Features"
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
-#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
-msgid "Administration"
-msgstr "Administration"
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:303
-msgid "Display Terms of Service"
-msgstr "Nutzungsbedingungen anzeigen"
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Beziehung"
 
-#: mod/admin.php:303
-msgid ""
-"Enable the Terms of Service page. If this is enabled a link to the terms "
-"will be added to the registration form and the general information page."
-msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt."
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
-msgstr "Datenschutzerklärung anzeigen"
+#: mod/profiles.php:693
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: mod/admin.php:304
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
-msgstr "Zeige Informationen Ã¼ber die zum Betrieb der Seite notwendigen personenbezogenen Daten an, wie es z.B. die <a href=\"%s\" target=\"_blank\">EU-DSGVO</a> verlangt."
+#: mod/profiles.php:695
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
-msgstr "Die Nutzungsbedingungen"
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: mod/admin.php:305
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr "Benötigt"
+
+#: mod/profiles.php:702
 msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
-msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Ãœberschriften sollten [h2] oder darunter sein."
+"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:353
-msgid "The blocked domain"
-msgstr "Die blockierte Domain"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Begründung für die Blockierung"
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
-msgstr "Die Begründung warum du diese Domain blockiert hast."
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: mod/admin.php:355
-msgid "Delete domain"
-msgstr "Domain löschen"
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
-msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: mod/admin.php:363
-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:710
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: mod/admin.php:364
-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:711
+msgid "Country:"
+msgstr "Land:"
 
-#: mod/admin.php:365
-msgid "Add new entry to block list"
-msgstr "Neuen Eintrag in die Blockliste"
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: mod/admin.php:366
-msgid "Server Domain"
-msgstr "Domain des Servers"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:366
-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:716
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: mod/admin.php:367
-msgid "Block reason"
-msgstr "Begründung der Blockierung"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir â€¦"
 
-#: mod/admin.php:368
-msgid "Add Entry"
-msgstr "Eintrag hinzufügen"
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) Adresse"
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
-msgstr "Änderungen der Blockliste speichern"
+#: mod/profiles.php:719
+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:370
-msgid "Current Entries in the Blocklist"
-msgstr "Aktuelle Einträge der Blockliste"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
-msgstr "Eintrag von der Blockliste entfernen"
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
-msgstr "Eintrag von der Blockliste entfernen?"
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
-msgstr "Server zur Blockliste hinzugefügt."
+#: mod/profiles.php:724
+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:418
-msgid "Site blocklist updated."
-msgstr "Blockliste aktualisiert."
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr "Der Kontakt wurde von diesem Knoten geblockt"
+#: mod/profiles.php:725
+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:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr "Für die URL (%s) konnte kein Kontakt gefunden werden"
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: mod/admin.php:450
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] "%sKontakt wieder freigegeben"
-msgstr[1] "%sKontakte wieder freigegeben"
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
-msgstr "Sperrliste entfernter Kontakte"
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Fernsehen"
 
-#: mod/admin.php:480
-msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
-msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden."
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: mod/admin.php:481
-msgid "Block Remote Contact"
-msgstr "Blockiere entfernten Kontakt"
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: mod/admin.php:482 mod/admin.php:1790
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: mod/admin.php:483
-msgid "select none"
-msgstr "Auswahl aufheben"
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
-msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert."
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
-msgstr "Blockierte Kontakte von anderen Knoten"
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
-msgstr "Blockieren von weiteren Kontakten"
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/admin.php:490
-msgid "Photo"
-msgstr "Foto:"
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Adresse"
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/admin.php:498
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] "Insgesamt %s blockierter Kontakt"
-msgstr[1] "Insgesamt %s blockierte Kontakte"
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/admin.php:500
-msgid "URL of the remote contact to block."
-msgstr "Die URL des Kontakts, vom entfernten Server, der blockiert werden soll."
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/admin.php:522
-msgid "Delete this Item"
-msgstr "Diesen Eintrag löschen"
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/admin.php:523
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/admin.php:524
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "Liste"
 
-#: mod/admin.php:525
-msgid "GUID"
-msgstr "GUID"
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-msgstr "Die GUID des zu löschenden Eintrags"
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/admin.php:564
-msgid "Item marked for deletion."
-msgstr "Eintrag wurden zur Löschung markiert"
+#: mod/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/admin.php:635
-msgid "unknown"
-msgstr "Unbekannt"
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/admin.php:711
-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/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/admin.php:712
-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/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/admin.php:724
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
-msgstr "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:"
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/admin.php:755
-msgid "ID"
-msgstr "ID"
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/admin.php:756
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/admin.php:757
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Entfernen der Veranstaltung fehlgeschlagen"
 
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr "Netzwerk"
+#: mod/events.php:554
+msgid "Event removed"
+msgstr "Veranstaltung enfternt"
 
-#: mod/admin.php:759
-msgid "Created"
-msgstr "Erstellt"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: mod/admin.php:760
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: mod/admin.php:761
-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/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: mod/admin.php:785
-#, 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 "
-"bin/console.php dbstructure 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 bin/console.php dbstructure toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: mod/admin.php:792
-#, php-format
-msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
-msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s."
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:802
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
-msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte Ã¼berprüfe deine Datenbankstruktur."
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: mod/admin.php:811
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please"
-" check your crontab settings."
-msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte Ã¼berprüfe deine crontab Einstellungen."
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: mod/admin.php:816 mod/admin.php:1739
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
 
-#: mod/admin.php:817 mod/admin.php:1740
-msgid "Automatic Follower Account"
-msgstr "Automatisch folgendes Konto (Marktschreier)"
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: mod/admin.php:818 mod/admin.php:1741
-msgid "Public Forum Account"
-msgstr "Öffentliches Forum Konto"
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: mod/admin.php:819 mod/admin.php:1742
-msgid "Automatic Friend Account"
-msgstr "Automatische Freunde Seite"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus Kontakten folgen"
 
-#: mod/admin.php:820
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Keine Kontakte gefunden."
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
-msgstr "Privates Forum Konto"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Konnte die Kontaktinformationen nicht einholen."
 
-#: mod/admin.php:843
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen."
 
-#: mod/admin.php:849
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "Erfolg"
 
-#: mod/admin.php:851
-msgid "Registered users"
-msgstr "Registrierte Personen"
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "Fehlgeschlagen"
 
-#: mod/admin.php:853
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: mod/admin.php:854
-msgid "Version"
-msgstr "Version"
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: mod/admin.php:859
-msgid "Active addons"
-msgstr "Aktivierte Addons"
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: mod/admin.php:890
-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/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
 
-#: mod/admin.php:1209
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "jeder"
 
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/admin.php:1265
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite"
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Anzeige"
 
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
-msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk"
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: mod/admin.php:1268
-msgid "Public postings from local users and the federated network"
-msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk"
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Addons"
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: mod/admin.php:1279
-msgid "One month"
-msgstr "ein Monat"
-
-#: mod/admin.php:1280
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: mod/admin.php:1281
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: mod/admin.php:1282
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/settings.php:279
+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:1310
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: mod/admin.php:1311
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: mod/admin.php:1312
-msgid "Open"
-msgstr "Offen"
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/admin.php:1322
-msgid "Don't check"
-msgstr "Nicht Ã¼berprüfen"
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: mod/admin.php:1323
-msgid "check the stable version"
-msgstr "überprüfe die stabile Version"
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: mod/admin.php:1324
-msgid "check the development version"
-msgstr "überprüfe die Entwicklungsversion"
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: mod/admin.php:1347
-msgid "Republish users to directory"
-msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen."
+#: mod/settings.php:519
+msgid "Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/admin.php:1348 mod/register.php:264
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/settings.php:572
+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:1349
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/settings.php:575
+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:1350
-msgid "Policies"
-msgstr "Regeln"
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: mod/admin.php:1353
-msgid "Performance"
-msgstr "Performance"
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/admin.php:1354
-msgid "Worker"
-msgstr "Worker"
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr "Name"
 
-#: mod/admin.php:1355
-msgid "Message Relay"
-msgstr "Nachrichten Relais"
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: mod/admin.php:1356
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: mod/admin.php:1359
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: mod/admin.php:1360
-msgid "Host name"
-msgstr "Host Name"
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: mod/admin.php:1361
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/admin.php:1361
-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/settings.php:735
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Kein Name"
 
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: mod/admin.php:1364
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Keine Addon-Einstellungen konfiguriert"
 
-#: mod/admin.php:1364
-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/settings.php:761
+msgid "Addon Settings"
+msgstr "Addon Einstellungen"
 
-#: mod/admin.php:1365
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Aus"
 
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
-msgstr "Für Ã¶ffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden."
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "An"
 
-#: mod/admin.php:1366
-msgid "System language"
-msgstr "Systemsprache"
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: mod/admin.php:1367
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: mod/admin.php:1367
-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/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: mod/admin.php:1368
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/settings.php:805 mod/settings.php:806
+#, 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:1368
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/admin.php:1369
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/admin.php:1370
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Inhaltswarnungen ausschalten"
 
-#: mod/admin.php:1370
+#: mod/settings.php:848
 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."
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
+msgstr "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst."
 
-#: mod/admin.php:1371
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/admin.php:1371
+#: mod/settings.php:849
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin Ã¼ber /help aufgerufen werden."
-
-#: mod/admin.php:1372
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
-
-#: mod/admin.php:1372
-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."
+"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/admin.php:1373
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/settings.php:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/admin.php:1373
+#: mod/settings.php:850
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
-
-#: mod/admin.php:1374
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+"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/admin.php:1374
-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:851
+msgid "Default group for OStatus contacts"
+msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/admin.php:1375
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Dein alter GNU Social Account"
 
-#: mod/admin.php:1375
+#: mod/settings.php:852
 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."
+"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:1377
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/settings.php:855
+msgid "Repair OStatus subscriptions"
+msgstr "OStatus Abonnements reparieren"
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/admin.php:1378
+#: mod/settings.php:860
 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."
+"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/admin.php:1379
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/settings.php:861
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/admin.php:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden."
+#: mod/settings.php:863
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: mod/admin.php:1380
-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:865
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Keine"
 
-#: mod/admin.php:1381
-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:866
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: mod/admin.php:1382
-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:868
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
-msgstr "OEmbed nicht verwenden"
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Sende Ã¶ffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen die unten aufgeführt werden."
+#: mod/settings.php:870
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
-msgstr "Erlaubte OEmbed Domänen"
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: mod/admin.php:1384
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr "Komma separierte Liste von Domänen für die das einbetten reichhaltiger Inhalte erlaubt sind. Platzhalter können verwendet werden."
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: mod/admin.php:1385
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/admin.php:1385
-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:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Nicht unterstützt)"
 
-#: mod/admin.php:1386
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Experimentell)"
 
-#: mod/admin.php:1386
-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:959
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: mod/admin.php:1387
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: mod/admin.php:1387
-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/settings.php:966
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
 
-#: mod/admin.php:1388
+#: mod/settings.php:967
 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."
+"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/admin.php:1389
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/settings.php:968
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/admin.php:1389
-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:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
+msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
 
-#: mod/admin.php:1390
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/admin.php:1390
-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:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/settings.php:970
+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:1391
-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/settings.php:971
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: mod/admin.php:1392
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalender"
 
-#: mod/admin.php:1392
-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/settings.php:973
+msgid "Beginning of week:"
+msgstr "Wochenbeginn:"
 
-#: mod/admin.php:1393
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten für Organisationsseiten o.ä. mit der gleichen E-Mail Adresse anzulegen, um diese als ."
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: mod/admin.php:1394
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/settings.php:976
+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:1394
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/settings.php:976
+msgid ""
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
+msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
 
-#: mod/admin.php:1395
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit Ã¼berprüfen"
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/admin.php:1395
+#: mod/settings.php:977
 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."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
+msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
 
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
-msgstr "Für Besucher verfügbare Gemeinschaftsseite"
+#: mod/settings.php:978
+msgid "Smart Threading"
+msgstr "Intelligentes Threading"
 
-#: mod/admin.php:1396
+#: mod/settings.php:978
 msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
-msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Gemeinschaftsseiten verwenden."
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
+msgstr "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt."
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/admin.php:1397
-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:981
+msgid "Custom Theme Settings"
+msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Einstellungen zum Inhalt"
 
-#: mod/admin.php:1398
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist Ã¶ffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+#: mod/settings.php:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."
 
-#: mod/admin.php:1399
-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:1044
+msgid "Account Types"
+msgstr "Kontenarten"
 
-#: mod/admin.php:1400
-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:1045
+msgid "Personal Page Subtypes"
+msgstr "Unterarten der persönlichen Seite"
 
-#: mod/admin.php:1402
-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:1046
+msgid "Community Forum Subtypes"
+msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/admin.php:1403
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Persönliche Seite"
 
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Konto für ein persönliches Profil."
 
-#: mod/admin.php:1404
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Organisationsseite"
 
-#: mod/admin.php:1404
+#: mod/settings.php:1058
 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."
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
+msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/admin.php:1405
-msgid "Verify SSL"
-msgstr "SSL Ãœberprüfen"
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Nachrichtenseite"
 
-#: mod/admin.php:1405
+#: mod/settings.php:1062
 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."
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/admin.php:1406
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Gemeinschaftsforum"
 
-#: mod/admin.php:1407
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/settings.php:1066
+msgid "Account for community discussions."
+msgstr "Konto für Diskussionsforen. "
 
-#: mod/admin.php:1408
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: mod/admin.php:1408
-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:1070
+msgid ""
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
+msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: mod/admin.php:1409
+#: mod/settings.php:1074
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
+msgstr "Konto für ein Ã¶ffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
 
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Öffentliches Forum"
 
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Bestätigt alle Kontaktanfragen automatisch."
 
-#: mod/admin.php:1411
-msgid "Minimal Memory"
-msgstr "Minimaler Speicher"
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: mod/admin.php:1411
+#: mod/settings.php:1082
 msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)"
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
+msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
 
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/admin.php:1412
-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:1086
+msgid "Requires manual approval of contact requests."
+msgstr "Kontaktanfragen müssen manuell bestätigt werden."
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: mod/admin.php:1413
-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:1097
+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:1415
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte Ã¼berprüfen"
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/admin.php:1415
+#: mod/settings.php:1105
+#, php-format
 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."
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
+msgstr "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. <a href=\"%s\">%s</a>) veröffentlicht. Dein Profil wird Ã¶ffentlich auffindbar sein."
 
-#: mod/admin.php:1416
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/admin.php:1416
-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:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
+msgstr "Dein Profil wird im <a href=\"%s\">lokalen Verzeichnis</a> dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es Ã¶ffentlich auffindbar sein."
 
-#: mod/admin.php:1417
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/admin.php:1417
+#: mod/settings.php:1118
 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'."
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
+msgstr "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen."
 
-#: mod/admin.php:1418
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: mod/admin.php:1418
+#: mod/settings.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."
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
+msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine Ã¶ffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden."
 
-#: mod/admin.php:1419
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/admin.php:1419
+#: mod/settings.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 um die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
+msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."
 
-#: mod/admin.php:1421
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/admin.php:1421
-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 Personen 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:1130
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."
 
-#: mod/admin.php:1423
-msgid "Check upstream version"
-msgstr "Suche nach Updates"
+#: mod/settings.php:1134
+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:1423
+#: mod/settings.php:1134
 msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
-msgstr "Wenn diese Option aktiviert ist wird regelmäßig nach neuen Friendica Versionen auf github Ã¼berprüft. Wenn es eine neue Version gibt, wird dies auf der Ãœbersichtsseite im Admin-Panel angezeigt."
+"If you like, Friendica may suggest new members to add you as a contact."
+msgstr "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen."
 
-#: mod/admin.php:1424
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/admin.php:1424
-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:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
+msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."
 
-#: mod/admin.php:1425
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/settings.php:1142
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/admin.php:1425
-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:1148
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/admin.php:1426
-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:1155
+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:1427
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/admin.php:1427
-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:1157
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: mod/admin.php:1428
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: mod/admin.php:1428
-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:1159
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/admin.php:1429
-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:1161
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: mod/admin.php:1430
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/admin.php:1430
-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:1192
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: mod/admin.php:1431
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: mod/admin.php:1431
-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:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: mod/admin.php:1433
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: mod/admin.php:1433
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and"
-" Diaspora* contacts of all users."
-msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica und Diaspora* Kontakte deiner NutzerInnen."
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort Ã¤ndern"
 
-#: mod/admin.php:1435
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: mod/admin.php:1435
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
-
-#: mod/admin.php:1435
-msgid "Enabled"
-msgstr "Aktiv"
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Ã„nderungen zu bestätigen"
 
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Passwort:"
 
-#: mod/admin.php:1437
-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:1208
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: mod/admin.php:1438
-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 worker 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:1211
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: mod/admin.php:1439
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Deine Sprache:"
 
-#: mod/admin.php:1439
+#: mod/settings.php:1212
 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."
+"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:1440
-msgid "Enable frontend worker"
-msgstr "Aktiviere den Frontend Worker"
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: mod/admin.php:1440
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server."
-msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
+#: mod/settings.php:1214
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: mod/admin.php:1442
-msgid "Subscribe to relay"
-msgstr "Relais abonnieren"
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/admin.php:1442
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
-msgstr "Aktiviert den Empfang von Ã¶ffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein."
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/admin.php:1443
-msgid "Relay server"
-msgstr "Relais Server"
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: mod/admin.php:1443
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
-msgstr "Adresse des Relais Servers an den die Ã¶ffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org"
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
-msgstr "Direkte Relais Ãœbertragung"
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(klicke zum Ã¶ffnen/schließen)"
 
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
-msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais Server verwendet wird."
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: mod/admin.php:1445
-msgid "Relay scope"
-msgstr "Geltungsbereich des Relais"
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: mod/admin.php:1445
-msgid ""
-"Can be 'all' or 'tags'. 'all' means that every public post should be "
-"received. 'tags' means that only posts with selected tags should be "
-"received."
-msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle Ã¶ffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten."
+#: mod/settings.php:1231
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: mod/admin.php:1445
-msgid "all"
-msgstr "Alle"
+#: mod/settings.php:1232
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/admin.php:1445
-msgid "tags"
-msgstr "Schlagwörter"
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/admin.php:1446
-msgid "Server tags"
-msgstr "Server Schlagworte"
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr "Liste von Schlagworten die abonniert werden sollen, mit Komma getrennt."
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
-msgstr "Verwende Schlagworte der Nutzer"
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/admin.php:1447
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
-msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben  definierten Server Schlagworte abonniert."
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: mod/settings.php:1255
+msgid "making an <em>interesting</em> profile change"
+msgstr "– Du eine <em>interessante</em> Ã„nderung an Deinem Profil durchführst"
 
-#: mod/admin.php:1485
-#, 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:1256
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/admin.php:1498
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/admin.php:1500
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/admin.php:1503
-#, 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:1259
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/admin.php:1506
-#, 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:1260
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/admin.php:1526
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/admin.php:1527
-msgid "Check database structure"
-msgstr "Datenbank Struktur Ã¼berprüfen"
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/admin.php:1532
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/admin.php:1533
-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:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/admin.php:1574
-#, 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:1268
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/admin.php:1577
-#, php-format
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Detaillierte Benachrichtigungen anzeigen"
+
+#: mod/settings.php:1274
 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\tIf you ever want to delete your account, you can do so at %1$s/removeme\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %1$s/removeme  jederzeit tun.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
+msgstr "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt."
 
-#: mod/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/admin.php:1621
-#, 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:1277
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/admin.php:1627
-#, 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
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: mod/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/settings.php:1281
+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:1682
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/settings.php:1282
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: mod/admin.php:1682
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Konto freigegeben."
+
+#: mod/regmod.php:93
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
-#: src/Content/ContactSelector.php:82
-msgid "Email"
-msgstr "E-Mail"
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: mod/admin.php:1789
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: mod/admin.php:1791
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: mod/admin.php:1792
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Eine Kontaktgruppe anlegen."
 
-#: mod/admin.php:1793
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: mod/admin.php:1794
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: mod/admin.php:1795
-msgid "Note from the user"
-msgstr "Hinweis vom Nutzer"
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Gruppe löschen"
 
-#: mod/admin.php:1797
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: mod/admin.php:1801
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Gruppen Name bearbeiten"
 
-#: mod/admin.php:1802
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/group.php:213
+msgid "Members"
+msgstr "Mitglieder"
 
-#: mod/admin.php:1805
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: mod/admin.php:1806
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/group.php:229
+msgid "Remove Contact"
+msgstr "Kontakt löschen"
 
-#: mod/admin.php:1811
-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/group.php:253
+msgid "Add Contact"
+msgstr "Kontakt hinzufügen"
 
-#: mod/admin.php:1812
-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/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: mod/admin.php:1822
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Dateien"
 
-#: mod/admin.php:1823
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/admin.php:106
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/admin.php:1823
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/admin.php:180
+msgid "Overview"
+msgstr "Ãœbersicht"
 
-#: mod/admin.php:1824
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr "Föderation Statistik"
 
-#: mod/admin.php:1866
-#, php-format
-msgid "Addon %s disabled."
-msgstr "Addon %s ausgeschaltet."
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr "Konfiguration"
 
-#: mod/admin.php:1870
-#, php-format
-msgid "Addon %s enabled."
-msgstr "Addon %s eingeschaltet."
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
+msgstr "Seite"
 
-#: mod/admin.php:1880 mod/admin.php:2129
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/admin.php:1883 mod/admin.php:2132
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/admin.php:1905 mod/admin.php:2174
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/admin.php:189
+msgid "Database"
+msgstr "Datenbank"
 
-#: mod/admin.php:1913 mod/admin.php:2183
-msgid "Author: "
-msgstr "Autor:"
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/admin.php:1914 mod/admin.php:2184
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/admin.php:1966
-msgid "Reload active addons"
-msgstr "Aktivierte Addons neu laden"
+#: mod/admin.php:192
+msgid "Tools"
+msgstr "Werkzeuge"
 
-#: mod/admin.php:1971
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in"
-" the open addon registry at %2$s"
-msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s."
+#: mod/admin.php:193
+msgid "Contact Blocklist"
+msgstr "Kontakt Sperrliste"
 
-#: mod/admin.php:2091
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr "Server Blockliste"
 
-#: mod/admin.php:2165
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr "Eintrag löschen"
 
-#: mod/admin.php:2219
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/admin.php:2224
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden."
+#: mod/admin.php:198 mod/admin.php:2372
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/admin.php:2225
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr "Diagnostik"
 
-#: mod/admin.php:2226
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr "PHP Info"
 
-#: mod/admin.php:2250
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/admin.php:202
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/admin.php:2282
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr "Webfinger Ã¼berprüfen"
 
-#: mod/admin.php:2284
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr "Addon Features"
 
-#: mod/admin.php:2293
-msgid "Clear"
-msgstr "löschen"
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/admin.php:2297
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
+#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/admin.php:2298
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr "Nutzungsbedingungen anzeigen"
 
-#: mod/admin.php:2298
+#: mod/admin.php:303
 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/admin.php:2299
-msgid "Log level"
-msgstr "Protokoll-Level"
-
-#: mod/admin.php:2301
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
+msgstr "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt."
 
-#: mod/admin.php:2302
-msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+#: mod/admin.php:304
+msgid "Display Privacy Statement"
+msgstr "Datenschutzerklärung anzeigen"
 
-#: mod/admin.php:2333
+#: mod/admin.php:304
 #, php-format
 msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
-msgstr "Fehler beim Ã–ffnen der Logdatei <strong>%1$s</strong>.\\r\\n<br/>Bitte Ã¼berprüfe ob die Datei %1$s existiert und gelesen werden kann."
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
+msgstr "Zeige Informationen Ã¼ber die zum Betrieb der Seite notwendigen personenbezogenen Daten an, wie es z.B. die <a href=\"%s\" target=\"_blank\">EU-DSGVO</a> verlangt."
 
-#: mod/admin.php:2337
-#, php-format
+#: mod/admin.php:305
+msgid "The Terms of Service"
+msgstr "Die Nutzungsbedingungen"
+
+#: mod/admin.php:305
 msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
-" %1$s is readable."
-msgstr "Konnte die Logdatei <strong>%1$s</strong> nicht Ã¶ffnen.\\r\\n<br/>Bitte stelle sicher, dass die Datei %1$s lesbar ist."
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
+msgstr "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Ãœberschriften sollten [h2] oder darunter sein."
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Aus"
+#: mod/admin.php:353
+msgid "The blocked domain"
+msgstr "Die blockierte Domain"
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "An"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr "Die Begründung warum du diese Domain blockiert hast."
 
-#: mod/admin.php:2429
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Domain löschen"
 
-#: mod/admin.php:2437
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr "Markieren, um diesen Eintrag von der Blocklist zu entfernen"
 
-#: mod/babel.php:22
-msgid "Source input"
-msgstr "Originaltext:"
+#: mod/admin.php:363
+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/babel.php:28
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode::convert (pures HTML)"
+#: mod/admin.php:364
+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/babel.php:33
-msgid "BBCode::convert"
-msgstr "BBCode::convert"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr "Neuen Eintrag in die Blockliste"
 
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::convert => HTML::toBBCode"
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr "Domain des Servers"
 
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: mod/admin.php:366
+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/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::convert"
+#: mod/admin.php:367
+msgid "Block reason"
+msgstr "Begründung der Blockierung"
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Eintrag hinzufügen"
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr "Änderungen der Blockliste speichern"
 
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr "Original Text \\x28Diaspora Fromat\\x29"
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr "Aktuelle Einträge der Blockliste"
 
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr "Eintrag von der Blockliste entfernen"
 
-#: mod/babel.php:83
-msgid "Raw HTML input"
-msgstr "Reine  HTML  Eingabe"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr "Eintrag von der Blockliste entfernen?"
 
-#: mod/babel.php:88
-msgid "HTML Input"
-msgstr "HTML Eingabe"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr "Server zur Blockliste hinzugefügt."
 
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
+msgstr "Blockliste aktualisiert."
 
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: mod/admin.php:450
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] "%sKontakt wieder freigegeben"
+msgstr[1] "%sKontakte wieder freigegeben"
 
-#: mod/babel.php:108
-msgid "Source text"
-msgstr "Quelltext"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr "Sperrliste entfernter Kontakte"
 
-#: mod/babel.php:109
-msgid "BBCode"
-msgstr "BBCode"
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden."
 
-#: mod/babel.php:110
-msgid "Markdown"
-msgstr "Markdown"
+#: mod/admin.php:481
+msgid "Block Remote Contact"
+msgstr "Blockiere entfernten Kontakt"
 
-#: mod/babel.php:111
-msgid "HTML"
-msgstr "HTML"
+#: mod/admin.php:482 mod/admin.php:1804
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Status:"
+#: mod/admin.php:483
+msgid "select none"
+msgstr "Auswahl aufheben"
 
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Homepage:"
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/directory.php:204
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
+msgstr "Derzeit werden keine Kontakte auf diesem Knoten blockiert."
 
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Ergebnisse für:"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr "Blockierte Kontakte von anderen Knoten"
 
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr "Blockieren von weiteren Kontakten"
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: mod/admin.php:490
+msgid "Photo"
+msgstr "Foto:"
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
+msgstr "Profil URL"
 
-#: mod/dirfind.php:60
+#: mod/admin.php:498
 #, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
-
-#: mod/follow.php:45
-msgid "The contact could not be added."
-msgstr "Der Kontakt konnte nicht hinzugefügt werden."
-
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Du hast den Kontakt bereits hinzugefügt."
-
-#: mod/follow.php:83
-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/follow.php:90
-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/follow.php:97
-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."
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] "Insgesamt %s blockierter Kontakt"
+msgstr[1] "Insgesamt %s blockierte Kontakte"
 
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr "Die URL des Kontakts, vom entfernten Server, der blockiert werden soll."
 
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: mod/admin.php:522
+msgid "Delete this Item"
+msgstr "Diesen Eintrag löschen"
 
-#: mod/friendica.php:82
+#: mod/admin.php:523
 msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr Ã¼ber das Friendica Projekt zu erfahren."
-
-#: mod/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht."
 
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "den Bugtracker auf github"
+#: mod/admin.php:524
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456."
 
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\""
+#: mod/admin.php:525
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Installierte Apps und Addons"
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
+msgstr "Die GUID des zu löschenden Eintrags"
 
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Es sind keine Addons oder Apps installiert"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr "Eintrag wurden zur Löschung markiert"
 
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
-msgstr "Erfahre mehr Ã¼ber die <a href=\"%1$s/tos\">Nutzungsbedingungen</a> dieses Knotens."
+#: mod/admin.php:635
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Auf diesem Server werden die folgenden entfernten Server blockiert."
+#: mod/admin.php:711
+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/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: mod/admin.php:712
+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/invite.php:55
+#: mod/admin.php:724
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:"
 
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: mod/admin.php:755
+msgid "ID"
+msgstr "ID"
 
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/invite.php:100
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: mod/admin.php:757
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: mod/admin.php:759
+msgid "Created"
+msgstr "Erstellt"
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/invite.php:130
-#, php-format
+#: mod/admin.php:761
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der Ã¶ffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+"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/invite.php:132
+#: mod/admin.php:785
 #, php-format
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen Ã¶ffentlichen Friendica Website."
+"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 "
+"bin/console.php dbstructure 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 bin/console.php dbstructure toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen."
 
-#: mod/invite.php:133
+#: mod/admin.php:792
 #, php-format
 msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
+msgstr "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s."
 
-#: mod/invite.php:137
+#: mod/admin.php:802
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen Ã¶ffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen."
 
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden."
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte Ã¼berprüfe deine Datenbankstruktur."
 
-#: mod/invite.php:140
+#: mod/admin.php:811
 #, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s."
+msgid ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte Ã¼berprüfe deine crontab Einstellungen."
 
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: mod/admin.php:816
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: mod/admin.php:817
+msgid "Automatic Follower Account"
+msgstr "Automatisch folgendes Konto (Marktschreier)"
 
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: mod/admin.php:818
+msgid "Public Forum Account"
+msgstr "Öffentliches Forum Konto"
 
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: mod/admin.php:819
+msgid "Automatic Friend Account"
+msgstr "Automatische Freunde Seite"
 
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: mod/admin.php:820
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr "Für weitere Informationen Ã¼ber das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca."
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr "Privates Forum Konto"
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte Ã¼berprüfe Deine E-Mail."
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/lostpass.php:45
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Ã„nderung angefragt hast."
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Registrierte Personen"
 
-#: mod/lostpass.php:56
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link soon to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen Ã¤ndern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Version"
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine Ã¤hnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr "Aktivierte Addons"
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
-msgstr "Die Anfrage ist abgelaufen. Bitte stelle eine erneute."
+#: mod/admin.php:890
+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/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: mod/admin.php:1209
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+#: mod/admin.php:1265
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite"
 
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
+msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk"
 
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
+msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk"
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: mod/admin.php:1279
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> Ã¤ndern, sobald Du Dich erfolgreich angemeldet hast."
+#: mod/admin.php:1280
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/lostpass.php:149
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\tsomething that you will remember).\n"
-"\t\t"
-msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder Ã¤ndere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+#: mod/admin.php:1281
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/lostpass.php:155
-#, php-format
-msgid ""
-"\n"
-"\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t%2$s\n"
-"\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+#: mod/admin.php:1282
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+#: mod/admin.php:1287
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "hinzufügen"
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/network.php:547
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht Ã¶ffentlichen Beiträge empfangen kann."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
+#: mod/admin.php:1311
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/network.php:550
-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:1312
+msgid "Open"
+msgstr "Offen"
 
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Gruppe: %s"
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/network.php:669
-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:1318
+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/network.php:672
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: mod/admin.php:1322
+msgid "Don't check"
+msgstr "Nicht Ã¼berprüfen"
 
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: mod/admin.php:1323
+msgid "check the stable version"
+msgstr "überprüfe die stabile Version"
 
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: mod/admin.php:1324
+msgid "check the development version"
+msgstr "überprüfe die Entwicklungsversion"
 
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: mod/admin.php:1347
+msgid "Republish users to directory"
+msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen."
 
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: mod/admin.php:1348 mod/register.php:264
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Persönlich"
+#: mod/admin.php:1349
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/network.php:966
-msgid "New"
-msgstr "Neue"
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/network.php:969
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: mod/admin.php:1353
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: mod/admin.php:1354
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: mod/admin.php:1355
+msgid "Message Relay"
+msgstr "Nachrichten Relais"
 
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Markierte"
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: mod/admin.php:1359
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: mod/admin.php:1360
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profil-"
+#: mod/admin.php:1361
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: mod/admin.php:1361
+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/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: mod/admin.php:1362
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Familienstand"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: mod/admin.php:1364
+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/profiles.php:366
-msgid "Religion"
-msgstr "Religion"
+#: mod/admin.php:1365
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Politische Ansichten"
+#: mod/admin.php:1365
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr "Für Ã¶ffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden."
 
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Geschlecht"
+#: mod/admin.php:1366
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: mod/admin.php:1367
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/admin.php:1367
+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/profiles.php:386
-msgid "Homepage"
-msgstr "Webseite"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Interessen"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Wohnort"
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr " und "
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: mod/admin.php:1370
+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/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:1371
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " â€“ %1$ss %2$s besuchen"
+#: mod/admin.php:1371
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin Ã¼ber /help aufgerufen werden."
 
-#: mod/profiles.php: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:1372
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Zeige mehr Profil-Felder:"
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: mod/profiles.php:670
-msgid "Profile Actions"
-msgstr "Profilaktionen"
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Profilbild Ã¤ndern"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: mod/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: mod/admin.php:1377
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: mod/admin.php:1378
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: mod/admin.php:1379
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden."
 
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Profilbild"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Vorlieben"
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Status Informationen"
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: mod/admin.php:1381
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Beziehung"
+#: mod/admin.php:1382
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: mod/admin.php:1382
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
+msgstr "OEmbed nicht verwenden"
 
-#: mod/profiles.php:693
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: mod/admin.php:1383
+msgid ""
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
+msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen die unten aufgeführt werden."
 
-#: mod/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
+msgstr "Erlaubte OEmbed Domänen"
 
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr "Komma separierte Liste von Domänen für die das einbetten reichhaltiger Inhalte erlaubt sind. Platzhalter können verwendet werden."
 
-#: mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/profiles.php:702
+#: mod/admin.php:1385
 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."
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Klicken, um Ã¶ffentlichen Zugriff auf sonst Ã¶ffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: mod/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: mod/admin.php:1386
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/profiles.php:704
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Adresse:"
+#: mod/admin.php:1387
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: mod/admin.php:1387
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
 
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von Ã¶ffentlichen Beiträgen."
 
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Land:"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Alter: "
+#: mod/admin.php:1389
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1390
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir â€¦"
+#: mod/admin.php:1391
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: mod/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/profiles.php:719
+#: mod/admin.php:1392
 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."
+"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/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten für Organisationsseiten o.ä. mit der gleichen E-Mail Adresse anzulegen, um diese als ."
 
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: mod/admin.php:1394
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/profiles.php:723
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: mod/admin.php:1395
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit Ã¼berprüfen"
 
-#: mod/profiles.php:724
-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:1395
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
+msgstr "Für Besucher verfügbare Gemeinschaftsseite"
 
-#: mod/profiles.php:725
-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:1396
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Gemeinschaftsseiten verwenden."
 
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Likes:"
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: mod/admin.php:1397
+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/profiles.php:728
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/profiles.php:729
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: mod/admin.php:1398
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist Ã¶ffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: mod/profiles.php:730
-msgid "Television"
-msgstr "Fernsehen"
+#: mod/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: mod/admin.php:1399
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
 
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
 
-#: mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/profiles.php:735
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Profilbild"
+#: mod/admin.php:1404
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: mod/admin.php:1405
+msgid "Verify SSL"
+msgstr "SSL Ãœberprüfen"
 
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: mod/admin.php:1405
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Profilbild Ã¤ndern"
+#: mod/admin.php:1406
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: mod/admin.php:1407
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/register.php:99
-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:1408
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/register.php:103
-#, php-format
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
+
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
+
+#: mod/admin.php:1409
 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."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: mod/register.php:110
-msgid "Registration successful."
-msgstr "Registrierung erfolgreich."
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: mod/admin.php:1411
+msgid "Minimal Memory"
+msgstr "Minimaler Speicher"
 
-#: mod/register.php:220
+#: mod/admin.php:1411
 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."
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)"
 
-#: mod/register.php:221
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
+
+#: mod/admin.php:1412
 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."
+"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/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: mod/admin.php:1413
+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/register.php:259
-msgid "Note for the admin"
-msgstr "Hinweis für den Admin"
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte Ã¼berprüfen"
 
-#: mod/register.php:259
-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:1415
+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/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: mod/admin.php:1416
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/register.php:261
-msgid "Your invitation code: "
-msgstr "Dein Ein­la­dungs­code"
+#: mod/admin.php:1416
+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/register.php:270
-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:1417
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/register.php:271
+#: mod/admin.php:1417
 msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"be an existing address.)"
-msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"
+"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/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
-msgstr "Leer lassen um das Passwort automatisch zu generieren."
+#: mod/admin.php:1418
+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/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: mod/admin.php:1419
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/register.php:275
-#, php-format
+#: mod/admin.php:1419
 msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@%s</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@%s</strong>' sein."
+"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 um die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: mod/admin.php:1421
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Registrieren"
+#: mod/admin.php:1421
+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 Personen 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/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: mod/admin.php:1423
+msgid "Check upstream version"
+msgstr "Suche nach Updates"
 
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Gelöschter Nutzeraccount"
-
-#: mod/removeme.php:44
+#: mod/admin.php:1423
 msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
-msgstr "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden."
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
+msgstr "Wenn diese Option aktiviert ist wird regelmäßig nach neuen Friendica Versionen auf github Ã¼berprüft. Wenn es eine neue Version gibt, wird dies auf der Ãœbersichtsseite im Admin-Panel angezeigt."
 
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
-msgstr "Die ID des Users lautet %d"
+#: mod/admin.php:1424
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: mod/admin.php:1424
+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/removeme.php:77
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: mod/admin.php:1425
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+#: mod/admin.php:1425
+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:72
-msgid "Display"
-msgstr "Anzeige"
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/settings.php:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: mod/admin.php:1426
+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:93 src/Content/Nav.php:204
-msgid "Delegations"
-msgstr "Delegationen"
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/settings.php:100
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:1427
+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:114
-msgid "Remove account"
-msgstr "Konto löschen"
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/settings.php:168
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: mod/admin.php:1428
+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:279
-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:1429
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: mod/admin.php:1429
+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:300
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
+#: mod/admin.php:1430
+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:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht Ã¼berein. Das Passwort bleibt unverändert."
+#: mod/admin.php:1431
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: mod/admin.php:1431
+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:394 src/Core/Console/NewPassword.php:87
-msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
-msgstr "Das neuer Passwort wurde in einem Ã¶ffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort."
+#: mod/admin.php:1433
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/settings.php:400
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: mod/admin.php:1433
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica und Diaspora* Kontakte deiner NutzerInnen."
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: mod/admin.php:1435
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
 
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: mod/admin.php:1435
+msgid "Enabled"
+msgstr "Aktiv"
 
-#: mod/settings.php:499
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: mod/admin.php:1437
+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:512
-msgid "Invalid email."
-msgstr "Ungültige E-Mail-Adresse."
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: mod/admin.php:1438
+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 worker 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:572
-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:1439
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
 
-#: mod/settings.php:575
-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:1439
+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/settings.php:615
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
+msgstr "Aktiviere den Frontend Worker"
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: mod/admin.php:1440
+#, php-format
+msgid ""
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server."
+msgstr "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst."
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
+msgstr "Relais abonnieren"
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: mod/admin.php:1442
+msgid ""
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
+msgstr "Aktiviert den Empfang von Ã¶ffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein."
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Umleiten"
+#: mod/admin.php:1443
+msgid "Relay server"
+msgstr "Relais Server"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Icon URL"
+#: mod/admin.php:1443
+msgid ""
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
+msgstr "Adresse des Relais Servers an den die Ã¶ffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org"
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
+msgstr "Direkte Relais Ãœbertragung"
 
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: mod/admin.php:1444
+msgid ""
+"Enables the direct transfer to other servers without using the relay servers"
+msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais Server verwendet wird."
 
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Bearbeiten"
+#: mod/admin.php:1445
+msgid "Relay scope"
+msgstr "Geltungsbereich des Relais"
 
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
-
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Kein Name"
+#: mod/admin.php:1445
+msgid ""
+"Can be 'all' or 'tags'. 'all' means that every public post should be "
+"received. 'tags' means that only posts with selected tags should be "
+"received."
+msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle Ã¶ffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten."
 
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: mod/admin.php:1445
+msgid "all"
+msgstr "Alle"
 
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Keine Addon-Einstellungen konfiguriert"
+#: mod/admin.php:1445
+msgid "tags"
+msgstr "Schlagwörter"
 
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Addon Einstellungen"
+#: mod/admin.php:1446
+msgid "Server tags"
+msgstr "Server Schlagworte"
 
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr "Liste von Schlagworten die abonniert werden sollen, mit Komma getrennt."
 
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
+#: mod/admin.php:1447
+msgid "Allow user tags"
+msgstr "Verwende Schlagworte der Nutzer"
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "eingeschaltet"
+#: mod/admin.php:1447
+msgid ""
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
+msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben  definierten Server Schlagworte abonniert."
 
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/settings.php:805 mod/settings.php:806
+#: mod/admin.php:1482
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/settings.php:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
+#: mod/admin.php:1485
+#, 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:837
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Allgemeine Einstellungen zu Sozialen Medien"
+#: mod/admin.php:1500
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Inhaltswarnungen ausschalten"
+#: mod/admin.php:1503
+#, 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:848
-msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning"
-" field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
-msgstr "Nutzer von anderen Netzwerken, wie z.B. Mastodon oder Pleroma, können Inhaltswarnungen, welche die Beiträge standardmäßig einklappen. Diese Einstellung deaktiviert das automatische Einklappt solcher Beiträge und setzt die Inhaltswarnung als Titel des Beitrags. Wenn du andere Filtereinstellungen vorgenommen hast, werden diese hierdurch nicht beeinflusst."
+#: mod/admin.php:1506
+#, 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:849
-msgid "Disable intelligent shortening"
-msgstr "Intelligentes Link kürzen ausschalten"
+#: mod/admin.php:1526
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/settings.php:849
-msgid ""
-"Normally the system tries to find the best link to add to shortened posts. "
-"If this option is enabled then every shortened post will always point to the"
-" original friendica post."
-msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
+#: mod/admin.php:1527
+msgid "Check database structure"
+msgstr "Datenbank Struktur Ã¼berprüfen"
 
-#: mod/settings.php:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
+#: mod/admin.php:1532
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: mod/settings.php:850
+#: mod/admin.php:1533
 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,."
+"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:851
-msgid "Default group for OStatus contacts"
-msgstr "Voreingestellte Gruppe für OStatus Kontakte"
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Dein alter GNU Social Account"
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/settings.php:852
+#: mod/admin.php:1574
+#, php-format
 msgid ""
-"If you enter your old GNU Social/Statusnet account name here (in the format "
-"user@domain.tld), your contacts will be added automatically. The field will "
-"be emptied when done."
-msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
-
-#: mod/settings.php:855
-msgid "Repair OStatus subscriptions"
-msgstr "OStatus Abonnements reparieren"
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+"\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:860
+#: mod/admin.php:1577
+#, php-format
 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."
+"\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\tIf you ever want to delete your account, you can do so at %1$s/removeme\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %1$s/removeme  jederzeit tun.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/settings.php:861
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: mod/admin.php:1621
+#, 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:863
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: mod/admin.php:1627
+#, 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:864
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Sicherheit:"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Keine"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: mod/admin.php:1743
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Sende Ã¶ffentliche Beiträge an alle E-Mail-Kontakte:"
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/settings.php:870
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: mod/admin.php:1796
+msgid "Type"
+msgstr "Typ"
 
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: mod/admin.php:1803
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: mod/admin.php:1805
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: mod/admin.php:1806
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: mod/settings.php:914
-#, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Nicht unterstützt)"
+#: mod/admin.php:1807
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/settings.php:916
-#, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Experimentell)"
+#: mod/admin.php:1808
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: mod/admin.php:1809
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Theme:"
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: mod/admin.php:1811
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+#: mod/admin.php:1815
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/settings.php:967
-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/admin.php:1816
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/settings.php:968
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: mod/admin.php:1819
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
-msgstr "Minimum sind 10 Sekunden. Gib -1 ein um abzuschalten."
+#: mod/admin.php:1820
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: mod/admin.php:1825
+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:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: mod/admin.php:1826
+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:970
-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:1836
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: mod/admin.php:1837
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalender"
+#: mod/admin.php:1837
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Wochenbeginn:"
+#: mod/admin.php:1838
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: mod/admin.php:1880
+#, php-format
+msgid "Addon %s disabled."
+msgstr "Addon %s ausgeschaltet."
 
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: mod/admin.php:1884
+#, php-format
+msgid "Addon %s enabled."
+msgstr "Addon %s eingeschaltet."
 
-#: mod/settings.php:976
-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:1894 mod/admin.php:2143
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird."
+#: mod/admin.php:1897 mod/admin.php:2146
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Bandbreiten-Spar-Modus"
+#: mod/admin.php:1919 mod/admin.php:2188
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
+#: mod/admin.php:1927 mod/admin.php:2197
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/settings.php:978
-msgid "Smart Threading"
-msgstr "Intelligentes Threading"
+#: mod/admin.php:1928 mod/admin.php:2198
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt."
+#: mod/admin.php:1980
+msgid "Reload active addons"
+msgstr "Aktivierte Addons neu laden"
 
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Allgemeine Themeneinstellungen"
+#: mod/admin.php:1985
+#, php-format
+msgid ""
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in"
+" the open addon registry at %2$s"
+msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s und weitere eventuell interessante Addons im offenen Addon-Verzeichnis auf %2$s."
 
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Benutzerdefinierte Theme Einstellungen"
+#: mod/admin.php:2105
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Einstellungen zum Inhalt"
+#: mod/admin.php:2179
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: mod/admin.php:2233
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin."
+#: mod/admin.php:2238
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s platziert werden."
 
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Kontenarten"
+#: mod/admin.php:2239
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Unterarten der persönlichen Seite"
+#: mod/admin.php:2240
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Unterarten des Gemeinschaftsforums"
+#: mod/admin.php:2264
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr "Persönliche Seite"
+#: mod/admin.php:2296
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Konto für ein persönliches Profil."
+#: mod/admin.php:2298
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Organisationsseite"
+#: mod/admin.php:2307
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/settings.php:1058
-msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
-msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+#: mod/admin.php:2311
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: mod/settings.php:1061
-msgid "News Page"
-msgstr "Nachrichtenseite"
+#: mod/admin.php:2312
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: mod/settings.php:1062
+#: mod/admin.php:2312
 msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt."
-
-#: mod/settings.php:1065
-msgid "Community Forum"
-msgstr "Gemeinschaftsforum"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr "Konto für Diskussionsforen. "
+#: mod/admin.php:2313
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: mod/admin.php:2315
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
 
-#: mod/settings.php:1070
+#: mod/admin.php:2316
 msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr "Konto für ein normales persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden."
-
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+"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/settings.php:1074
+#: mod/admin.php:2347
+#, php-format
 msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr "Konto für ein Ã¶ffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt."
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
+msgstr "Fehler beim Ã–ffnen der Logdatei <strong>%1$s</strong>.\\r\\n<br/>Bitte Ã¼berprüfe ob die Datei %1$s existiert und gelesen werden kann."
 
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Öffentliches Forum"
-
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Bestätigt alle Kontaktanfragen automatisch."
-
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
-
-#: mod/settings.php:1082
+#: mod/admin.php:2351
+#, php-format
 msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
-msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
+msgstr "Konnte die Logdatei <strong>%1$s</strong> nicht Ã¶ffnen.\\r\\n<br/>Bitte stelle sicher, dass die Datei %1$s lesbar ist."
 
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: mod/admin.php:2443
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
 
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr "Kontaktanfragen müssen manuell bestätigt werden."
+#: mod/admin.php:2451
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/delegate.php:37
+msgid "Parent user not found."
+msgstr "Verwalter nicht gefunden."
 
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: mod/delegate.php:144
+msgid "No parent user"
+msgstr "Kein Verwalter"
 
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: mod/delegate.php:159
+msgid "Parent Password:"
+msgstr "Passwort des Verwalters"
 
-#: mod/settings.php:1105
-#, php-format
+#: mod/delegate.php:159
 msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
-msgstr "Dein Profil wird in den globalen Friendica Verzeichnissen (z.B. <a href=\"%s\">%s</a>) veröffentlicht. Dein Profil wird Ã¶ffentlich auffindbar sein."
+"Please enter the password of the parent account to legitimize your request."
+msgstr "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen."
 
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr "Verwalter"
 
-#: mod/settings.php:1111
-#, php-format
+#: mod/delegate.php:167
 msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the"
-" system settings."
-msgstr "Dein Profil wird im <a href=\"%s\">lokalen Verzeichnis</a> dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es Ã¶ffentlich auffindbar sein."
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
+msgstr "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen Ã¤ndern."
 
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: mod/delegate.php:170
+msgid "Delegates"
+msgstr "Bevollmächtigte"
 
-#: mod/settings.php:1118
+#: mod/delegate.php:172
 msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
-msgstr "Die Liste deiner Kontakte wird nicht in deinem Standard-Profil angezeigt werden. Du kannst für jedes weitere Profil diese Entscheidung separat einstellen."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: mod/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: mod/settings.php:1122
-msgid ""
-"Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
-msgstr "Anonyme Besucher deines Profils werden ausschließlich dein Profilbild, deinen Namen sowie deinen Spitznamen sehen. Ist diese Option aktiv, können keine Ã¶ffentlichen Beiträge zu Diaspora und anderen Netzwerken veröffentlicht werden."
+#: mod/delegate.php:175
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Entfernen"
 
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
+#: mod/delegate.php:179
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
-msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen."
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: mod/settings.php:1134
-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/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: mod/settings.php:1134
-msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
-msgstr "Wenn du magst, kann Friendica dich neuen Mitgliedern als Kontakt vorschlagen."
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: mod/settings.php:1138
-msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
-msgstr "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: mod/settings.php:1142
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: mod/settings.php:1148
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: mod/settings.php:1155
-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/photos.php:667
+msgid "a photo"
+msgstr "einem Foto"
 
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: mod/photos.php:667
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut."
 
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Bilddatei konnte nicht gefunden werden."
 
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: mod/photos.php:777
+msgid ""
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
+msgstr "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator."
 
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort Ã¤ndern"
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Ã„nderungen zu bestätigen"
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Passwort:"
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Zeige Ã¤lteste zuerst"
 
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Deine Sprache:"
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: mod/settings.php:1212
-msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
-msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Tags: "
 
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(klicke zum Ã¶ffnen/schließen)"
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Nicht rotieren"
 
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Karte"
 
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "– Du eine Kontaktanfrage akzeptierst"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: mod/settings.php:1255
-msgid "making an <em>interesting</em> profile change"
-msgstr "– Du eine <em>interessante</em> Ã„nderung an Deinem Profil durchführst"
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar."
 
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "– Du eine Kontaktanfrage erhältst"
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Lokale Gemeinschaft"
 
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
+#: mod/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Beiträge von Nutzern dieses Servers"
 
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf Deine Pinnwand schreibt"
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Globale Gemeinschaft"
 
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Beiträge von Nutzern des gesamten  föderalen Netzwerks"
 
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "– Du eine private Nachricht erhältst"
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "– Du eine Empfehlung erhältst"
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr "Diese Gemeinschaftsseite zeigt alle Ã¶ffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers."
 
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "– Du in einem Beitrag erwähnt wirst"
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Desktop Benachrichtigungen einschalten"
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Detaillierte Benachrichtigungen anzeigen"
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr "Normalerweise werde alle Benachrichtigungen zu einem Thema zusammengefasst in einer einzigen Mitteilung. Wenn diese Option aktiviert ist, wird jede Mitteilung angezeigt."
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "An:"
 
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr "Umziehen"
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: mod/settings.php:1281
-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/message.php:291
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: mod/settings.php:1282
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "Standard"
-
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - H:i"
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "easterbunny"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
+#: mod/message.php:416
+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."
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr "slackr"
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Variationen"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
-msgstr "Bild wiederholen"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
-msgstr "Wiederholt das Bild um den Hintergrund auszufüllen."
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
-msgstr "Strecken"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
-msgstr "Streckt Breite/Höhe des Bildes."
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Video Löschen"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
-msgstr "Größe anpassen - Ausfüllen und abschneiden"
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
-msgstr "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten"
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
-msgstr "Größe anpassen - Optimale Größe"
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
-msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Credits"
 
-#: view/theme/frio/config.php:97
-msgid "Default"
-msgstr "Standard"
+#: mod/credits.php:19
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Ãœbersetzung beigetragen haben. Dank an alle !"
 
-#: view/theme/frio/config.php:109
-msgid "Note"
-msgstr "Hinweis"
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden."
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
-msgstr "Ãœberprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontakt wird nicht mehr gefolgt"
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
-msgstr "Schema auswählen"
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
-msgstr "Hintergrundfarbe der Navigationsleiste"
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Du hast keine beidseitige Freundschaft mit diesem Kontakt."
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
-msgstr "Icon Farbe in der Navigationsleiste"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt."
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
-msgstr "Linkfarbe"
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Verbindung lösen/Nicht mehr folgen"
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
-msgstr "Hintergrundfarbe festlegen"
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
-msgstr "Opazität des Hintergrunds von Beiträgen"
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
-msgstr "Hintergrundbild festlegen"
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
-msgstr "Hintergrundbild der Login-Seite"
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
-msgstr "Hintergrundfarbe der Login-Seite"
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
-msgstr "Wenn die Theme Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer."
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
-msgstr "Gast"
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
-msgstr "Besucher"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Abmelden"
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr "Videos"
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Deine Videos"
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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"
 
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
-
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
-
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Links"
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Mitte"
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Kontaktanfragen erhalten."
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Farbschema"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
-msgstr "Komma-Separierte Liste der Helfer-Foren"
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "nicht zeigen"
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s in Kontakt stehst."
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "zeigen"
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
-msgstr "Stil auswählen"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
-msgstr "Foren"
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
-msgstr "Community-Profile"
+#: mod/dfrn_request.php:477
+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.   "
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
+#: mod/dfrn_request.php:501
+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."
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
-msgstr "Kontakte finden"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
-msgstr "Letzte Nutzer"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: mod/dfrn_request.php:530
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: mod/dfrn_request.php:642
+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:"
 
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Externer Link zum Forum"
+#: mod/dfrn_request.php:645
+#, php-format
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">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\">folge diesem Link</a> um einen Ã¶ffentlichen Friendica Server zu finden und beizutreten."
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
-msgstr "Schnell-Start"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Kontaktanfrage"
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
 
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: src/Core/UserImport.php:118
+#: mod/dfrn_request.php:653 mod/follow.php:150
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
 
-#: src/Core/UserImport.php:213
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
 
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+#: mod/dfrn_request.php:659
+#, 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."
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: src/Core/ACL.php:300
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+#: mod/crepair.php:114
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Schließen"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr "Neues Passwort eingeben:"
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr "Das Passwort kann nicht leer sein"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "System"
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Pinnwand"
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr "Kontaktdaten neu laden"
 
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
-
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - Ã¼berschreibt Name/Spitzname"
 
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL für Kontaktschaftsanfragen"
 
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Kontaktanfragen"
 
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: mod/home.php:39
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "nie"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "Jahr"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "Jahre"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "Monate"
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "Wochen"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "Tage"
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "Stunde"
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "Stunden"
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "Minute"
+#: mod/notifications.php:62 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
+#: mod/contacts.php:1019
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "Minuten"
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "Sekunde"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "Sekunden"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: src/Util/Temporal.php:318
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "vor %1$d %2$s"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: src/Content/Text/BBCode.php:1119
+#: mod/notifications.php:170
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt vor Anderen"
 
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Ungültiges Quell-Protokoll"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Ungültiges Link-Protokoll"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "ja"
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: mod/notifications.php:199
+msgid "no"
+msgstr "nein"
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Soll die Verbindung beidseitig sein oder nicht?"
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: mod/notifications.php:201 mod/notifications.php:206
+#, 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."
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Anmelden"
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr "Wenn du %s als Abonnent akzeptierst, erlaubst du damit das Lesen deiner Beiträge, wirst aber selbst die Beiträge der anderen Seite nicht erhalten."
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Homepage"
+#: mod/notifications.php:207
+#, 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."
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kontakt"
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
-
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Apps"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Abonnent"
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Gemeinschaft"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Ungelesene anzeigen"
 
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr "Unterhaltungen auf diesem und anderer Server"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Alle anzeigen"
 
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Verzeichnis"
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Keine weiteren %s Benachrichtigungen"
 
-#: src/Content/Nav.php:172
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Nicht erweitert."
 
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Der Kontakt konnte nicht hinzugefügt werden."
 
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Du hast den Kontakt bereits hinzugefügt."
 
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: mod/follow.php:83
+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."
 
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus Unterstützung ist nicht aktiviert. Der Kontakt kann nicht zugefügt werden."
 
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: mod/follow.php:97
+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."
 
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Eingang"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Ausgang"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Verwalten"
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "Kalender"
 
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profile"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Navigation"
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Sitemap"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Aufnahmeort"
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Öffentlichen Kalender exportieren"
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr "Möglichkeit für Besucher den Ã¶ffentlichen Kalender herunter zu laden"
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Niemals"
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Archiv"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Zeige Foren"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen"
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: mod/contacts.php:571
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet."
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Schlüsselwprter abrufen"
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakt"
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
+#: mod/contacts.php:614
+msgid "Their personal note"
+msgstr "Die persönliche Mitteilung"
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tagging"
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Bedarf der Bestätigung des Kontakts"
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine Ã¶ffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+#: mod/contacts.php:650
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Aktionen"
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Erweiterte Profil-Einstellungen"
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Zeige Besuchern Ã¶ffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Schlagwort Wolke"
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
-msgstr "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen."
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Mitgliedschaftsdatum anzeigen"
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden."
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Exportieren"
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Archiviert"
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: src/Content/Widget.php:53
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
+
+#: mod/contacts.php:819 mod/search.php:236
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+msgid "Results for: %s"
+msgstr "Ergebnisse für: %s"
 
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Leute finden"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Archivieren"
 
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: mod/contacts.php:832
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Globales Verzeichnis betrachten"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
 
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Netzwerke"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Alles"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Kategorien"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: src/Content/Widget.php:307
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
+
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
+
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
+
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
+
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
+
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
+
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
+
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte Ã¼berprüfe Deine E-Mail."
+
+#: mod/lostpass.php:45
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Ã„nderung angefragt hast."
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "immer wieder"
+#: mod/lostpass.php:56
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link soon to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen Ã¤ndern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Stündlich"
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine Ã¤hnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Täglich"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr "Die Anfrage ist abgelaufen. Bitte stelle eine erneute."
+
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
+
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
+
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
+
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> Ã¤ndern, sobald Du Dich erfolgreich angemeldet hast."
+
+#: mod/lostpass.php:149
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\tsomething that you will remember).\n"
+"\t\t"
+msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder Ã¤ndere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+
+#: mod/lostpass.php:155
+#, php-format
+msgid ""
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t%2$s\n"
+"\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
+
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke â€“ Setup"
+
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
+
+#: mod/install.php:205
+msgid "System check"
+msgstr "Systemtest"
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Noch einmal testen"
+
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Datenbankverbindung"
+
+#: mod/install.php:231
+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/install.php:232
+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/install.php:233
+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/install.php:237
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
+
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
+
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
+
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr "Aus Sicherheitsgründen darf das Passwort nicht leer sein."
+
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Monatlich"
+#: mod/install.php:241 mod/install.php:281
+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."
 
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zott"
+#: mod/install.php:285
+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"
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: mod/install.php:325
+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."
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</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 Worker Setup'</a>"
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
+#: mod/install.php:330
+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."
 
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
+#: mod/install.php:344
+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)"
 
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Diaspora Connector"
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU social Connector"
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "pnut"
+#: mod/install.php:358
+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."
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Männlich"
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Weiblich"
+#: mod/install.php:384
+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"
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: mod/install.php:385
+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."
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transgender"
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Intersex"
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO oder MySQLi PHP Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Neuter"
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "PHP iconv Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "PHP POSIX Modul"
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Andere"
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Männer"
+#: mod/install.php:405
+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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Frauen"
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Schwul"
+#: mod/install.php:417
+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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Fehler: PDO oder MySQLi PHP Modul erforderlich, aber nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Fehler: der MySQL Treiber für PDO ist nicht installiert"
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr "Autosexual"
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Abstinent"
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Fehler POSIX PHP Modul erforderlich aber nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr "Deviant"
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr "Fetish"
+#: mod/install.php:463
+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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr "Oodles"
+#: mod/install.php:464
+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."
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: mod/install.php:465
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Single"
+#: mod/install.php:466
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Einsam"
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr "Verfügbar"
+#: mod/install.php:479
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: mod/install.php:480
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "verknallt"
+#: mod/install.php:481
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "verliebt"
+#: mod/install.php:482
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Dating"
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
-msgstr "Untreu"
+#: mod/install.php:501
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Kontakte"
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagicx PHP Erweiterung ist nicht installiert."
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
-msgstr "Casual"
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Verlobt"
+#: mod/install.php:533
+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."
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Verheiratet"
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: mod/install.php:557
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten."
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Partner"
+#: mod/install.php:560
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"and register as new user. Remember to use the same email you have entered as"
+" administrator email. This will allow you to enter the site admin panel."
+msgstr "Du solltest nun die Seite zur <a href=\"%s/register\">Nutzerregistrierung</a> deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst."
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: mod/babel.php:23
+msgid "Source input"
+msgstr "Originaltext:"
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "wilde Ehe"
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr "BBCode::toPlaintext"
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Glücklich"
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (pures HTML)"
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr "Swinger"
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Betrogen"
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
-msgstr "Getrennt"
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Unstabil"
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Geschieden"
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
+msgstr "Original Text \\x28Diaspora Fromat\\x29"
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Verwitwet"
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Unsicher"
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr "Reine  HTML  Eingabe"
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr "HTML Eingabe"
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Frag mich"
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
-msgstr "Es gibt keine MyISAM Tabellen."
+#: mod/babel.php:115
+msgid "Source text"
+msgstr "Quelltext"
 
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\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."
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr "BBCode"
 
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr "Markdown"
 
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n"
+#: mod/babel.php:118
+msgid "HTML"
+msgstr "HTML"
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Fehler beim Ã„ndern der Datenbank aufgetreten"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Datenbank Update"
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: src/Database/DBStructure.php:460
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
 #, php-format
-msgid "%s: updating %s table."
-msgstr "%s: aktualisiere Tabelle %s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist Ã¼berschritten. Zustellung fehlgeschlagen."
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: src/Model/Item.php:1681
+#: mod/wallmessage.php:133
 #, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, Ã¼berprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: src/Model/Item.php:1686
-#, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Organisation"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Nachrichten"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Forum"
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte Ã¼berprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke"
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: src/Model/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Du musst eingeloggt sein um dieses Modul benutzen zu können."
 
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "URL der Quelle"
 
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
+msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet."
 
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Zu viele Abfragen"
 
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: mod/search.php:130
+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."
 
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Beiträge die mit %s getaggt sind"
 
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Ãœberprüfung der E-Mail-Adresse zu erzwingen."
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: src/Model/Contact.php:1332
+#: mod/uexport.php:44
 msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+"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."
 
-#: src/Model/Contact.php:1337
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: mod/uexport.php:45
+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)."
 
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Beginnt:"
+#: mod/newmember.php:14
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Endet:"
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "ganztägig"
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "Jun"
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
 
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Sep"
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen.."
 
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
+#: mod/newmember.php:22
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Ãœberprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können."
 
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: mod/newmember.php:26
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Veranstaltung kopieren"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Veranstaltung löschen"
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Ãœberprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils."
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
-msgstr "D H:i"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: src/Model/Event.php:816
-msgid "g:i A"
-msgstr "H:i"
+#: mod/newmember.php:28
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar Ã¶ffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Karte anzeigen"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Karte verbergen"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: src/Model/Group.php:44
+#: mod/newmember.php:36
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst."
 
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "bearbeiten"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Ãœber die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
 
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: mod/newmember.php:41
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Gruppen bearbeiten"
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: mod/newmember.php:45
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht Ã¶ffentlich?"
 
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Atom-Feed"
+#: mod/newmember.php:48
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr "d. F"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[heute]"
+#: mod/dfrn_confirm.php:132
+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."
 
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Mitglied seit:"
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr "j F, Y"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: src/Model/Profile.php:752
-msgid "j F"
-msgstr "j F"
+#: mod/dfrn_confirm.php:498
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Alter:"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: src/Model/Profile.php:780
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: mod/dfrn_confirm.php:519
+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."
 
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Religion:"
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: mod/dfrn_confirm.php:549
+#, 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."
 
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: mod/dfrn_confirm.php:565
+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."
 
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Fernsehen:"
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: mod/register.php:103
+#, 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."
 
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: mod/register.php:110
+msgid "Registration successful."
+msgstr "Registrierung erfolgreich."
 
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Foren:"
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Anmeldung fehlgeschlagen"
+#: mod/register.php:220
+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."
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
-msgstr "Nicht genügend Informationen für die Authentifizierung"
+#: mod/register.php:221
+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."
 
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht Ã¼berprüft werden."
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: mod/register.php:259
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
 
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte Ã¼berprüfe, dass Du die OpenID richtig geschrieben hast."
+#: mod/register.php:259
+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."
 
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr "Dein Ein­la­dungs­code"
 
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: mod/register.php:270
+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):"
 
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
+msgstr "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)"
 
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
+msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: mod/register.php:275
+#, 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@%s</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@%s</strong>' sein."
 
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
+msgstr "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet."
 
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut."
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut."
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens geprüft werden."
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Registrierung als %s"
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: src/Model/User.php:629
+#: mod/item.php:799
 #, php-format
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
-
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s folgt nun %s"
-
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "folgen"
+"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."
 
-#: src/Protocol/OStatus.php:1803
+#: mod/item.php:801
 #, php-format
-msgid "%s stopped following %s."
-msgstr "%s hat aufgehört %s zu folgen"
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: mod/item.php:802
+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."
 
-#: src/Protocol/DFRN.php:1482
+#: mod/item.php:806
 #, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
-
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
-
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr "Anhänge:"
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Passwort: "
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Links"
 
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Oder melde Dich mit Deiner OpenID an: "
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Mitte"
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: view/theme/frio/php/Image.php:25
+msgid "Repeat the image"
+msgstr "Bild wiederholen"
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: view/theme/frio/php/Image.php:25
+msgid "Will repeat your image to fill the background."
+msgstr "Wiederholt das Bild um den Hintergrund auszufüllen."
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: view/theme/frio/php/Image.php:27
+msgid "Stretch"
+msgstr "Strecken"
 
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Datenschutzerklärung"
+#: view/theme/frio/php/Image.php:27
+msgid "Will stretch to width/height of the image."
+msgstr "Streckt Breite/Höhe des Bildes."
 
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen"
-" name), an username (nickname) and a working email address. The names will "
-"be accessible on the profile page of the account by any visitor of the page,"
-" even if other profile details are not displayed. The email address will "
-"only be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or"
-" the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
-msgstr "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize fill and-clip"
+msgstr "Größe anpassen - Ausfüllen und abschneiden"
 
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the"
-" communication partners. Users can enter additional private data that may be"
-" transmitted to the communication partners accounts."
-msgstr "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner Ã¼bermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner Ã¼bermittelt werden können."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to fill and retain aspect ratio."
+msgstr "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten"
 
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
-"to delete their account they can do so at <a "
-"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
-"be permanent."
-msgstr "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den <a href=\"%1$s/settings/uexport\">Kontoeinstellungen</a> aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter <a href=\"%1$s/removeme\">%1$s/removeme</a> möglich. Die Löschung des Nutzerkontos ist permanent."
+#: view/theme/frio/php/Image.php:31
+msgid "Resize best fit"
+msgstr "Größe anpassen - Optimale Größe"
 
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: view/theme/frio/php/Image.php:31
+msgid "Resize to best fit and retain aspect ratio."
+msgstr "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten"
 
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: view/theme/frio/config.php:97
+msgid "Default"
+msgstr "Standard"
 
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Ich werde teilnehmen"
+#: view/theme/frio/config.php:109
+msgid "Note"
+msgstr "Hinweis"
 
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "Ich werde nicht teilnehmen"
+#: view/theme/frio/config.php:109
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr "Ãœberprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen"
 
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Ich werde eventuell teilnehmen"
+#: view/theme/frio/config.php:116
+msgid "Select scheme"
+msgstr "Schema auswählen"
 
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "markieren"
+#: view/theme/frio/config.php:117
+msgid "Navigation bar background color"
+msgstr "Hintergrundfarbe der Navigationsleiste"
 
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: view/theme/frio/config.php:118
+msgid "Navigation bar icon color "
+msgstr "Icon Farbe in der Navigationsleiste"
 
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: view/theme/frio/config.php:119
+msgid "Link color"
+msgstr "Linkfarbe"
 
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "markiert"
+#: view/theme/frio/config.php:120
+msgid "Set the background color"
+msgstr "Hintergrundfarbe festlegen"
 
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
+msgstr "Opazität des Hintergrunds von Beiträgen"
 
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: view/theme/frio/config.php:122
+msgid "Set the background image"
+msgstr "Hintergrundbild festlegen"
 
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr "Hintergrundbild der Login-Seite"
 
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr "Hintergrundfarbe der Login-Seite"
 
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "mag ich"
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr "Wenn die Theme Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer."
 
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "mag ich nicht"
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Gast"
 
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Weitersagen"
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Besucher"
 
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "Teilen"
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
+msgstr "Komma-Separierte Liste der Helfer-Foren"
 
-#: src/Object/Post.php:365
-msgid "to"
-msgstr "zu"
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "via"
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Foren"
 
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Fett"
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr "Kontakte finden"
 
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursiv"
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Unterstrichen"
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Zitat"
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
+msgstr "Schnell-Start"
 
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Code"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
 
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Bild"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
 
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Link"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
 
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
 
-#: src/App.php:513
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "slackr"
 
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll Ã¼berprüfen."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Variationen"
 
 #: index.php:472
 msgid "toggle mobile"
index a1213fcd7d6145f261e3a3450b78172d949fb38f..37d4561ec791f6848471b90bfcda301aad4754b2 100644 (file)
@@ -5,13 +5,7 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$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["Cancel"] = "Abbrechen";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
-$a->strings["show more"] = "mehr anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll Ã¼berprüfen.";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
        0 => "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen.",
        1 => "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.",
@@ -22,6 +16,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] =
 ];
 $a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen.";
 $a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Email erhalten um %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht um %2\$s geschickt.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb um %2\$s auf Deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst.";
+$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst.";
+$a->strings["[Friendica System Notify]"] = "[Friendica System Benachrichtigung]";
+$a->strings["registration request"] = "Registrierungsanfrage";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
 $a->strings["event"] = "Event";
 $a->strings["status"] = "Status";
 $a->strings["photo"] = "Foto";
@@ -109,6 +162,7 @@ $a->strings["Permission settings"] = "Berechtigungseinstellungen";
 $a->strings["permissions"] = "Zugriffsrechte";
 $a->strings["Public post"] = "Öffentlicher Beitrag";
 $a->strings["Preview"] = "Vorschau";
+$a->strings["Cancel"] = "Abbrechen";
 $a->strings["Post to Groups"] = "Poste an Gruppe";
 $a->strings["Post to Contacts"] = "Poste an Kontakte";
 $a->strings["Private post"] = "Privater Beitrag";
@@ -132,65 +186,6 @@ $a->strings["Undecided"] = [
        1 => "Unentschieden",
 ];
 $a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Email erhalten um %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht um %2\$s geschickt.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb um %2\$s auf Deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Kontakt-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Kontakt-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst.";
-$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als Fan zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Ã„nderungen an eurer Beziehung vornehmen willst.";
-$a->strings["[Friendica System Notify]"] = "[Friendica System Benachrichtigung]";
-$a->strings["registration request"] = "Registrierungsanfrage";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
 $a->strings["Welcome "] = "Willkommen ";
 $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
 $a->strings["Welcome back "] = "Willkommen zurück ";
@@ -279,641 +274,550 @@ $a->strings["comment"] = [
 ];
 $a->strings["post"] = "Beitrag";
 $a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$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["show more"] = "mehr anzeigen";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Blocked domain"] = "Blockierte Domain";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte Ã¼berprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Ãœberprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
 $a->strings["Connect"] = "Verbinden";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["No"] = "Nein";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$a->strings["Credits"] = "Credits";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Ãœbersetzung beigetragen haben. Dank an alle !";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
-$a->strings["Submit"] = "Senden";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - Ã¼berschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["Files"] = "Dateien";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Ãœberprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
+$a->strings["Atom feed"] = "Atom-Feed";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Change profile photo"] = "Profilbild Ã¤ndern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Ãœber:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Netzwerk:";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
 $a->strings["Profile"] = "Profil";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Ãœberprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar Ã¶ffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Ãœber die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht Ã¶ffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Not Extended"] = "Nicht erweitert.";
-$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
-$a->strings["Error"] = "Fehler";
-$a->strings["Done"] = "Erledigt";
-$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde Ã¼berschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["Import"] = "Import";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["No matches"] = "Keine Ãœbereinstimmungen";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Shall your connection be bidirectional or not?"] = "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["Location:"] = "Ort:";
-$a->strings["About:"] = "Ãœber:";
+$a->strings["Full Name:"] = "Kompletter Name:";
+$a->strings["Member since:"] = "Mitglied seit:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Hometown:"] = "Heimatort:";
 $a->strings["Tags:"] = "Tags:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Profile URL"] = "Profil URL";
-$a->strings["Network:"] = "Netzwerk:";
-$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["Login failed."] = "Anmeldung fehlgeschlagen.";
-$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["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["Remote site reported: "] = "Gegenstelle meldet: ";
-$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["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du â€žVerwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["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"] = [
-       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["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["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Blocked domain"] = "Blockierte Domain";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$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["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$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\">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\">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@gnusocial.de"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
-$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["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
-$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["- select -"] = "- auswählen -";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Forums:"] = "Foren:";
+$a->strings["Basic"] = "Allgemein";
+$a->strings["Advanced"] = "Erweitert";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
 $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$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["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde Dich an.";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
-$a->strings["Too Many Requests"] = "Zu viele Abfragen";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
-$a->strings["Results for: %s"] = "Ergebnisse für: %s";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["Image exceeds size limit of %s"] = "Bildgröße Ã¼berschreitet das Limit von %s";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist Ã¼berschritten. Zustellung fehlgeschlagen.";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, Ã¼berprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar.";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Local Community"] = "Lokale Gemeinschaft";
-$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers";
-$a->strings["Global Community"] = "Globale Gemeinschaft";
-$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten  föderalen Netzwerks";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle Ã¶ffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Delete Group"] = "Gruppe löschen";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Remove Contact"] = "Kontakt löschen";
-$a->strings["Add Contact"] = "Kontakt hinzufügen";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["%d message"] = [
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-];
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["everybody"] = "jeder";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.";
-$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden.";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator.";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige Ã¤lteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Nicht rotieren";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Map"] = "Karte";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["%s's posts"] = "Beiträge von %s";
-$a->strings["%s's comments"] = "Kommentare von %s";
-$a->strings["%s's timeline"] = "Timeline von %s";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["View"] = "Ansehen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["all-day"] = "ganztägig";
+$a->strings["Jun"] = "Jun";
+$a->strings["Sept"] = "Sep";
 $a->strings["today"] = "Heute";
 $a->strings["month"] = "Monat";
 $a->strings["week"] = "Woche";
 $a->strings["day"] = "Tag";
-$a->strings["list"] = "Liste";
+$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["Duplicate event"] = "Veranstaltung kopieren";
+$a->strings["Delete event"] = "Veranstaltung löschen";
+$a->strings["D g:i A"] = "D H:i";
+$a->strings["g:i A"] = "H:i";
+$a->strings["Show map"] = "Karte anzeigen";
+$a->strings["Hide map"] = "Karte verbergen";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Edit groups"] = "Gruppen bearbeiten";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Login failed"] = "Anmeldung fehlgeschlagen";
+$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung";
 $a->strings["User not found"] = "Nutzer nicht gefunden";
-$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
-$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
-$a->strings["calendar"] = "Kalender";
-$a->strings["%d contact edited."] = [
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
+$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["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte Ã¼berprüfe, dass Du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["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["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["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut.";
+$a->strings["Friends"] = "Kontakte";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["Registration details for %s"] = "Details der Registration von %s";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
+$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Photo Location"] = "Aufnahmeort";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
+$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
+$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den Ã¶ffentlichen Kalender herunter zu laden";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["List Forums"] = "Zeige Foren";
+$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern Ã¶ffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
+$a->strings["Tag Cloud"] = "Schlagwort Wolke";
+$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen.";
+$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen";
+$a->strings["Display membership date in profile"] = "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden.";
+$a->strings["Export"] = "Exportieren";
+$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
+$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
 ];
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Drop contact"] = "Kontakt löschen";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
-$a->strings["Contact"] = "Kontakt";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Their personal note"] = "Die persönliche Mitteilung";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine Ã¶ffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Actions"] = "Aktionen";
-$a->strings["Status"] = "Status";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
 $a->strings["Find"] = "Finde";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced"] = "Erweitert";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Parent user not found."] = "Verwalter nicht gefunden.";
-$a->strings["No parent user"] = "Kein Verwalter";
-$a->strings["Parent Password:"] = "Passwort des Verwalters";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen.";
-$a->strings["Parent User"] = "Verwalter";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen Ã¤ndern.";
-$a->strings["Save Settings"] = "Einstellungen speichern";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["%d contact in common"] = [
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
+];
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-Mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora Connector";
+$a->strings["GNU Social Connector"] = "GNU social Connector";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Männlich";
+$a->strings["Female"] = "Weiblich";
+$a->strings["Currently Male"] = "Momentan männlich";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Hauptsächlich männlich";
+$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Hermaphrodit";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Nicht spezifiziert";
+$a->strings["Other"] = "Andere";
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Vorlieben";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Jungfrauen";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "verknallt";
+$a->strings["Infatuated"] = "verliebt";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Untreu";
+$a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "imaginär verheiratet";
+$a->strings["Partners"] = "Partner";
+$a->strings["Cohabiting"] = "zusammenlebend";
+$a->strings["Common law"] = "wilde Ehe";
+$a->strings["Happy"] = "Glücklich";
+$a->strings["Not looking"] = "Nicht auf der Suche";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Unstabil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "imaginär geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$a->strings["Uncertain"] = "Unsicher";
+$a->strings["It's complicated"] = "Ist kompliziert";
+$a->strings["Don't care"] = "Ist mir nicht wichtig";
+$a->strings["Ask me"] = "Frag mich";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["External link to forum"] = "Externer Link zum Forum";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help"] = "Hilfe";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderer Server";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$a->strings["Information"] = "Information";
+$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
+$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
+$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Friend Requests"] = "Kontaktanfragen";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegationen";
 $a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Delegates"] = "Bevollmächtigte";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["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["Basic"] = "Allgemein";
-$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
-$a->strings["Event removed"] = "Veranstaltung enfternt";
-$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein um dieses Modul benutzen zu können.";
-$a->strings["Source URL"] = "URL der Quelle";
-$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 your 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-worker'>'Setup the worker'</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 Worker 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 PHP module"] = "PHP iconv Modul";
-$a->strings["POSIX PHP module"] = "PHP POSIX Modul";
-$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: POSIX PHP module required but not installed."] = "Fehler POSIX PHP Modul erforderlich aber 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 worker."] = "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.";
-$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur <a href=\"%s/register\">Nutzerregistrierung</a> deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$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["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
-$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
-$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
-$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
-$a->strings["success"] = "Erfolg";
-$a->strings["failed"] = "Fehlgeschlagen";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
+$a->strings["Admin"] = "Administration";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$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["Terms of Service"] = "Nutzungsbedingungen";
+$a->strings["Privacy Statement"] = "Datenschutzerklärung";
+$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig.";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner Ã¼bermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner Ã¼bermittelt werden können.";
+$a->strings["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den <a href=\"%1\$s/settings/uexport\">Kontoeinstellungen</a> aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter <a href=\"%1\$s/removeme\">%1\$s/removeme</a> möglich. Die Löschung des Nutzerkontos ist permanent.";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["I will attend"] = "Ich werde teilnehmen";
+$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
+$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
 $a->strings["ignored"] = "Ignoriert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["%d comment"] = [
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
+];
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Submit"] = "Senden";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
+$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\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["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = [
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+];
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Das neuer Passwort wurde in einem Ã¶ffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden";
+$a->strings["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["show"] = "zeigen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Close"] = "Schließen";
+$a->strings["System"] = "System";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["year"] = "Jahr";
+$a->strings["years"] = "Jahre";
+$a->strings["months"] = "Monate";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
+$a->strings["%s's timeline"] = "Timeline von %s";
+$a->strings["%s's posts"] = "Beiträge von %s";
+$a->strings["%s's comments"] = "Kommentare von %s";
+$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["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Results for:"] = "Ergebnisse für:";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$a->strings["No matches"] = "Keine Ãœbereinstimmungen";
+$a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
+$a->strings["Error"] = "Fehler";
+$a->strings["Done"] = "Erledigt";
+$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist.";
+$a->strings["{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["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
 $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
 $a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
 $a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Image exceeds size limit of %s"] = "Bildgröße Ã¼berschreitet das Limit von %s";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
 $a->strings["Upload File:"] = "Datei hochladen:";
 $a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload"] = "Hochladen";
 $a->strings["or"] = "oder";
 $a->strings["skip this step"] = "diesen Schritt Ã¼berspringen";
 $a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
@@ -921,474 +825,62 @@ $a->strings["Crop Image"] = "Bild zurechtschneiden";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
 $a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
 $a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
-$a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
-$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
-$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
-$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Information"] = "Information";
-$a->strings["Overview"] = "Ãœbersicht";
-$a->strings["Federation Statistics"] = "Föderation Statistik";
-$a->strings["Configuration"] = "Konfiguration";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Addons"] = "Addons";
-$a->strings["Themes"] = "Themen";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Terms of Service"] = "Nutzungsbedingungen";
-$a->strings["Database"] = "Datenbank";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
-$a->strings["Tools"] = "Werkzeuge";
-$a->strings["Contact Blocklist"] = "Kontakt Sperrliste";
-$a->strings["Server Blocklist"] = "Server Blockliste";
-$a->strings["Delete Item"] = "Eintrag löschen";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["View Logs"] = "Protokolle anzeigen";
-$a->strings["Diagnostics"] = "Diagnostik";
-$a->strings["PHP Info"] = "PHP Info";
-$a->strings["probe address"] = "Adresse untersuchen";
-$a->strings["check webfinger"] = "Webfinger Ã¼berprüfen";
-$a->strings["Admin"] = "Administration";
-$a->strings["Addon Features"] = "Addon Features";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
-$a->strings["Administration"] = "Administration";
-$a->strings["Display Terms of Service"] = "Nutzungsbedingungen anzeigen";
-$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt.";
-$a->strings["Display Privacy Statement"] = "Datenschutzerklärung anzeigen";
-$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "Zeige Informationen Ã¼ber die zum Betrieb der Seite notwendigen personenbezogenen Daten an, wie es z.B. die <a href=\"%s\" target=\"_blank\">EU-DSGVO</a> verlangt.";
-$a->strings["The Terms of Service"] = "Die Nutzungsbedingungen";
-$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Ãœberschriften sollten [h2] oder darunter sein.";
-$a->strings["The blocked domain"] = "Die blockierte Domain";
-$a->strings["Reason for the block"] = "Begründung für die Blockierung";
-$a->strings["The reason why you blocked this domain."] = "Die Begründung warum du diese Domain blockiert hast.";
-$a->strings["Delete domain"] = "Domain löschen";
-$a->strings["Check to delete this entry from the blocklist"] = "Markieren, um diesen Eintrag von der Blocklist zu entfernen";
-$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["The contact has been blocked from the node"] = "Der Kontakt wurde von diesem Knoten geblockt";
-$a->strings["Could not find any contact entry for this URL (%s)"] = "Für die URL (%s) konnte kein Kontakt gefunden werden";
-$a->strings["%s contact unblocked"] = [
-       0 => "%sKontakt wieder freigegeben",
-       1 => "%sKontakte wieder freigegeben",
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["User deleted their account"] = "Gelöschter Nutzeraccount";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden.";
+$a->strings["The user id is %d"] = "Die ID des Users lautet %d";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du â€žVerwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde Ã¼berschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["Import"] = "Import";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Kontakte darüber zu informieren, dass Du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (GNU Social/Statusnet) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = [
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
 ];
-$a->strings["Remote Contact Blocklist"] = "Sperrliste entfernter Kontakte";
-$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden.";
-$a->strings["Block Remote Contact"] = "Blockiere entfernten Kontakt";
-$a->strings["select all"] = "Alle auswählen";
-$a->strings["select none"] = "Auswahl aufheben";
-$a->strings["No remote contact is blocked from this node."] = "Derzeit werden keine Kontakte auf diesem Knoten blockiert.";
-$a->strings["Blocked Remote Contacts"] = "Blockierte Kontakte von anderen Knoten";
-$a->strings["Block New Remote Contact"] = "Blockieren von weiteren Kontakten";
-$a->strings["Photo"] = "Foto:";
-$a->strings["Address"] = "Adresse";
-$a->strings["%s total blocked contact"] = [
-       0 => "Insgesamt %s blockierter Kontakt",
-       1 => "Insgesamt %s blockierte Kontakte",
-];
-$a->strings["URL of the remote contact to block."] = "Die URL des Kontakts, vom entfernten Server, der blockiert werden soll.";
-$a->strings["Delete this Item"] = "Diesen Eintrag löschen";
-$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht.";
-$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456.";
-$a->strings["GUID"] = "GUID";
-$a->strings["The GUID of the item you want to delete."] = "Die GUID des zu löschenden Eintrags";
-$a->strings["Item marked for deletion."] = "Eintrag wurden zur Löschung markiert";
-$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 with %d registered users from the following platforms:"] = "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:";
-$a->strings["ID"] = "ID";
-$a->strings["Recipient Name"] = "Empfänger Name";
-$a->strings["Recipient Profile"] = "Empfänger Profil";
-$a->strings["Network"] = "Netzwerk";
-$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 bin/console.php dbstructure 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 bin/console.php dbstructure toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
-$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1\$s, die aktuelle Version ist %2\$s.";
-$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.";
-$a->strings["The worker was never executed. Please check your database structure!"] = "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte Ã¼berprüfe deine Datenbankstruktur.";
-$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte Ã¼berprüfe deine crontab Einstellungen.";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Automatic Follower Account"] = "Automatisch folgendes Konto (Marktschreier)";
-$a->strings["Public Forum Account"] = "Öffentliches Forum Konto";
-$a->strings["Automatic Friend Account"] = "Automatische Freunde Seite";
-$a->strings["Blog Account"] = "Blog-Konto";
-$a->strings["Private Forum Account"] = "Privates Forum Konto";
-$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
-$a->strings["Summary"] = "Zusammenfassung";
-$a->strings["Registered users"] = "Registrierte Personen";
-$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
-$a->strings["Version"] = "Version";
-$a->strings["Active addons"] = "Aktivierte Addons";
-$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 NutzerInnen dieser Seite";
-$a->strings["Public postings from the federated network"] = "Öffentliche Beiträge aus dem föderalen Netzwerk";
-$a->strings["Public postings from local users and the federated network"] = "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk";
-$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["Don't check"] = "Nicht Ã¼berprüfen";
-$a->strings["check the stable version"] = "überprüfe die stabile Version";
-$a->strings["check the development version"] = "überprüfe die Entwicklungsversion";
-$a->strings["Republish users to directory"] = "Nutzer erneut im globalen Verzeichnis veröffentlichen.";
-$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["Message Relay"] = "Nachrichten Relais";
-$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/servers."] = "Für Ã¶ffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/servers 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. You can use BBCode here."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden.";
-$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["No OEmbed rich content"] = "OEmbed nicht verwenden";
-$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen die unten aufgeführt werden.";
-$a->strings["Allowed OEmbed domains"] = "Erlaubte OEmbed Domänen";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Komma separierte Liste von Domänen für die das einbetten reichhaltiger Inhalte erlaubt sind. Platzhalter können verwendet werden.";
-$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["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 für Organisationsseiten o.ä. mit der gleichen E-Mail Adresse anzulegen, um diese als .";
-$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 pages for visitors"] = "Für Besucher verfügbare Gemeinschaftsseite";
-$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Gemeinschaftsseiten verwenden.";
-$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["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 worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 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 um 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 Personen 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["Check upstream version"] = "Suche nach Updates";
-$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Wenn diese Option aktiviert ist wird regelmäßig nach neuen Friendica Versionen auf github Ã¼berprüft. Wenn es eine neue Version gibt, wird dies auf der Ãœbersichtsseite im Admin-Panel angezeigt.";
-$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 Friendica and Diaspora* contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica und Diaspora* Kontakte deiner NutzerInnen.";
-$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
-$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
-$a->strings["Enabled"] = "Aktiv";
-$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 worker 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 \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst.";
-$a->strings["Subscribe to relay"] = "Relais abonnieren";
-$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "Aktiviert den Empfang von Ã¶ffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein.";
-$a->strings["Relay server"] = "Relais Server";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Adresse des Relais Servers an den die Ã¶ffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org";
-$a->strings["Direct relay transfer"] = "Direkte Relais Ãœbertragung";
-$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais Server verwendet wird.";
-$a->strings["Relay scope"] = "Geltungsbereich des Relais";
-$a->strings["Can be 'all' or 'tags'. 'all' means that every public post should be received. 'tags' means that only posts with selected tags should be received."] = "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle Ã¶ffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten.";
-$a->strings["all"] = "Alle";
-$a->strings["tags"] = "Schlagwörter";
-$a->strings["Server tags"] = "Server Schlagworte";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Liste von Schlagworten die abonniert werden sollen, mit Komma getrennt.";
-$a->strings["Allow user tags"] = "Verwende Schlagworte der Nutzer";
-$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben  definierten Server Schlagworte abonniert.";
-$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\tIf you ever want to delete your account, you can do so at %1\$s/removeme\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %1\$s/removeme  jederzeit tun.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4\$s.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["%s user blocked/unblocked"] = [
-       0 => "%s Benutzer geblockt/freigegeben",
-       1 => "%s Benutzer geblockt/freigegeben",
-];
-$a->strings["%s user deleted"] = [
-       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["Email"] = "E-Mail";
-$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["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["Addon %s disabled."] = "Addon %s ausgeschaltet.";
-$a->strings["Addon %s enabled."] = "Addon %s eingeschaltet.";
-$a->strings["Disable"] = "Ausschalten";
-$a->strings["Enable"] = "Einschalten";
-$a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor:";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["Reload active addons"] = "Aktivierte Addons neu laden";
-$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1\$s und weitere eventuell interessante Addons im offenen Addon-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 placed in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s platziert 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["Error trying to open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "Fehler beim Ã–ffnen der Logdatei <strong>%1\$s</strong>.\\r\\n<br/>Bitte Ã¼berprüfe ob die Datei %1\$s existiert und gelesen werden kann.";
-$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "Konnte die Logdatei <strong>%1\$s</strong> nicht Ã¶ffnen.\\r\\n<br/>Bitte stelle sicher, dass die Datei %1\$s lesbar ist.";
-$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 input"] = "Originaltext:";
-$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)";
-$a->strings["BBCode::convert"] = "BBCode::convert";
-$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
-$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
-$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert";
-$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
-$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode";
-$a->strings["Source input \\x28Diaspora format\\x29"] = "Original Text \\x28Diaspora Fromat\\x29";
-$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
-$a->strings["Raw HTML input"] = "Reine  HTML  Eingabe";
-$a->strings["HTML Input"] = "HTML Eingabe";
-$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
-$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
-$a->strings["Source text"] = "Quelltext";
-$a->strings["BBCode"] = "BBCode";
-$a->strings["Markdown"] = "Markdown";
-$a->strings["HTML"] = "HTML";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Results for:"] = "Ergebnisse für:";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden.";
-$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["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr Ã¼ber das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"";
-$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons";
-$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert";
-$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Erfahre mehr Ã¼ber die <a href=\"%1\$s/tos\">Nutzungsbedingungen</a> dieses Knotens.";
-$a->strings["On this server the following remote servers are blocked."] = "Auf diesem Server werden die folgenden entfernten Server blockiert.";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = [
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-];
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der Ã¶ffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen Ã¶ffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen Ã¶ffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden.";
-$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen Ã¼ber das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte Ã¼berprüfe Deine E-Mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Ã„nderung angefragt hast.";
-$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen Ã¤ndern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine Ã¤hnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute.";
-$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> Ã¤ndern, sobald Du Dich erfolgreich angemeldet hast.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder Ã¤ndere Dein Passwort in eines, das Du Dir leicht merken kannst).";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht Ã¶ffentlichen Beiträge empfangen kann.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der Ã¶ffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen Ã¶ffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen Ã¶ffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen Ã¼blichen Sozialen Netzwerken verbinden.";
+$a->strings["To accept this invitation, please visit and register at %s."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "Für weitere Informationen Ã¼ber das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendi.ca.";
+$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["No profile"] = "Kein Profil";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht Ã¶ffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
 ];
 $a->strings["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
 $a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
 $a->strings["Group: %s"] = "Gruppe: %s";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Ã–ffentlichkeit gelangen.";
 $a->strings["Invalid contact."] = "Ungültiger Kontakt.";
@@ -1396,7 +888,6 @@ $a->strings["Commented Order"] = "Neueste Kommentare";
 $a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
 $a->strings["Posted Order"] = "Neueste Beiträge";
 $a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Personal"] = "Persönlich";
 $a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
 $a->strings["New"] = "Neue";
 $a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
@@ -1404,13 +895,26 @@ $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["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"https://friendi.ca\">Friendi.ca</a> um mehr Ã¼ber das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["the bugtracker at github"] = "den Bugtracker auf github";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Vorschläge, Lob usw.: E-Mail an \"Info\" at \"Friendi - dot ca\"";
+$a->strings["Installed addons/apps:"] = "Installierte Apps und Addons";
+$a->strings["No installed addons/apps"] = "Es sind keine Addons oder Apps installiert";
+$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Erfahre mehr Ã¼ber die <a href=\"%1\$s/tos\">Nutzungsbedingungen</a> dieses Knotens.";
+$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["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
 $a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
 $a->strings["Religion"] = "Religion";
 $a->strings["Political Views"] = "Politische Ansichten";
@@ -1419,6 +923,7 @@ $a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
 $a->strings["XMPP"] = "XMPP";
 $a->strings["Homepage"] = "Webseite";
 $a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
 $a->strings["Location"] = "Wohnort";
 $a->strings["Profile updated."] = "Profil aktualisiert.";
 $a->strings[" and "] = " und ";
@@ -1427,13 +932,13 @@ $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s ge
 $a->strings[" - Visit %1\$s's %2\$s"] = " â€“ %1\$ss %2\$s besuchen";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
 $a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["No"] = "Nein";
 $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
 $a->strings["Show more profile fields:"] = "Zeige mehr Profil-Felder:";
 $a->strings["Profile Actions"] = "Profilaktionen";
 $a->strings["Edit Profile Details"] = "Profil bearbeiten";
 $a->strings["Change Profile Photo"] = "Profilbild Ã¤ndern";
 $a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
 $a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
 $a->strings["Clone this profile"] = "Dieses Profil duplizieren";
 $a->strings["Delete this profile"] = "Dieses Profil löschen";
@@ -1443,12 +948,11 @@ $a->strings["Preferences"] = "Vorlieben";
 $a->strings["Status information"] = "Status Informationen";
 $a->strings["Additional information"] = "Zusätzliche Informationen";
 $a->strings["Relation"] = "Beziehung";
-$a->strings["Miscellaneous"] = "Verschiedenes";
 $a->strings["Your Gender:"] = "Dein Geschlecht:";
 $a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
 $a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
 $a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Required"] = "Benötigt";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
 $a->strings["Your Full Name:"] = "Dein kompletter Name:";
 $a->strings["Title/Description:"] = "Titel/Beschreibung:";
@@ -1457,7 +961,6 @@ $a->strings["Locality/City:"] = "Wohnort:";
 $a->strings["Region/State:"] = "Region/Bundesstaat:";
 $a->strings["Postal/Zip Code:"] = "Postleitzahl:";
 $a->strings["Country:"] = "Land:";
-$a->strings["Age: "] = "Alter: ";
 $a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
 $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
 $a->strings["Since [date]:"] = "Seit [Datum]:";
@@ -1465,15 +968,11 @@ $a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir 
 $a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) Adresse";
 $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Die XMPP Adresse wird an deine Kontakte verteilt werden, so dass sie auch Ã¼ber XMPP mit dir in Kontakt treten können.";
 $a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
 $a->strings["Religious Views:"] = "Religiöse Ansichten:";
 $a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
 $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Kontakte zu finden, kann von Kontakten eingesehen werden)";
 $a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
 $a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
 $a->strings["Musical interests"] = "Musikalische Interessen";
 $a->strings["Books, literature"] = "Bücher, Literatur";
 $a->strings["Television"] = "Fernsehen";
@@ -1483,55 +982,63 @@ $a->strings["Love/romance"] = "Liebe/Romantik";
 $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Change profile photo"] = "Profilbild Ã¤ndern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden Ã¤ndern.";
-$a->strings["Registration successful."] = "Registrierung erfolgreich.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Note for the admin"] = "Hinweis für den Admin";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation code: "] = "Dein Ein­la­dungs­code";
-$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: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@%s</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["User deleted their account"] = "Gelöschter Nutzeraccount";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Ein Nutzer deiner Friendica Instanz hat seinen Account gelöscht. Bitte stelle sicher, dass deren Daten aus deinen Backups entfernt werden.";
-$a->strings["The user id is %d"] = "Die ID des Users lautet %d";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["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["View"] = "Ansehen";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["list"] = "Liste";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["Failed to remove event"] = "Entfernen der Veranstaltung fehlgeschlagen";
+$a->strings["Event removed"] = "Veranstaltung enfternt";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Subscribing to OStatus contacts"] = "OStatus Kontakten folgen";
+$a->strings["No contact provided."] = "Keine Kontakte gefunden.";
+$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen.";
+$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen.";
+$a->strings["success"] = "Erfolg";
+$a->strings["failed"] = "Fehlgeschlagen";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["everybody"] = "jeder";
+$a->strings["Account"] = "Nutzerkonto";
+$a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display"] = "Anzeige";
 $a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Delegations"] = "Delegationen";
+$a->strings["Addons"] = "Addons";
 $a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
 $a->strings["Remove account"] = "Konto löschen";
 $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Update"] = "Aktualisierungen";
 $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
 $a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
 $a->strings["Features updated"] = "Features aktualisiert";
 $a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht Ã¼berein. Das Passwort bleibt unverändert.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Das neuer Passwort wurde in einem Ã¶ffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort.";
 $a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
 $a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
 $a->strings[" Name too short."] = " Name ist zu kurz.";
 $a->strings["Wrong Password"] = "Falsches Passwort";
@@ -1541,20 +1048,22 @@ $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["Name"] = "Name";
 $a->strings["Consumer Key"] = "Consumer Key";
 $a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Umleiten";
 $a->strings["Icon url"] = "Icon URL";
 $a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
 $a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Edit"] = "Bearbeiten";
 $a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
 $a->strings["No name"] = "Kein Name";
 $a->strings["Remove authorization"] = "Autorisierung entziehen";
 $a->strings["No Addon settings configured"] = "Keine Addon-Einstellungen konfiguriert";
 $a->strings["Addon Settings"] = "Addon Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
 $a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["Diaspora"] = "Diaspora";
 $a->strings["enabled"] = "eingeschaltet";
 $a->strings["disabled"] = "ausgeschaltet";
 $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
@@ -1583,9 +1092,9 @@ $a->strings["Email password:"] = "E-Mail-Passwort:";
 $a->strings["Reply-to address:"] = "Reply-to Adresse:";
 $a->strings["Send public posts to all email contacts:"] = "Sende Ã¶ffentliche Beiträge an alle E-Mail-Kontakte:";
 $a->strings["Action after import:"] = "Aktion nach Import:";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
 $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["%s - (Unsupported)"] = "%s - (Nicht unterstützt)";
 $a->strings["%s - (Experimental)"] = "%s - (Experimentell)";
 $a->strings["Display Settings"] = "Anzeige-Einstellungen";
@@ -1666,12 +1175,13 @@ $a->strings["Expire photos:"] = "Fotos verfallen lassen:";
 $a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
 $a->strings["Account Settings"] = "Kontoeinstellungen";
 $a->strings["Password Settings"] = "Passwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
 $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort Ã¤ndern";
 $a->strings["Current Password:"] = "Aktuelles Passwort:";
 $a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Ã„nderungen zu bestätigen";
 $a->strings["Password:"] = "Passwort:";
 $a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Full Name:"] = "Kompletter Name:";
 $a->strings["Email Address:"] = "E-Mail-Adresse:";
 $a->strings["Your Timezone:"] = "Deine Zeitzone:";
 $a->strings["Your Language:"] = "Deine Sprache:";
@@ -1683,6 +1193,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl vonKontaktanfrage
 $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
 $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
 $a->strings["(click to open/close)"] = "(klicke zum Ã¶ffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
 $a->strings["Default Private Post"] = "Privater Standardbeitrag";
 $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
 $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@@ -1712,470 +1224,958 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["default"] = "Standard";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
-$a->strings["Repeat the image"] = "Bild wiederholen";
-$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
-$a->strings["Stretch"] = "Strecken";
-$a->strings["Will stretch to width/height of the image."] = "Streckt Breite/Höhe des Bildes.";
-$a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschneiden";
-$a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten";
-$a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe";
-$a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten";
-$a->strings["Default"] = "Standard";
-$a->strings["Note"] = "Hinweis";
-$a->strings["Check image permissions if all users are allowed to visit the image"] = "Ãœberprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen";
-$a->strings["Select scheme"] = "Schema auswählen";
-$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste";
-$a->strings["Navigation bar icon color "] = "Icon Farbe in der Navigationsleiste";
-$a->strings["Link color"] = "Linkfarbe";
-$a->strings["Set the background color"] = "Hintergrundfarbe festlegen";
-$a->strings["Content background opacity"] = "Opazität des Hintergrunds von Beiträgen";
-$a->strings["Set the background image"] = "Hintergrundbild festlegen";
-$a->strings["Login page background image"] = "Hintergrundbild der Login-Seite";
-$a->strings["Login page background color"] = "Hintergrundfarbe der Login-Seite";
-$a->strings["Leave background image and color empty for theme defaults"] = "Wenn die Theme Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer.";
-$a->strings["Guest"] = "Gast";
-$a->strings["Visitor"] = "Besucher";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["show"] = "zeigen";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Kontakte finden";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["External link to forum"] = "Externer Link zum Forum";
-$a->strings["Quick Start"] = "Schnell-Start";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = [
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-];
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["Close"] = "Schließen";
-$a->strings["Enter new password: "] = "Neues Passwort eingeben:";
-$a->strings["Password can't be empty"] = "Das Passwort kann nicht leer sein";
-$a->strings["System"] = "System";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["year"] = "Jahr";
-$a->strings["years"] = "Jahre";
-$a->strings["months"] = "Monate";
-$a->strings["weeks"] = "Wochen";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "vor %1\$d %2\$s";
-$a->strings["view full size"] = "Volle Größe anzeigen";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Invalid source protocol"] = "Ungültiges Quell-Protokoll";
-$a->strings["Invalid link protocol"] = "Ungültiges Link-Protokoll";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this and other servers"] = "Unterhaltungen auf diesem und anderer Server";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Photo Location"] = "Aufnahmeort";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden.";
-$a->strings["Export Public Calendar"] = "Öffentlichen Kalender exportieren";
-$a->strings["Ability for visitors to download the public calendar"] = "Möglichkeit für Besucher den Ã¶ffentlichen Kalender herunter zu laden";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["List Forums"] = "Zeige Foren";
-$a->strings["Enable widget to display the forums your are connected with"] = "Aktiviere Widget, um die Foren mit denen du verbunden bist anzuzeigen";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
-$a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern Ã¶ffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
-$a->strings["Tag Cloud"] = "Schlagwort Wolke";
-$a->strings["Provide a personal tag cloud on your profile page"] = "Wortwolke aus den von dir verwendeten Schlagwörtern im Profil anzeigen.";
-$a->strings["Display Membership Date"] = "Mitgliedschaftsdatum anzeigen";
-$a->strings["Display membership date in profile"] = "Soll das Datum der Registrierung deines Accounts im Profil angezeigt werden.";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Export"] = "Exportieren";
-$a->strings["Export calendar as ical"] = "Kalender als ical exportieren";
-$a->strings["Export calendar as csv"] = "Kalender als csv exportieren";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = [
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde Dich an.";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Kontaktgruppe anlegen.";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Delete Group"] = "Gruppe löschen";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Edit Group Name"] = "Gruppen Name bearbeiten";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Remove Contact"] = "Kontakt löschen";
+$a->strings["Add Contact"] = "Kontakt hinzufügen";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Files"] = "Dateien";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Overview"] = "Ãœbersicht";
+$a->strings["Federation Statistics"] = "Föderation Statistik";
+$a->strings["Configuration"] = "Konfiguration";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Themes"] = "Themen";
+$a->strings["Database"] = "Datenbank";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Inspect Queue"] = "Warteschlange Inspizieren";
+$a->strings["Tools"] = "Werkzeuge";
+$a->strings["Contact Blocklist"] = "Kontakt Sperrliste";
+$a->strings["Server Blocklist"] = "Server Blockliste";
+$a->strings["Delete Item"] = "Eintrag löschen";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["View Logs"] = "Protokolle anzeigen";
+$a->strings["Diagnostics"] = "Diagnostik";
+$a->strings["PHP Info"] = "PHP Info";
+$a->strings["probe address"] = "Adresse untersuchen";
+$a->strings["check webfinger"] = "Webfinger Ã¼berprüfen";
+$a->strings["Addon Features"] = "Addon Features";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
+$a->strings["Administration"] = "Administration";
+$a->strings["Display Terms of Service"] = "Nutzungsbedingungen anzeigen";
+$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "Aktiviert die Seite für die Nutzungsbedingungen. Ist dies der Fall werden sie auch von der Registrierungsseite und der allgemeinen Informationsseite verlinkt.";
+$a->strings["Display Privacy Statement"] = "Datenschutzerklärung anzeigen";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "Zeige Informationen Ã¼ber die zum Betrieb der Seite notwendigen personenbezogenen Daten an, wie es z.B. die <a href=\"%s\" target=\"_blank\">EU-DSGVO</a> verlangt.";
+$a->strings["The Terms of Service"] = "Die Nutzungsbedingungen";
+$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Füge hier die Nutzungsbedingungen deines Knotens ein. Du kannst BBCode zur Formatierung verwenden. Ãœberschriften sollten [h2] oder darunter sein.";
+$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["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["%s contact unblocked"] = [
+       0 => "%sKontakt wieder freigegeben",
+       1 => "%sKontakte wieder freigegeben",
 ];
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["View Global Directory"] = "Globales Verzeichnis betrachten";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["%d contact in common"] = [
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
+$a->strings["Remote Contact Blocklist"] = "Sperrliste entfernter Kontakte";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Auf dieser Seite kannst du Accounts von anderen Knoten blockieren und damit verhindern, dass ihre Beiträge von deinem Knoten angenommen werden.";
+$a->strings["Block Remote Contact"] = "Blockiere entfernten Kontakt";
+$a->strings["select all"] = "Alle auswählen";
+$a->strings["select none"] = "Auswahl aufheben";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["No remote contact is blocked from this node."] = "Derzeit werden keine Kontakte auf diesem Knoten blockiert.";
+$a->strings["Blocked Remote Contacts"] = "Blockierte Kontakte von anderen Knoten";
+$a->strings["Block New Remote Contact"] = "Blockieren von weiteren Kontakten";
+$a->strings["Photo"] = "Foto:";
+$a->strings["Profile URL"] = "Profil URL";
+$a->strings["%s total blocked contact"] = [
+       0 => "Insgesamt %s blockierter Kontakt",
+       1 => "Insgesamt %s blockierte Kontakte",
 ];
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora Connector";
-$a->strings["GNU Social Connector"] = "GNU social Connector";
-$a->strings["pnut"] = "pnut";
-$a->strings["App.net"] = "App.net";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Hauptsächlich männlich";
-$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Hermaphrodit";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Nicht spezifiziert";
-$a->strings["Other"] = "Andere";
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Vorlieben";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Jungfrauen";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Nonsexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "verknallt";
-$a->strings["Infatuated"] = "verliebt";
-$a->strings["Dating"] = "Dating";
-$a->strings["Unfaithful"] = "Untreu";
-$a->strings["Sex Addict"] = "Sexbesessen";
-$a->strings["Friends"] = "Kontakte";
-$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Verlobt";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "imaginär verheiratet";
-$a->strings["Partners"] = "Partner";
-$a->strings["Cohabiting"] = "zusammenlebend";
-$a->strings["Common law"] = "wilde Ehe";
-$a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht auf der Suche";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Unstabil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "imaginär geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$a->strings["Uncertain"] = "Unsicher";
-$a->strings["It's complicated"] = "Ist kompliziert";
-$a->strings["Don't care"] = "Ist mir nicht wichtig";
-$a->strings["Ask me"] = "Frag mich";
-$a->strings["There are no tables on MyISAM."] = "Es gibt keine MyISAM Tabellen.";
-$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Fehler beim Ã„ndern der Datenbank aufgetreten";
-$a->strings[": Database update"] = ": Datenbank Update";
-$a->strings["%s: updating %s table."] = "%s: aktualisiere Tabelle %s";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "Der Kontakt konnte nicht hinzugefügt werden. Bitte Ã¼berprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Ãœberprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["all-day"] = "ganztägig";
-$a->strings["Jun"] = "Jun";
-$a->strings["Sept"] = "Sep";
-$a->strings["No events to display"] = "Keine Veranstaltung zum Anzeigen";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["Duplicate event"] = "Veranstaltung kopieren";
-$a->strings["Delete event"] = "Veranstaltung löschen";
-$a->strings["D g:i A"] = "D H:i";
-$a->strings["g:i A"] = "H:i";
-$a->strings["Show map"] = "Karte anzeigen";
-$a->strings["Hide map"] = "Karte verbergen";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Edit groups"] = "Gruppen bearbeiten";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Atom feed"] = "Atom-Feed";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Member since:"] = "Mitglied seit:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Forums:"] = "Foren:";
-$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["Login failed"] = "Anmeldung fehlgeschlagen";
-$a->strings["Not enough information to authenticate"] = "Nicht genügend Informationen für die Authentifizierung";
-$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["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte Ã¼berprüfe, dass Du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["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["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["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["An error occurred creating your self contact. Please try again."] = "Bei der Erstellung deines self Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut.";
-$a->strings["An error occurred creating your default contact group. Please try again."] = "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account muss noch vom Admin des Knotens geprüft werden.";
-$a->strings["Registration at %s"] = "Registrierung als %s";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %3\$s/removeme jederzeit tun.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$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["%s\\'s birthday"] = "%ss Geburtstag";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$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["Logged out."] = "Abgemeldet.";
-$a->strings["Privacy Statement"] = "Datenschutzerklärung";
-$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "Zum Zwecke der Registrierung und um die Kommunikation zwischen dem Nutzer und seinen Kontakten zu gewährleisten, muß der Nutzer einen Namen (auch Pseudonym) und einen Nutzernamen (Spitzname) sowie eine funktionierende E-Mail-Adresse angeben. Der Name ist auf der Profilseite für alle Nutzer sichtbar, auch wenn die Profildetails nicht angezeigt werden.\nDie E-Mail-Adresse wird nur zur Benachrichtigung des Nutzers verwendet, sie wird nirgends angezeigt. Die Anzeige des Nutzerkontos im Server-Verzeichnis bzw. dem weltweiten Verzeichnis erfolgt gemäß den Einstellungen des Nutzers, sie ist zur Kommunikation nicht zwingend notwendig.";
-$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "Diese Daten sind für die Kommunikation notwendig und werden an die Knoten der Kommunikationspartner Ã¼bermittelt. Nutzer können weitere private Angaben machen, die ebenfalls an die verwendeten Server der Kommunikationspartner Ã¼bermittelt werden können.";
-$a->strings["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "Angemeldete Nutzer können ihre Nutzerdaten jederzeit von den <a href=\"%1\$s/settings/uexport\">Kontoeinstellungen</a> aus exportieren. Wenn ein Nutzer wünscht das Nutzerkonto zu löschen, so ist dies jederzeit unter <a href=\"%1\$s/removeme\">%1\$s/removeme</a> möglich. Die Löschung des Nutzerkontos ist permanent.";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["I will attend"] = "Ich werde teilnehmen";
-$a->strings["I will not attend"] = "Ich werde nicht teilnehmen";
-$a->strings["I might attend"] = "Ich werde eventuell teilnehmen";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["like"] = "mag ich";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["to"] = "zu";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["%d comment"] = [
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
+$a->strings["URL of the remote contact to block."] = "Die URL des Kontakts, vom entfernten Server, der blockiert werden soll.";
+$a->strings["Delete this Item"] = "Diesen Eintrag löschen";
+$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Auf dieser Seite kannst du Einträge von deinem Knoten löschen. Wenn der Eintrag der Anfang einer Diskussion ist, wird der gesamte Diskussionsverlauf gelöscht.";
+$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Zur Löschung musst du die GUID des Eintrags kennen. Diese findest du z.B. durch die /display URL des Eintrags. Der letzte Teil der URL ist die GUID. Lautet die URL beispielsweise http://example.com/display/123456 ist die GUID 123456.";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Die GUID des zu löschenden Eintrags";
+$a->strings["Item marked for deletion."] = "Eintrag wurden zur Löschung markiert";
+$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 with %d registered users from the following platforms:"] = "Momentan kennt dieser Knoten %d Knoten mit insgesamt %d registrierten Nutzern, die die folgenden Plattformen verwenden:";
+$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 bin/console.php dbstructure 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 bin/console.php dbstructure toinnodb</tt> auf der Kommandozeile die Umstellung automatisch vornehmen lassen.";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1\$s, die aktuelle Version ist %2\$s.";
+$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte Ã¼berprüfe deine Datenbankstruktur.";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte Ã¼berprüfe deine crontab Einstellungen.";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Automatic Follower Account"] = "Automatisch folgendes Konto (Marktschreier)";
+$a->strings["Public Forum Account"] = "Öffentliches Forum Konto";
+$a->strings["Automatic Friend Account"] = "Automatische Freunde Seite";
+$a->strings["Blog Account"] = "Blog-Konto";
+$a->strings["Private Forum Account"] = "Privates Forum Konto";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
+$a->strings["Summary"] = "Zusammenfassung";
+$a->strings["Registered users"] = "Registrierte Personen";
+$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
+$a->strings["Version"] = "Version";
+$a->strings["Active addons"] = "Aktivierte Addons";
+$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 NutzerInnen dieser Seite";
+$a->strings["Public postings from the federated network"] = "Öffentliche Beiträge aus dem föderalen Netzwerk";
+$a->strings["Public postings from local users and the federated network"] = "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk";
+$a->strings["Disabled"] = "Deaktiviert";
+$a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
+$a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
+$a->strings["One month"] = "ein Monat";
+$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["Don't check"] = "Nicht Ã¼berprüfen";
+$a->strings["check the stable version"] = "überprüfe die stabile Version";
+$a->strings["check the development version"] = "überprüfe die Entwicklungsversion";
+$a->strings["Republish users to directory"] = "Nutzer erneut im globalen Verzeichnis veröffentlichen.";
+$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["Message Relay"] = "Nachrichten Relais";
+$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/servers."] = "Für Ã¶ffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/servers 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. You can use BBCode here."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden.";
+$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["No OEmbed rich content"] = "OEmbed nicht verwenden";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen die unten aufgeführt werden.";
+$a->strings["Allowed OEmbed domains"] = "Erlaubte OEmbed Domänen";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "Komma separierte Liste von Domänen für die das einbetten reichhaltiger Inhalte erlaubt sind. Platzhalter können verwendet werden.";
+$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["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 für Organisationsseiten o.ä. mit der gleichen E-Mail Adresse anzulegen, um diese als .";
+$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 pages for visitors"] = "Für Besucher verfügbare Gemeinschaftsseite";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Gemeinschaftsseiten verwenden.";
+$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["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 worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 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 um 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 Personen 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["Check upstream version"] = "Suche nach Updates";
+$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "Wenn diese Option aktiviert ist wird regelmäßig nach neuen Friendica Versionen auf github Ã¼berprüft. Wenn es eine neue Version gibt, wird dies auf der Ãœbersichtsseite im Admin-Panel angezeigt.";
+$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 Friendica and Diaspora* contacts of all users."] = "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica und Diaspora* Kontakte deiner NutzerInnen.";
+$a->strings["RINO Encryption"] = "RINO Verschlüsselung";
+$a->strings["Encryption layer between nodes."] = "Verschlüsselung zwischen Friendica Instanzen";
+$a->strings["Enabled"] = "Aktiv";
+$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 worker 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 \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "Ist diese Option aktiv, wird der Worker Prozess durch Aktionen am Frontend gestartet (z.B. wenn Nachrichten zugestellt werden). Auf kleineren Seiten sollte %s/worker regelmäßig, beispielsweise durch einen externen Cron Anbieter, aufgerufen werden. Du solltest dies Option nur dann aktivieren, wenn du keinen Cron Job auf deinem eigenen Server starten kannst.";
+$a->strings["Subscribe to relay"] = "Relais abonnieren";
+$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "Aktiviert den Empfang von Ã¶ffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein.";
+$a->strings["Relay server"] = "Relais Server";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "Adresse des Relais Servers an den die Ã¶ffentlichen Beiträge gesendet werden sollen. Zum Beispiel https://relay.diasp.org";
+$a->strings["Direct relay transfer"] = "Direkte Relais Ãœbertragung";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais Server verwendet wird.";
+$a->strings["Relay scope"] = "Geltungsbereich des Relais";
+$a->strings["Can be 'all' or 'tags'. 'all' means that every public post should be received. 'tags' means that only posts with selected tags should be received."] = "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle Ã¶ffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten.";
+$a->strings["all"] = "Alle";
+$a->strings["tags"] = "Schlagwörter";
+$a->strings["Server tags"] = "Server Schlagworte";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "Liste von Schlagworten die abonniert werden sollen, mit Komma getrennt.";
+$a->strings["Allow user tags"] = "Verwende Schlagworte der Nutzer";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben  definierten Server Schlagworte abonniert.";
+$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\tIf you ever want to delete your account, you can do so at %1\$s/removeme\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\nSolltest du dein Nutzerkonto löschen wollen, kannst du dies unter %1\$s/removeme  jederzeit tun.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4\$s.";
+$a->strings["%s user blocked/unblocked"] = [
+       0 => "%s Benutzer geblockt/freigegeben",
+       1 => "%s Benutzer geblockt/freigegeben",
+];
+$a->strings["%s user deleted"] = [
+       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["Private Forum"] = "Privates Forum";
+$a->strings["Register date"] = "Anmeldedatum";
+$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Type"] = "Typ";
+$a->strings["Add User"] = "Nutzer hinzufügen";
+$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["Addon %s disabled."] = "Addon %s ausgeschaltet.";
+$a->strings["Addon %s enabled."] = "Addon %s eingeschaltet.";
+$a->strings["Disable"] = "Ausschalten";
+$a->strings["Enable"] = "Einschalten";
+$a->strings["Toggle"] = "Umschalten";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["Reload active addons"] = "Aktivierte Addons neu laden";
+$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1\$s und weitere eventuell interessante Addons im offenen Addon-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 placed in %1\$s"] = "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1\$s platziert 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["Error trying to open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "Fehler beim Ã–ffnen der Logdatei <strong>%1\$s</strong>.\\r\\n<br/>Bitte Ã¼berprüfe ob die Datei %1\$s existiert und gelesen werden kann.";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "Konnte die Logdatei <strong>%1\$s</strong> nicht Ã¶ffnen.\\r\\n<br/>Bitte stelle sicher, dass die Datei %1\$s lesbar ist.";
+$a->strings["Lock feature %s"] = "Feature festlegen: %s";
+$a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
+$a->strings["Parent user not found."] = "Verwalter nicht gefunden.";
+$a->strings["No parent user"] = "Kein Verwalter";
+$a->strings["Parent Password:"] = "Passwort des Verwalters";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "Bitte gib das Passwort des Verwalters ein um deine Anfrage zu bestätigen.";
+$a->strings["Parent User"] = "Verwalter";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "Verwalter haben Zugriff auf alle Funktionen dieses Benutzerkontos und können dessen Einstellungen Ã¤ndern.";
+$a->strings["Delegates"] = "Bevollmächtigte";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["Image upload didn't complete, please try again"] = "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut.";
+$a->strings["Image file is missing"] = "Bilddatei konnte nicht gefunden werden.";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "Der Server kann derzeit keine neuen Datei Uploads akzeptieren. Bitte kontaktiere deinen Administrator.";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige Ã¤lteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Nicht rotieren";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["Map"] = "Karte";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Community option not available."] = "Optionen für die Gemeinschaftsseite nicht verfügbar.";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Local Community"] = "Lokale Gemeinschaft";
+$a->strings["Posts from local users on this server"] = "Beiträge von Nutzern dieses Servers";
+$a->strings["Global Community"] = "Globale Gemeinschaft";
+$a->strings["Posts from users of the whole federated network"] = "Beiträge von Nutzern des gesamten  föderalen Netzwerks";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Diese Gemeinschaftsseite zeigt alle Ã¶ffentlichen Beiträge, die auf diesem Knoten eingegangen sind. Der Inhalt entspricht nicht zwingend der Meinung der Nutzer dieses Servers.";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - H:i";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["%d message"] = [
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
 ];
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["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.";
+$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Credits"] = "Credits";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Ãœbersetzung beigetragen haben. Dank an alle !";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "Der Kontakt konnte nicht gefunden oder nicht entfolgt werden.";
+$a->strings["Contact unfollowed"] = "Kontakt wird nicht mehr gefolgt";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["You aren't a friend of this contact."] = "Du hast keine beidseitige Freundschaft mit diesem Kontakt.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Bei diesem Netzwerk wird das Entfolgen derzeit nicht unterstützt.";
+$a->strings["Disconnect/Unfollow"] = "Verbindung lösen/Nicht mehr folgen";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
+$a->strings["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"] = [
+       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["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["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$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\">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\">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@gnusocial.de"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$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["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
+$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["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["Refetch contact data"] = "Kontaktdaten neu laden";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - Ã¼berschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Kontaktschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Kontaktanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor Anderen";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["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["Not Extended"] = "Nicht erweitert.";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["The contact could not be added."] = "Der Kontakt konnte nicht hinzugefügt werden.";
+$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["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
+$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
+$a->strings["calendar"] = "Kalender";
+$a->strings["%d contact edited."] = [
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
+];
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Drop contact"] = "Kontakt löschen";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["Never"] = "Niemals";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Zusätzliche Informationen wie Vorschaubilder, Titel und Zusammenfassungen vom Feed-Eintrag laden. Du kannst diese Option aktivieren, wenn der Feed nicht all zu viel Text beinhaltet. Schlagwörter werden auf den Meta-Informationen des Feed-Headers bezogen und als Hash-Tags verwendet.";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch keywords"] = "Schlüsselwprter abrufen";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Contact"] = "Kontakt";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Their personal note"] = "Die persönliche Mitteilung";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Awaiting connection acknowledge"] = "Bedarf der Bestätigung des Kontakts";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine Ã¶ffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Results for: %s"] = "Ergebnisse für: %s";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Batch Actions"] = "Stapelverarbeitung";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte Ã¼berprüfe Deine E-Mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Ã„nderung angefragt hast.";
+$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen Ã¤ndern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine Ã¤hnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Request has expired, please make a new one."] = "Die Anfrage ist abgelaufen. Bitte stelle eine erneute.";
+$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> Ã¤ndern, sobald Du Dich erfolgreich angemeldet hast.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder Ã¤ndere Dein Passwort in eines, das Du Dir leicht merken kannst).";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
+$a->strings["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 your 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-worker'>'Setup the worker'</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 Worker 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 PHP module"] = "PHP iconv Modul";
+$a->strings["POSIX PHP module"] = "PHP POSIX Modul";
+$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: POSIX PHP module required but not installed."] = "Fehler POSIX PHP Modul erforderlich aber 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 worker."] = "Wichtig: Du musst [manuell] einen Cronjob (o.ä.) für den Worker einrichten.";
+$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Du solltest nun die Seite zur <a href=\"%s/register\">Nutzerregistrierung</a> deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran die selbe E-Mail Adresse anzugeben, die du auch als Administrator E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst.";
+$a->strings["Source input"] = "Originaltext:";
+$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext";
+$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (pures HTML)";
+$a->strings["BBCode::convert"] = "BBCode::convert";
+$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
+$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode";
+$a->strings["Source input \\x28Diaspora format\\x29"] = "Original Text \\x28Diaspora Fromat\\x29";
+$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
+$a->strings["Raw HTML input"] = "Reine  HTML  Eingabe";
+$a->strings["HTML Input"] = "HTML Eingabe";
+$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
+$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
+$a->strings["Source text"] = "Quelltext";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "Markdown";
+$a->strings["HTML"] = "HTML";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist Ã¼berschritten. Zustellung fehlgeschlagen.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, Ã¼berprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["You must be logged in to use this module"] = "Du musst eingeloggt sein um dieses Modul benutzen zu können.";
+$a->strings["Source URL"] = "URL der Quelle";
+$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet.";
+$a->strings["Too Many Requests"] = "Zu viele Abfragen";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet.";
+$a->strings["Items tagged with: %s"] = "Beiträge die mit %s getaggt sind";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Kontakte mit anderen im Friendica Netzwerk zu knüpfen..";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Ãœberprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Kontakte und potentiellen Kontakte wissen genau, wie sie Dich finden können.";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Kontakte zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Ãœberprüfe die Einstellungen zum Verbergen Deiner Kontaktliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar Ã¶ffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Kontakten und Mailinglisten interagieren willst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Personen in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Ãœber die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Personen zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Leute vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Kontakte gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht Ã¶ffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["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["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["Remote site reported: "] = "Gegenstelle meldet: ";
+$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["- select -"] = "- auswählen -";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden Ã¤ndern.";
+$a->strings["Registration successful."] = "Registrierung erfolgreich.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Note for the admin"] = "Hinweis für den Admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation code: "] = "Dein Ein­la­dungs­code";
+$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: (Initial information will be send there, so this has to be an existing address.)"] = "Deine E-Mail Adresse (Informationen zur Registrierung werden an diese Adresse gesendet, darum muss sie existieren.)";
+$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren.";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@%s</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "Nur eingeloggten Benutzern ist das Untersuchen von Adressen gestattet.";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$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["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Repeat the image"] = "Bild wiederholen";
+$a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
+$a->strings["Stretch"] = "Strecken";
+$a->strings["Will stretch to width/height of the image."] = "Streckt Breite/Höhe des Bildes.";
+$a->strings["Resize fill and-clip"] = "Größe anpassen - Ausfüllen und abschneiden";
+$a->strings["Resize to fill and retain aspect ratio."] = "Größe anpassen: Ausfüllen und Seitenverhältnis beibehalten";
+$a->strings["Resize best fit"] = "Größe anpassen - Optimale Größe";
+$a->strings["Resize to best fit and retain aspect ratio."] = "Größe anpassen - Optimale Größe und Seitenverhältnisse beibehalten";
+$a->strings["Default"] = "Standard";
+$a->strings["Note"] = "Hinweis";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "Ãœberprüfe, dass alle Benutzer die Berechtigung haben dieses Bild anzusehen";
+$a->strings["Select scheme"] = "Schema auswählen";
+$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste";
+$a->strings["Navigation bar icon color "] = "Icon Farbe in der Navigationsleiste";
+$a->strings["Link color"] = "Linkfarbe";
+$a->strings["Set the background color"] = "Hintergrundfarbe festlegen";
+$a->strings["Content background opacity"] = "Opazität des Hintergrunds von Beiträgen";
+$a->strings["Set the background image"] = "Hintergrundbild festlegen";
+$a->strings["Login page background image"] = "Hintergrundbild der Login-Seite";
+$a->strings["Login page background color"] = "Hintergrundfarbe der Login-Seite";
+$a->strings["Leave background image and color empty for theme defaults"] = "Wenn die Theme Vorgaben verwendet werden sollen, lass bitte die Felder für die Hintergrundfarbe und das Hintergrundbild leer.";
+$a->strings["Guest"] = "Gast";
+$a->strings["Visitor"] = "Besucher";
+$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren";
+$a->strings["Set style"] = "Stil auswählen";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Find Friends"] = "Kontakte finden";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Quick Start"] = "Schnell-Start";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
 $a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
index 29f95aba8d91161fec48d6647e3cf2f27fd00d71..fe36d4d0e0f614ae7b96d982ce74bb9b12072420 100644 (file)
@@ -14,9 +14,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-04-20 09:30+0200\n"
-"PO-Revision-Date: 2018-04-21 15:04+0000\n"
-"Last-Translator: Kris\n"
+"POT-Creation-Date: 2018-04-22 11:15+0200\n"
+"PO-Revision-Date: 2018-04-22 14:11+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -24,67 +24,10 @@ msgstr ""
 "Language: fi_FI\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: include/items.php:342 mod/notice.php:22 mod/viewsrc.php:21
-#: mod/display.php:72 mod/display.php:252 mod/display.php:354
-#: mod/admin.php:276 mod/admin.php:1854 mod/admin.php:2102
-msgid "Item not found."
-msgstr "Kohdetta ei löytynyt."
-
-#: include/items.php:382
-msgid "Do you really want to delete this item?"
-msgstr "Haluatko varmasti poistaa tämän kohteen?"
-
-#: include/items.php:384 mod/api.php:110 mod/suggest.php:38
-#: mod/dfrn_request.php:653 mod/message.php:138 mod/contacts.php:472
-#: mod/follow.php:150 mod/profiles.php:636 mod/profiles.php:639
-#: mod/profiles.php:661 mod/register.php:237 mod/settings.php:1105
-#: mod/settings.php:1111 mod/settings.php:1118 mod/settings.php:1122
-#: mod/settings.php:1126 mod/settings.php:1130 mod/settings.php:1134
-#: mod/settings.php:1138 mod/settings.php:1158 mod/settings.php:1159
-#: mod/settings.php:1160 mod/settings.php:1161 mod/settings.php:1162
-msgid "Yes"
-msgstr "Kyllä"
-
-#: include/items.php:387 include/conversation.php:1352 mod/fbrowser.php:103
-#: mod/fbrowser.php:134 mod/suggest.php:41 mod/dfrn_request.php:663
-#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149 mod/message.php:141
-#: mod/photos.php:248 mod/photos.php:324 mod/videos.php:147
-#: mod/contacts.php:475 mod/unfollow.php:117 mod/follow.php:161
-#: mod/settings.php:676 mod/settings.php:702
-msgid "Cancel"
-msgstr "Peru"
-
-#: include/items.php:401 mod/allfriends.php:21 mod/api.php:35 mod/api.php:40
-#: mod/attach.php:38 mod/common.php:26 mod/crepair.php:98 mod/nogroup.php:28
-#: mod/repair_ostatus.php:13 mod/suggest.php:60 mod/uimport.php:28
-#: mod/notifications.php:73 mod/dfrn_confirm.php:68 mod/manage.php:131
-#: mod/wall_attach.php:74 mod/wall_attach.php:77 mod/poke.php:150
-#: mod/regmod.php:108 mod/viewcontacts.php:57 mod/wall_upload.php:103
-#: mod/wall_upload.php:106 mod/wallmessage.php:16 mod/wallmessage.php:40
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/editpost.php:18
-#: mod/fsuggest.php:80 mod/group.php:26 mod/message.php:59 mod/message.php:104
-#: mod/notes.php:30 mod/photos.php:174 mod/photos.php:1051 mod/cal.php:304
-#: mod/contacts.php:386 mod/delegate.php:25 mod/delegate.php:43
-#: mod/delegate.php:54 mod/events.php:194 mod/item.php:160
-#: mod/ostatus_subscribe.php:16 mod/profile_photo.php:30
-#: mod/profile_photo.php:176 mod/profile_photo.php:187
-#: mod/profile_photo.php:200 mod/unfollow.php:15 mod/unfollow.php:57
-#: mod/unfollow.php:90 mod/dirfind.php:25 mod/follow.php:17 mod/follow.php:54
-#: mod/follow.php:118 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
-#: mod/profiles.php:182 mod/profiles.php:606 mod/register.php:53
-#: mod/settings.php:42 mod/settings.php:141 mod/settings.php:665 index.php:444
-msgid "Permission denied."
-msgstr "Käyttöoikeus evätty."
-
-#: include/items.php:471
-msgid "Archives"
-msgstr "Arkisto"
-
-#: include/items.php:477 view/theme/vier/theme.php:259
-#: src/Content/ForumManager.php:130 src/Content/Widget.php:312
-#: src/Object/Post.php:430 src/App.php:512
-msgid "show more"
-msgstr "näytä lisää"
+#: boot.php:795
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "%s päivitys epäonnistui, katso virhelokit."
 
 #: include/api.php:1202
 #, php-format
@@ -106,358 +49,651 @@ msgstr[1] "Viikottainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.
 msgid "Monthly posting limit of %d post reached. The post was rejected."
 msgstr "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty."
 
-#: include/api.php:4523 mod/photos.php:88 mod/photos.php:194
-#: mod/photos.php:722 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1684 mod/profile_photo.php:85 mod/profile_photo.php:93
+#: include/api.php:4523 src/Model/User.php:549 src/Model/User.php:557
+#: src/Model/User.php:565 mod/profile_photo.php:85 mod/profile_photo.php:93
 #: mod/profile_photo.php:101 mod/profile_photo.php:211
-#: mod/profile_photo.php:302 mod/profile_photo.php:312 src/Model/User.php:553
-#: src/Model/User.php:561 src/Model/User.php:569
+#: mod/profile_photo.php:302 mod/profile_photo.php:312 mod/photos.php:88
+#: mod/photos.php:194 mod/photos.php:722 mod/photos.php:1149
+#: mod/photos.php:1166 mod/photos.php:1684
 msgid "Profile Photos"
 msgstr "Profiilin valokuvat"
 
-#: include/conversation.php:144 include/conversation.php:282
-#: include/text.php:1753 src/Model/Item.php:1795
-msgid "event"
-msgstr "tapahtuma"
-
-#: include/conversation.php:147 include/conversation.php:157
-#: include/conversation.php:285 include/conversation.php:294
-#: mod/subthread.php:97 mod/tagger.php:72 src/Model/Item.php:1793
-#: src/Protocol/Diaspora.php:2039
-msgid "status"
-msgstr "tila"
+#: include/enotify.php:31
+msgid "Friendica Notification"
+msgstr "Friendica-huomautus"
 
-#: include/conversation.php:152 include/conversation.php:290
-#: include/text.php:1755 mod/subthread.php:97 mod/tagger.php:72
-#: src/Model/Item.php:1793
-msgid "photo"
-msgstr "kuva"
+#: include/enotify.php:34
+msgid "Thank You,"
+msgstr "Kiitos,"
 
-#: include/conversation.php:164 src/Model/Item.php:1666
-#: src/Protocol/Diaspora.php:2035
+#: include/enotify.php:37
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s tykkää käyttäjän %2$s %3$s"
+msgid "%s Administrator"
+msgstr "%s Ylläpitäjä"
 
-#: include/conversation.php:167 src/Model/Item.php:1671
+#: include/enotify.php:39
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr ""
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Ylläpitäjä"
 
-#: include/conversation.php:170
+#: include/enotify.php:95
 #, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Uusi viesti, katso %s"
 
-#: include/conversation.php:173
+#: include/enotify.php:97
 #, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s."
 
-#: include/conversation.php:176
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+#: include/enotify.php:98
+msgid "a private message"
+msgstr "yksityisviesti"
 
-#: include/conversation.php:209 mod/dfrn_confirm.php:431
-#: src/Protocol/Diaspora.php:2510
+#: include/enotify.php:98
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ja %2$s ovat kavereita"
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lähetti sinulle %2$s."
 
-#: include/conversation.php:250
+#: include/enotify.php:100
 #, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s tökkäsi %2$s"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Katso yksityisviestisi kohteessa %s."
 
-#: include/conversation.php:304 mod/tagger.php:110
+#: include/enotify.php:138
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:331
-msgid "post/item"
-msgstr "julkaisu/kohde"
+#: include/enotify.php:146
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
 
-#: include/conversation.php:332
+#: include/enotify.php:156
 #, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:355
-msgid "Likes"
-msgstr "Tykkäyksiä"
+#: include/enotify.php:168
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] %2$s kommentoi keskustelussa #%1$d"
 
-#: include/conversation.php:605 mod/photos.php:1501 mod/profiles.php:359
-msgid "Dislikes"
-msgstr "Inhokit"
+#: include/enotify.php:170
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s kommentoi kohteessa/keskustelussa jota seuraat."
 
-#: include/conversation.php:606 include/conversation.php:1661
-#: mod/photos.php:1502
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Osallistuu"
-msgstr[1] "Osallistuu"
+#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
+#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Not attending"
-msgstr "Ei osallistu"
+#: include/enotify.php:180
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s kirjoitti profiiliseinällesi"
 
-#: include/conversation.php:606 mod/photos.php:1502
-msgid "Might attend"
-msgstr "Ehkä"
+#: include/enotify.php:182
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s kirjoitti seinällesi kohteessa %2$s"
 
-#: include/conversation.php:718 mod/photos.php:1569 src/Object/Post.php:178
-msgid "Select"
-msgstr "Valitse"
+#: include/enotify.php:183
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s kirjoitti [url=%2$s]seinällesi[/url]"
 
-#: include/conversation.php:719 mod/photos.php:1570 mod/contacts.php:830
-#: mod/contacts.php:1035 mod/admin.php:1798 mod/settings.php:738
-#: src/Object/Post.php:179
-msgid "Delete"
-msgstr "Poista"
+#: include/enotify.php:195
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s merkitsi sinut"
 
-#: include/conversation.php:757 src/Object/Post.php:363
-#: src/Object/Post.php:364
+#: include/enotify.php:197
 #, php-format
-msgid "View %s's profile @ %s"
-msgstr "Katso %s-henkilön profiilia @ %s"
+msgid "%1$s tagged you at %2$s"
+msgstr ""
 
-#: include/conversation.php:769 src/Object/Post.php:351
-msgid "Categories:"
-msgstr "Luokat:"
+#: include/enotify.php:198
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]merkitsi sinut[/url]."
 
-#: include/conversation.php:770 src/Object/Post.php:352
-msgid "Filed under:"
-msgstr "Arkistoitu kansioon:"
+#: include/enotify.php:210
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s jakoi uuden julkaisun"
 
-#: include/conversation.php:777 src/Object/Post.php:377
+#: include/enotify.php:212
 #, php-format
-msgid "%s from %s"
-msgstr "%s sovelluksesta %s"
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
 
-#: include/conversation.php:792
-msgid "View in context"
-msgstr "Näytä kontekstissa"
+#: include/enotify.php:213
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]jakoi julkaisun[/url]."
 
-#: include/conversation.php:794 include/conversation.php:1334
-#: mod/wallmessage.php:145 mod/editpost.php:125 mod/message.php:264
-#: mod/message.php:433 mod/photos.php:1473 src/Object/Post.php:402
-msgid "Please wait"
-msgstr "Odota"
+#: include/enotify.php:225
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s tökkäsi sinua."
 
-#: include/conversation.php:865
-msgid "remove"
-msgstr "poista"
+#: include/enotify.php:227
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s tökkäsi sinua kohteessa %2$s"
 
-#: include/conversation.php:869
-msgid "Delete Selected Items"
-msgstr "Poista valitut kohteet"
+#: include/enotify.php:228
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]tökkasi sinua[/url]."
 
-#: include/conversation.php:1039 view/theme/frio/theme.php:352
-msgid "Follow Thread"
-msgstr "Seuraa ketjua"
+#: include/enotify.php:244
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s merkitsi julkaisusi"
 
-#: include/conversation.php:1040 src/Model/Contact.php:652
-msgid "View Status"
-msgstr "Näytä tila"
+#: include/enotify.php:246
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
 
-#: include/conversation.php:1041 include/conversation.php:1057
-#: mod/allfriends.php:73 mod/suggest.php:82 mod/match.php:89
-#: mod/directory.php:159 mod/dirfind.php:217 src/Model/Contact.php:592
-#: src/Model/Contact.php:605 src/Model/Contact.php:653
-msgid "View Profile"
-msgstr "Näytä profiilia"
+#: include/enotify.php:247
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s merkitsi [url=%2$s]julkaisusi[/url]"
 
-#: include/conversation.php:1042 src/Model/Contact.php:654
-msgid "View Photos"
-msgstr "Näytä kuvia"
+#: include/enotify.php:259
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Esittely vastaanotettu"
 
-#: include/conversation.php:1043 src/Model/Contact.php:655
-msgid "Network Posts"
-msgstr "Verkkojulkaisut"
+#: include/enotify.php:261
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Olet vastaanottanut kaverikutsun henkilöltä '%1$s' kohteessa %2$s"
 
-#: include/conversation.php:1044 src/Model/Contact.php:656
-msgid "View Contact"
-msgstr "Näytä kontaktia"
+#: include/enotify.php:262
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Olet vastaanottanut [url=%1$s]kaverikutsun[/url] henkilöltä %2$s."
 
-#: include/conversation.php:1045 src/Model/Contact.php:658
-msgid "Send PM"
-msgstr "Lähetä yksityisviesti"
+#: include/enotify.php:267 include/enotify.php:313
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Voit vierailla hänen profiilissaan kohteessa %s"
 
-#: include/conversation.php:1049 src/Model/Contact.php:659
-msgid "Poke"
-msgstr "Tökkää"
+#: include/enotify.php:269
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Hyväksy tai hylkää esittely %s-sivustossa"
 
-#: include/conversation.php:1054 mod/allfriends.php:74 mod/suggest.php:83
-#: mod/match.php:90 mod/contacts.php:596 mod/dirfind.php:218
-#: mod/follow.php:143 src/Content/Widget.php:61 src/Model/Contact.php:606
-msgid "Connect/Follow"
-msgstr "Yhdistä/Seuraa"
+#: include/enotify.php:277
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi"
 
-#: include/conversation.php:1173
+#: include/enotify.php:279 include/enotify.php:280
 #, php-format
-msgid "%s likes this."
-msgstr "%s tykkää tästä."
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s jakaa päivityksensä kanssasi kohteessa %2$s"
 
-#: include/conversation.php:1176
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s ei tykkää tästä."
+#: include/enotify.php:287
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notify] Sinulla on uusi seuraaja"
 
-#: include/conversation.php:1179
+#: include/enotify.php:289 include/enotify.php:290
 #, php-format
-msgid "%s attends."
-msgstr "%s osallistuu."
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Sinulla on uusi seuraaja sivustolla %2$s : %1$s"
 
-#: include/conversation.php:1182
+#: include/enotify.php:302
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Kaveripyyntö vastaanotettu"
+
+#: include/enotify.php:304
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s ei osallistu."
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Sait kaverikutsun henkilöltä '%1$s' (%2$s)"
 
-#: include/conversation.php:1185
+#: include/enotify.php:305
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s ehkä osallistuu."
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: include/conversation.php:1196
-msgid "and"
-msgstr "ja"
+#: include/enotify.php:311
+msgid "Name:"
+msgstr "Nimi:"
 
-#: include/conversation.php:1202
+#: include/enotify.php:312
+msgid "Photo:"
+msgstr "Kuva:"
+
+#: include/enotify.php:315
 #, php-format
-msgid "and %d other people"
-msgstr "ja %d muuta ihmistä"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Hyväksy tai hylkää ehdotus %s-sivustossa"
 
-#: include/conversation.php:1211
+#: include/enotify.php:323 include/enotify.php:338
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notify] Yhteys hyväksytty"
+
+#: include/enotify.php:325 include/enotify.php:340
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d ihmistä</span> tykkää tästä"
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' on hyväksynyt kaverikutsusi kohteessa %2$s"
 
-#: include/conversation.php:1212
+#: include/enotify.php:326 include/enotify.php:341
 #, php-format
-msgid "%s like this."
-msgstr "%s tykkää tästä."
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hyväksyi [url=%1$s]kaverikutsusi[/url]."
 
-#: include/conversation.php:1215
+#: include/enotify.php:331
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia."
+
+#: include/enotify.php:333
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d ihmistä</span> ei tykkää tästä."
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta."
 
-#: include/conversation.php:1216
+#: include/enotify.php:346
 #, php-format
-msgid "%s don't like this."
-msgstr "%s ei tykkää tästä."
+msgid ""
+"'%1$s' has chosen to accept you a fan, which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
 
-#: include/conversation.php:1219
+#: include/enotify.php:348
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$d ihmistä</span> osallistuu"
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' voi halutessaan laajentaa suhteenne kahdenväliseksi."
 
-#: include/conversation.php:1220
+#: include/enotify.php:350
 #, php-format
-msgid "%s attend."
-msgstr "%s osallistuu."
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta."
 
-#: include/conversation.php:1223
+#: include/enotify.php:360 mod/removeme.php:43
+msgid "[Friendica System Notify]"
+msgstr "[Friendica Järjestelmäilmoitus]"
+
+#: include/enotify.php:360
+msgid "registration request"
+msgstr "rekisteröintipyyntö"
+
+#: include/enotify.php:362
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d ihmistä</span> ei osallistu"
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1$s' kohteessa %2$s"
 
-#: include/conversation.php:1224
+#: include/enotify.php:363
 #, php-format
-msgid "%s don't attend."
-msgstr "%s ei osallistu."
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s."
 
-#: include/conversation.php:1227
+#: include/enotify.php:368
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d ihmistä</span> ehkä osallistuu"
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Koko nimi:\t%1$s\\nSivusto:\t%2$s\\nKäyttäjätunnus:\t%3$s (%4$s)"
 
-#: include/conversation.php:1228
+#: include/enotify.php:374
 #, php-format
-msgid "%s attend maybe."
-msgstr "%s ehkä osallistuu."
+msgid "Please visit %s to approve or reject the request."
+msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa."
 
-#: include/conversation.php:1258 include/conversation.php:1274
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Näkyy <strong>kaikille</strong>"
+#: include/conversation.php:144 include/conversation.php:282
+#: include/text.php:1753 src/Model/Item.php:1796
+msgid "event"
+msgstr "tapahtuma"
 
-#: include/conversation.php:1259 include/conversation.php:1275
-#: mod/wallmessage.php:120 mod/wallmessage.php:127 mod/message.php:200
-#: mod/message.php:207 mod/message.php:343 mod/message.php:350
-msgid "Please enter a link URL:"
-msgstr "Lisää URL-linkki:"
+#: include/conversation.php:147 include/conversation.php:157
+#: include/conversation.php:285 include/conversation.php:294
+#: src/Model/Item.php:1794 src/Protocol/Diaspora.php:2039 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "status"
+msgstr "tila"
 
-#: include/conversation.php:1260 include/conversation.php:1276
-msgid "Please enter a video link/URL:"
-msgstr "Lisää video URL-linkki:"
+#: include/conversation.php:152 include/conversation.php:290
+#: include/text.php:1755 src/Model/Item.php:1794 mod/subthread.php:97
+#: mod/tagger.php:72
+msgid "photo"
+msgstr "kuva"
 
-#: include/conversation.php:1261 include/conversation.php:1277
-msgid "Please enter an audio link/URL:"
-msgstr "Lisää Ã¤Ã¤ni URL-linkki:"
+#: include/conversation.php:164 src/Model/Item.php:1667
+#: src/Protocol/Diaspora.php:2035
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s tykkää käyttäjän %2$s %3$s"
 
-#: include/conversation.php:1262 include/conversation.php:1278
-msgid "Tag term:"
-msgstr "Tunniste:"
+#: include/conversation.php:167 src/Model/Item.php:1672
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr ""
 
-#: include/conversation.php:1263 include/conversation.php:1279
-#: mod/filer.php:34
-msgid "Save to Folder:"
-msgstr "Tallenna kansioon:"
+#: include/conversation.php:170
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: include/conversation.php:1264 include/conversation.php:1280
-msgid "Where are you right now?"
-msgstr "Mikä on sijaintisi?"
+#: include/conversation.php:173
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: include/conversation.php:1265
-msgid "Delete item(s)?"
-msgstr "Poista kohde/kohteet?"
+#: include/conversation.php:176
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: include/conversation.php:1312
-msgid "New Post"
-msgstr "Uusi julkaisu"
+#: include/conversation.php:209 src/Protocol/Diaspora.php:2510
+#: mod/dfrn_confirm.php:431
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ja %2$s ovat kavereita"
 
-#: include/conversation.php:1315
-msgid "Share"
-msgstr "Jaa"
+#: include/conversation.php:250
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s tökkäsi %2$s"
 
-#: include/conversation.php:1316 mod/wallmessage.php:143 mod/editpost.php:111
-#: mod/message.php:262 mod/message.php:430
-msgid "Upload photo"
-msgstr "Lähetä kuva"
+#: include/conversation.php:304 mod/tagger.php:110
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr ""
 
-#: include/conversation.php:1317 mod/editpost.php:112
-msgid "upload photo"
-msgstr "lähetä kuva"
+#: include/conversation.php:331
+msgid "post/item"
+msgstr "julkaisu/kohde"
 
-#: include/conversation.php:1318 mod/editpost.php:113
-msgid "Attach file"
-msgstr "Liitä tiedosto"
+#: include/conversation.php:332
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr ""
 
-#: include/conversation.php:1319 mod/editpost.php:114
-msgid "attach file"
-msgstr "liitä tiedosto"
+#: include/conversation.php:605 mod/profiles.php:355 mod/photos.php:1501
+msgid "Likes"
+msgstr "Tykkäyksiä"
 
-#: include/conversation.php:1320 mod/wallmessage.php:144 mod/editpost.php:115
-#: mod/message.php:263 mod/message.php:431
-msgid "Insert web link"
-msgstr "Lisää linkki"
+#: include/conversation.php:605 mod/profiles.php:359 mod/photos.php:1501
+msgid "Dislikes"
+msgstr "Inhokit"
 
-#: include/conversation.php:1321 mod/editpost.php:116
-msgid "web link"
-msgstr "WWW-linkki"
+#: include/conversation.php:606 include/conversation.php:1661
+#: mod/photos.php:1502
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Osallistuu"
+msgstr[1] "Osallistuu"
 
-#: include/conversation.php:1322 mod/editpost.php:117
-msgid "Insert video link"
-msgstr "Lisää videolinkki"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Not attending"
+msgstr "Ei osallistu"
 
-#: include/conversation.php:1323 mod/editpost.php:118
-msgid "video link"
-msgstr "videolinkki"
+#: include/conversation.php:606 mod/photos.php:1502
+msgid "Might attend"
+msgstr "Ehkä"
 
-#: include/conversation.php:1324 mod/editpost.php:119
-msgid "Insert audio link"
+#: include/conversation.php:718 src/Object/Post.php:178 mod/photos.php:1569
+msgid "Select"
+msgstr "Valitse"
+
+#: include/conversation.php:719 src/Object/Post.php:179 mod/settings.php:738
+#: mod/admin.php:1812 mod/photos.php:1570 mod/contacts.php:830
+#: mod/contacts.php:1035
+msgid "Delete"
+msgstr "Poista"
+
+#: include/conversation.php:757 src/Object/Post.php:363
+#: src/Object/Post.php:364
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Katso %s-henkilön profiilia @ %s"
+
+#: include/conversation.php:769 src/Object/Post.php:351
+msgid "Categories:"
+msgstr "Luokat:"
+
+#: include/conversation.php:770 src/Object/Post.php:352
+msgid "Filed under:"
+msgstr "Arkistoitu kansioon:"
+
+#: include/conversation.php:777 src/Object/Post.php:377
+#, php-format
+msgid "%s from %s"
+msgstr "%s sovelluksesta %s"
+
+#: include/conversation.php:792
+msgid "View in context"
+msgstr "Näytä kontekstissa"
+
+#: include/conversation.php:794 include/conversation.php:1334
+#: src/Object/Post.php:402 mod/photos.php:1473 mod/message.php:264
+#: mod/message.php:433 mod/wallmessage.php:145 mod/editpost.php:125
+msgid "Please wait"
+msgstr "Odota"
+
+#: include/conversation.php:865
+msgid "remove"
+msgstr "poista"
+
+#: include/conversation.php:869
+msgid "Delete Selected Items"
+msgstr "Poista valitut kohteet"
+
+#: include/conversation.php:1039 view/theme/frio/theme.php:352
+msgid "Follow Thread"
+msgstr "Seuraa ketjua"
+
+#: include/conversation.php:1040 src/Model/Contact.php:652
+msgid "View Status"
+msgstr "Näytä tila"
+
+#: include/conversation.php:1041 include/conversation.php:1057
+#: src/Model/Contact.php:592 src/Model/Contact.php:605
+#: src/Model/Contact.php:653 mod/directory.php:159 mod/dirfind.php:217
+#: mod/suggest.php:82 mod/allfriends.php:73 mod/match.php:89
+msgid "View Profile"
+msgstr "Näytä profiilia"
+
+#: include/conversation.php:1042 src/Model/Contact.php:654
+msgid "View Photos"
+msgstr "Näytä kuvia"
+
+#: include/conversation.php:1043 src/Model/Contact.php:655
+msgid "Network Posts"
+msgstr "Verkkojulkaisut"
+
+#: include/conversation.php:1044 src/Model/Contact.php:656
+msgid "View Contact"
+msgstr "Näytä kontaktia"
+
+#: include/conversation.php:1045 src/Model/Contact.php:658
+msgid "Send PM"
+msgstr "Lähetä yksityisviesti"
+
+#: include/conversation.php:1049 src/Model/Contact.php:659
+msgid "Poke"
+msgstr "Tökkää"
+
+#: include/conversation.php:1054 src/Model/Contact.php:606
+#: src/Content/Widget.php:61 mod/dirfind.php:218 mod/suggest.php:83
+#: mod/allfriends.php:74 mod/follow.php:143 mod/contacts.php:596
+#: mod/match.php:90
+msgid "Connect/Follow"
+msgstr "Yhdistä/Seuraa"
+
+#: include/conversation.php:1173
+#, php-format
+msgid "%s likes this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1176
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1179
+#, php-format
+msgid "%s attends."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1182
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1185
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1196
+msgid "and"
+msgstr "ja"
+
+#: include/conversation.php:1202
+#, php-format
+msgid "and %d other people"
+msgstr "ja %d muuta ihmistä"
+
+#: include/conversation.php:1211
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d ihmistä</span> tykkää tästä"
+
+#: include/conversation.php:1212
+#, php-format
+msgid "%s like this."
+msgstr "%s tykkää tästä."
+
+#: include/conversation.php:1215
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d ihmistä</span> ei tykkää tästä."
+
+#: include/conversation.php:1216
+#, php-format
+msgid "%s don't like this."
+msgstr "%s ei tykkää tästä."
+
+#: include/conversation.php:1219
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d ihmistä</span> osallistuu"
+
+#: include/conversation.php:1220
+#, php-format
+msgid "%s attend."
+msgstr "%s osallistuu."
+
+#: include/conversation.php:1223
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d ihmistä</span> ei osallistu"
+
+#: include/conversation.php:1224
+#, php-format
+msgid "%s don't attend."
+msgstr "%s ei osallistu."
+
+#: include/conversation.php:1227
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d ihmistä</span> ehkä osallistuu"
+
+#: include/conversation.php:1228
+#, php-format
+msgid "%s attend maybe."
+msgstr "%s ehkä osallistuu."
+
+#: include/conversation.php:1258 include/conversation.php:1274
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Näkyy <strong>kaikille</strong>"
+
+#: include/conversation.php:1259 include/conversation.php:1275
+#: mod/message.php:200 mod/message.php:207 mod/message.php:343
+#: mod/message.php:350 mod/wallmessage.php:120 mod/wallmessage.php:127
+msgid "Please enter a link URL:"
+msgstr "Lisää URL-linkki:"
+
+#: include/conversation.php:1260 include/conversation.php:1276
+msgid "Please enter a video link/URL:"
+msgstr "Lisää video URL-linkki:"
+
+#: include/conversation.php:1261 include/conversation.php:1277
+msgid "Please enter an audio link/URL:"
+msgstr "Lisää Ã¤Ã¤ni URL-linkki:"
+
+#: include/conversation.php:1262 include/conversation.php:1278
+msgid "Tag term:"
+msgstr "Tunniste:"
+
+#: include/conversation.php:1263 include/conversation.php:1279
+#: mod/filer.php:34
+msgid "Save to Folder:"
+msgstr "Tallenna kansioon:"
+
+#: include/conversation.php:1264 include/conversation.php:1280
+msgid "Where are you right now?"
+msgstr "Mikä on sijaintisi?"
+
+#: include/conversation.php:1265
+msgid "Delete item(s)?"
+msgstr "Poista kohde/kohteet?"
+
+#: include/conversation.php:1312
+msgid "New Post"
+msgstr "Uusi julkaisu"
+
+#: include/conversation.php:1315
+msgid "Share"
+msgstr "Jaa"
+
+#: include/conversation.php:1316 mod/message.php:262 mod/message.php:430
+#: mod/wallmessage.php:143 mod/editpost.php:111
+msgid "Upload photo"
+msgstr "Lähetä kuva"
+
+#: include/conversation.php:1317 mod/editpost.php:112
+msgid "upload photo"
+msgstr "lähetä kuva"
+
+#: include/conversation.php:1318 mod/editpost.php:113
+msgid "Attach file"
+msgstr "Liitä tiedosto"
+
+#: include/conversation.php:1319 mod/editpost.php:114
+msgid "attach file"
+msgstr "liitä tiedosto"
+
+#: include/conversation.php:1320 mod/message.php:263 mod/message.php:431
+#: mod/wallmessage.php:144 mod/editpost.php:115
+msgid "Insert web link"
+msgstr "Lisää linkki"
+
+#: include/conversation.php:1321 mod/editpost.php:116
+msgid "web link"
+msgstr "WWW-linkki"
+
+#: include/conversation.php:1322 mod/editpost.php:117
+msgid "Insert video link"
+msgstr "Lisää videolinkki"
+
+#: include/conversation.php:1323 mod/editpost.php:118
+msgid "video link"
+msgstr "videolinkki"
+
+#: include/conversation.php:1324 mod/editpost.php:119
+msgid "Insert audio link"
 msgstr "Lisää Ã¤Ã¤nilinkki"
 
 #: include/conversation.php:1325 mod/editpost.php:120
@@ -500,12 +736,21 @@ msgstr "käyttöoikeudet"
 msgid "Public post"
 msgstr "Julkinen viesti"
 
-#: include/conversation.php:1348 mod/editpost.php:146 mod/photos.php:1492
-#: mod/photos.php:1531 mod/photos.php:1604 mod/events.php:528
-#: src/Object/Post.php:805
+#: include/conversation.php:1348 src/Object/Post.php:805 mod/events.php:528
+#: mod/photos.php:1492 mod/photos.php:1531 mod/photos.php:1604
+#: mod/editpost.php:146
 msgid "Preview"
 msgstr "Esikatselu"
 
+#: include/conversation.php:1352 include/items.php:387 mod/suggest.php:41
+#: mod/settings.php:676 mod/settings.php:702 mod/fbrowser.php:103
+#: mod/fbrowser.php:134 mod/photos.php:248 mod/photos.php:324
+#: mod/message.php:141 mod/videos.php:147 mod/unfollow.php:117
+#: mod/dfrn_request.php:663 mod/follow.php:161 mod/contacts.php:475
+#: mod/tagrm.php:19 mod/tagrm.php:99 mod/editpost.php:149
+msgid "Cancel"
+msgstr "Peru"
+
 #: include/conversation.php:1357
 msgid "Post to Groups"
 msgstr "Lähetä ryhmiin"
@@ -518,8 +763,8 @@ msgstr "Lähetä kontakteille"
 msgid "Private post"
 msgstr "Yksityinen julkaisu"
 
-#: include/conversation.php:1364 mod/editpost.php:153
-#: src/Model/Profile.php:342
+#: include/conversation.php:1364 src/Model/Profile.php:342
+#: mod/editpost.php:153
 msgid "Message"
 msgstr "Viesti"
 
@@ -560,473 +805,181 @@ msgstr[1] "En ole varma"
 msgid "Cannot locate DNS info for database server '%s'"
 msgstr "'%s' tietokantapalvelimen DNS-tieto ei löydy"
 
-#: include/enotify.php:31
-msgid "Friendica Notification"
-msgstr "Friendica-huomautus"
+#: include/security.php:81
+msgid "Welcome "
+msgstr "Tervetuloa"
 
-#: include/enotify.php:34
-msgid "Thank You,"
-msgstr "Kiitos,"
+#: include/security.php:82
+msgid "Please upload a profile photo."
+msgstr "Lataa profiilikuva."
 
-#: include/enotify.php:37
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Ylläpitäjä"
+#: include/security.php:84
+msgid "Welcome back "
+msgstr "Tervetuloa takaisin"
 
-#: include/enotify.php:39
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Ylläpitäjä"
-
-#: include/enotify.php:95
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Uusi viesti, katso %s"
+#: include/security.php:440
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr ""
 
-#: include/enotify.php:97
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lähetti sinulle uuden yksityisviestin kohteessa %2$s."
+#: include/text.php:302
+msgid "newer"
+msgstr "uudempi"
 
-#: include/enotify.php:98
-msgid "a private message"
-msgstr "yksityisviesti"
+#: include/text.php:303
+msgid "older"
+msgstr "vanhempi"
 
-#: include/enotify.php:98
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lähetti sinulle %2$s."
+#: include/text.php:308
+msgid "first"
+msgstr "ensimmäinen"
 
-#: include/enotify.php:100
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Katso yksityisviestisi kohteessa %s."
+#: include/text.php:309
+msgid "prev"
+msgstr "edellinen"
 
-#: include/enotify.php:138
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr ""
+#: include/text.php:343
+msgid "next"
+msgstr "seuraava"
 
-#: include/enotify.php:146
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr ""
+#: include/text.php:344
+msgid "last"
+msgstr "viimeinen"
 
-#: include/enotify.php:156
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr ""
+#: include/text.php:398
+msgid "Loading more entries..."
+msgstr "Merkinnät ladataan..."
 
-#: include/enotify.php:168
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] %2$s kommentoi keskustelussa #%1$d"
+#: include/text.php:399
+msgid "The end"
+msgstr "Loppu"
 
-#: include/enotify.php:170
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s kommentoi kohteessa/keskustelussa jota seuraat."
+#: include/text.php:884
+msgid "No contacts"
+msgstr "Ei kontakteja"
 
-#: include/enotify.php:173 include/enotify.php:188 include/enotify.php:203
-#: include/enotify.php:218 include/enotify.php:237 include/enotify.php:252
+#: include/text.php:908
 #, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr ""
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakti"
+msgstr[1] "%d kontakteja"
 
-#: include/enotify.php:180
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s kirjoitti profiiliseinällesi"
+#: include/text.php:921
+msgid "View Contacts"
+msgstr "Näytä kontaktit"
 
-#: include/enotify.php:182
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s kirjoitti seinällesi kohteessa %2$s"
+#: include/text.php:1010 mod/notes.php:67 mod/filer.php:35
+#: mod/editpost.php:110
+msgid "Save"
+msgstr "Tallenna"
 
-#: include/enotify.php:183
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s kirjoitti [url=%2$s]seinällesi[/url]"
+#: include/text.php:1010
+msgid "Follow"
+msgstr "Seuraa"
 
-#: include/enotify.php:195
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s merkitsi sinut"
+#: include/text.php:1016 src/Content/Nav.php:142 mod/search.php:155
+msgid "Search"
+msgstr "Haku"
 
-#: include/enotify.php:197
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr ""
+#: include/text.php:1019 src/Content/Nav.php:58
+msgid "@name, !forum, #tags, content"
+msgstr "@nimi, !foorumi, #tunnisteet, sisältö"
 
-#: include/enotify.php:198
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]merkitsi sinut[/url]."
+#: include/text.php:1025 src/Content/Nav.php:145
+msgid "Full Text"
+msgstr "Koko teksti"
 
-#: include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s jakoi uuden julkaisun"
+#: include/text.php:1026 src/Content/Widget/TagCloud.php:54
+#: src/Content/Nav.php:146
+msgid "Tags"
+msgstr "Tunnisteet"
 
-#: include/enotify.php:212
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr ""
+#: include/text.php:1027 src/Model/Profile.php:961 src/Model/Profile.php:964
+#: src/Content/Nav.php:147 src/Content/Nav.php:208 mod/viewcontacts.php:131
+#: mod/contacts.php:814 mod/contacts.php:875 view/theme/frio/theme.php:270
+msgid "Contacts"
+msgstr "Yhteystiedot"
 
-#: include/enotify.php:213
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]jakoi julkaisun[/url]."
+#: include/text.php:1030 src/Content/ForumManager.php:125
+#: src/Content/Nav.php:151 view/theme/vier/theme.php:254
+msgid "Forums"
+msgstr "Foorumit"
 
-#: include/enotify.php:225
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s tökkäsi sinua."
+#: include/text.php:1074
+msgid "poke"
+msgstr "töki"
 
-#: include/enotify.php:227
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s tökkäsi sinua kohteessa %2$s"
+#: include/text.php:1074
+msgid "poked"
+msgstr "tökkäsi"
 
-#: include/enotify.php:228
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]tökkasi sinua[/url]."
+#: include/text.php:1075
+msgid "ping"
+msgstr "pingaa"
 
-#: include/enotify.php:244
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s merkitsi julkaisusi"
+#: include/text.php:1075
+msgid "pinged"
+msgstr "pingasi"
 
-#: include/enotify.php:246
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr ""
+#: include/text.php:1076
+msgid "prod"
+msgstr "töki"
 
-#: include/enotify.php:247
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s merkitsi [url=%2$s]julkaisusi[/url]"
+#: include/text.php:1076
+msgid "prodded"
+msgstr "tökkäsi"
 
-#: include/enotify.php:259
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Esittely vastaanotettu"
+#: include/text.php:1077
+msgid "slap"
+msgstr "läimäytä"
 
-#: include/enotify.php:261
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+#: include/text.php:1077
+msgid "slapped"
+msgstr "läimäsi"
 
-#: include/enotify.php:262
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
+#: include/text.php:1078
+msgid "finger"
+msgstr "näytä keskisormea"
 
-#: include/enotify.php:267 include/enotify.php:313
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Voit vierailla hänen profiilissaan kohteessa %s"
+#: include/text.php:1078
+msgid "fingered"
+msgstr "näytti keskisormea"
 
-#: include/enotify.php:269
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Hyväksy tai hylkää esittely %s-sivustossa"
+#: include/text.php:1079
+msgid "rebuff"
+msgstr "torju"
 
-#: include/enotify.php:277
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr ""
+#: include/text.php:1079
+msgid "rebuffed"
+msgstr "torjui"
 
-#: include/enotify.php:279 include/enotify.php:280
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+#: include/text.php:1093 src/Model/Event.php:379 mod/settings.php:943
+msgid "Monday"
+msgstr "Maanantai"
 
-#: include/enotify.php:287
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notify] Sinulla on uusi seuraaja"
+#: include/text.php:1093 src/Model/Event.php:380
+msgid "Tuesday"
+msgstr "Tiistai"
 
-#: include/enotify.php:289 include/enotify.php:290
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Sinulla on uusi seuraaja sivustolla %2$s : %1$s"
+#: include/text.php:1093 src/Model/Event.php:381
+msgid "Wednesday"
+msgstr "Keskiviikko"
 
-#: include/enotify.php:302
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Kaveripyyntö vastaanotettu"
+#: include/text.php:1093 src/Model/Event.php:382
+msgid "Thursday"
+msgstr "Torstai"
 
-#: include/enotify.php:304
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Sait kaverikutsun henkilöltä '%1$s' (%2$s)"
-
-#: include/enotify.php:305
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
-
-#: include/enotify.php:311
-msgid "Name:"
-msgstr "Nimi:"
-
-#: include/enotify.php:312
-msgid "Photo:"
-msgstr "Kuva:"
-
-#: include/enotify.php:315
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Hyväksy tai hylkää ehdotus %s-sivustossa"
-
-#: include/enotify.php:323 include/enotify.php:338
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notify] Yhteys hyväksytty"
-
-#: include/enotify.php:325 include/enotify.php:340
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' on hyväksynyt kaverikutsusi kohteessa %2$s"
-
-#: include/enotify.php:326 include/enotify.php:341
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hyväksyi [url=%1$s]kaverikutsusi[/url]."
-
-#: include/enotify.php:331
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia."
-
-#: include/enotify.php:333
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta."
-
-#: include/enotify.php:346
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a fan, which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
-
-#: include/enotify.php:348
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' voi halutessaan laajentaa suhteenne kahdenväliseksi."
-
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta."
-
-#: include/enotify.php:360 mod/removeme.php:43
-msgid "[Friendica System Notify]"
-msgstr "[Friendica Järjestelmäilmoitus]"
-
-#: include/enotify.php:360
-msgid "registration request"
-msgstr "rekisteröintipyyntö"
-
-#: include/enotify.php:362
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1$s' kohteessa %2$s"
-
-#: include/enotify.php:363
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Olet vastaanottanut [url=%1$s]rekisteröintipyynnön[/url] henkilöltä %2$s."
-
-#: include/enotify.php:368
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
-
-#: include/enotify.php:374
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Hyväksy tai hylkää pyyntö %s-sivustossa."
-
-#: include/security.php:81
-msgid "Welcome "
-msgstr "Tervetuloa"
-
-#: include/security.php:82
-msgid "Please upload a profile photo."
-msgstr "Lataa profiilikuva."
-
-#: include/security.php:84
-msgid "Welcome back "
-msgstr "Tervetuloa takaisin"
-
-#: include/security.php:440
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr ""
-
-#: include/text.php:302
-msgid "newer"
-msgstr "uudempi"
-
-#: include/text.php:303
-msgid "older"
-msgstr "vanhempi"
-
-#: include/text.php:308
-msgid "first"
-msgstr "ensimmäinen"
-
-#: include/text.php:309
-msgid "prev"
-msgstr "edellinen"
-
-#: include/text.php:343
-msgid "next"
-msgstr "seuraava"
-
-#: include/text.php:344
-msgid "last"
-msgstr "viimeinen"
-
-#: include/text.php:398
-msgid "Loading more entries..."
-msgstr "Merkinnät ladataan..."
-
-#: include/text.php:399
-msgid "The end"
-msgstr "Loppu"
-
-#: include/text.php:884
-msgid "No contacts"
-msgstr "Ei kontakteja"
-
-#: include/text.php:908
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakti"
-msgstr[1] "%d kontakteja"
-
-#: include/text.php:921
-msgid "View Contacts"
-msgstr "Näytä kontaktit"
-
-#: include/text.php:1010 mod/filer.php:35 mod/editpost.php:110
-#: mod/notes.php:67
-msgid "Save"
-msgstr "Tallenna"
-
-#: include/text.php:1010
-msgid "Follow"
-msgstr "Seuraa"
-
-#: include/text.php:1016 mod/search.php:155 src/Content/Nav.php:142
-msgid "Search"
-msgstr "Haku"
-
-#: include/text.php:1019 src/Content/Nav.php:58
-msgid "@name, !forum, #tags, content"
-msgstr "@nimi, !foorumi, #tunnisteet, sisältö"
-
-#: include/text.php:1025 src/Content/Nav.php:145
-msgid "Full Text"
-msgstr "Koko teksti"
-
-#: include/text.php:1026 src/Content/Nav.php:146
-#: src/Content/Widget/TagCloud.php:54
-msgid "Tags"
-msgstr "Tunnisteet"
-
-#: include/text.php:1027 mod/viewcontacts.php:131 mod/contacts.php:814
-#: mod/contacts.php:875 view/theme/frio/theme.php:270 src/Content/Nav.php:147
-#: src/Content/Nav.php:212 src/Model/Profile.php:959 src/Model/Profile.php:962
-msgid "Contacts"
-msgstr "Yhteystiedot"
-
-#: include/text.php:1030 view/theme/vier/theme.php:254
-#: src/Content/ForumManager.php:125 src/Content/Nav.php:151
-msgid "Forums"
-msgstr "Foorumit"
-
-#: include/text.php:1074
-msgid "poke"
-msgstr "töki"
-
-#: include/text.php:1074
-msgid "poked"
-msgstr "tökkäsi"
-
-#: include/text.php:1075
-msgid "ping"
-msgstr "pingaa"
-
-#: include/text.php:1075
-msgid "pinged"
-msgstr "pingasi"
-
-#: include/text.php:1076
-msgid "prod"
-msgstr "töki"
-
-#: include/text.php:1076
-msgid "prodded"
-msgstr "tökkäsi"
-
-#: include/text.php:1077
-msgid "slap"
-msgstr "läimäytä"
-
-#: include/text.php:1077
-msgid "slapped"
-msgstr "läimäsi"
-
-#: include/text.php:1078
-msgid "finger"
-msgstr "näytä keskisormea"
-
-#: include/text.php:1078
-msgid "fingered"
-msgstr "näytti keskisormea"
-
-#: include/text.php:1079
-msgid "rebuff"
-msgstr "torju"
-
-#: include/text.php:1079
-msgid "rebuffed"
-msgstr "torjui"
-
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:379
-msgid "Monday"
-msgstr "Maanantai"
-
-#: include/text.php:1093 src/Model/Event.php:380
-msgid "Tuesday"
-msgstr "Tiistai"
-
-#: include/text.php:1093 src/Model/Event.php:381
-msgid "Wednesday"
-msgstr "Keskiviikko"
-
-#: include/text.php:1093 src/Model/Event.php:382
-msgid "Thursday"
-msgstr "Torstai"
-
-#: include/text.php:1093 src/Model/Event.php:383
-msgid "Friday"
-msgstr "Perjantai"
+#: include/text.php:1093 src/Model/Event.php:383
+msgid "Friday"
+msgstr "Perjantai"
 
 #: include/text.php:1093 src/Model/Event.php:384
 msgid "Saturday"
 msgstr "Lauantai"
 
-#: include/text.php:1093 mod/settings.php:943 src/Model/Event.php:378
+#: include/text.php:1093 src/Model/Event.php:378 mod/settings.php:943
 msgid "Sunday"
 msgstr "Sunnuntai"
 
@@ -1194,8329 +1147,8378 @@ msgstr "julkaisu"
 msgid "Item filed"
 msgstr "Kohde arkistoitu"
 
-#: mod/allfriends.php:51
-msgid "No friends to display."
-msgstr "Ei näytettäviä kavereita."
-
-#: mod/allfriends.php:90 mod/suggest.php:101 mod/match.php:105
-#: mod/dirfind.php:215 src/Content/Widget.php:37 src/Model/Profile.php:297
-msgid "Connect"
-msgstr "Yhdistä"
-
-#: mod/api.php:85 mod/api.php:107
-msgid "Authorize application connection"
-msgstr "Vahvista sovellusyhteys"
-
-#: mod/api.php:86
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
+#: include/items.php:342 mod/display.php:72 mod/display.php:252
+#: mod/display.php:354 mod/admin.php:276 mod/admin.php:1868 mod/admin.php:2116
+#: mod/viewsrc.php:21 mod/notice.php:22
+msgid "Item not found."
+msgstr "Kohdetta ei löytynyt."
 
-#: mod/api.php:95
-msgid "Please login to continue."
-msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
+#: include/items.php:382
+msgid "Do you really want to delete this item?"
+msgstr "Haluatko varmasti poistaa tämän kohteen?"
 
-#: mod/api.php:109
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"
+#: include/items.php:384 mod/suggest.php:38 mod/profiles.php:636
+#: mod/profiles.php:639 mod/profiles.php:661 mod/api.php:110
+#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1118
+#: mod/settings.php:1122 mod/settings.php:1126 mod/settings.php:1130
+#: mod/settings.php:1134 mod/settings.php:1138 mod/settings.php:1158
+#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161
+#: mod/settings.php:1162 mod/message.php:138 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/contacts.php:472 mod/register.php:237
+msgid "Yes"
+msgstr "Kyllä"
 
-#: mod/api.php:111 mod/dfrn_request.php:653 mod/follow.php:150
-#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
-#: mod/register.php:238 mod/settings.php:1105 mod/settings.php:1111
-#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
-#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
-#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
-#: mod/settings.php:1161 mod/settings.php:1162
-msgid "No"
-msgstr "Ei"
+#: include/items.php:401 mod/dirfind.php:25 mod/repair_ostatus.php:13
+#: mod/suggest.php:60 mod/profile_photo.php:30 mod/profile_photo.php:176
+#: mod/profile_photo.php:187 mod/profile_photo.php:200 mod/manage.php:131
+#: mod/uimport.php:28 mod/invite.php:20 mod/invite.php:111 mod/network.php:32
+#: mod/profiles.php:182 mod/profiles.php:606 mod/events.php:194
+#: mod/fsuggest.php:80 mod/attach.php:38 mod/allfriends.php:21
+#: mod/viewcontacts.php:57 mod/ostatus_subscribe.php:16 mod/api.php:35
+#: mod/api.php:40 mod/settings.php:42 mod/settings.php:141
+#: mod/settings.php:665 mod/regmod.php:108 mod/group.php:26
+#: mod/delegate.php:25 mod/delegate.php:43 mod/delegate.php:54
+#: mod/photos.php:174 mod/photos.php:1051 mod/nogroup.php:28
+#: mod/message.php:59 mod/message.php:104 mod/unfollow.php:15
+#: mod/unfollow.php:57 mod/unfollow.php:90 mod/wall_attach.php:74
+#: mod/wall_attach.php:77 mod/notes.php:30 mod/crepair.php:98 mod/poke.php:150
+#: mod/notifications.php:73 mod/follow.php:17 mod/follow.php:54
+#: mod/follow.php:118 mod/cal.php:304 mod/contacts.php:386
+#: mod/wallmessage.php:16 mod/wallmessage.php:40 mod/wallmessage.php:79
+#: mod/wallmessage.php:103 mod/dfrn_confirm.php:68 mod/wall_upload.php:103
+#: mod/wall_upload.php:106 mod/register.php:53 mod/common.php:26
+#: mod/item.php:160 mod/editpost.php:18 index.php:444
+msgid "Permission denied."
+msgstr "Käyttöoikeus evätty."
 
-#: mod/apps.php:14 index.php:273
-msgid "You must be logged in to use addons. "
-msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"
+#: include/items.php:471
+msgid "Archives"
+msgstr "Arkisto"
 
-#: mod/apps.php:19
-msgid "Applications"
-msgstr "Sovellukset"
+#: include/items.php:477 src/Content/Widget.php:312
+#: src/Content/ForumManager.php:130 src/App.php:512 src/Object/Post.php:430
+#: view/theme/vier/theme.php:259
+msgid "show more"
+msgstr "näytä lisää"
 
-#: mod/apps.php:22
-msgid "No installed applications."
-msgstr "Ei asennettuja sovelluksia."
+#: src/Model/Item.php:1677
+#, php-format
+msgid "%1$s is attending %2$s's %3$s"
+msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: mod/attach.php:15
-msgid "Item not available."
-msgstr "Kohde ei saatavilla."
+#: src/Model/Item.php:1682
+#, php-format
+msgid "%1$s is not attending %2$s's %3$s"
+msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: mod/attach.php:25
-msgid "Item was not found."
-msgstr "Kohdetta ei löytynyt."
+#: src/Model/Item.php:1687
+#, php-format
+msgid "%1$s may attend %2$s's %3$s"
+msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
 
-#: mod/common.php:91
-msgid "No contacts in common."
-msgstr "Ei yhteisiä kontakteja."
+#: src/Model/Contact.php:657
+msgid "Drop Contact"
+msgstr "Poista kontakti"
 
-#: mod/common.php:140 mod/contacts.php:886
-msgid "Common Friends"
-msgstr "Yhteisiä kavereita"
+#: src/Model/Contact.php:1060
+msgid "Organisation"
+msgstr "Järjestö"
 
-#: mod/credits.php:18
-msgid "Credits"
-msgstr "Lopputekstit"
+#: src/Model/Contact.php:1063
+msgid "News"
+msgstr "Uutiset"
 
-#: mod/credits.php:19
-msgid ""
-"Friendica is a community project, that would not be possible without the "
-"help of many people. Here is a list of those who have contributed to the "
-"code or the translation of Friendica. Thank you all!"
-msgstr ""
+#: src/Model/Contact.php:1066
+msgid "Forum"
+msgstr "Keskustelupalsta"
 
-#: mod/crepair.php:87
-msgid "Contact settings applied."
-msgstr "Kontaktiasetukset tallennettu."
+#: src/Model/Contact.php:1235 mod/dfrn_request.php:345
+msgid "Disallowed profile URL."
+msgstr "Kielletty profiiliosoite."
 
-#: mod/crepair.php:89
-msgid "Contact update failed."
-msgstr "Kontaktipäivitys epäonnistui."
+#: src/Model/Contact.php:1240 mod/friendica.php:128 mod/admin.php:353
+#: mod/admin.php:371 mod/dfrn_request.php:351
+msgid "Blocked domain"
+msgstr "Estetty verkkotunnus"
 
-#: mod/crepair.php:110 mod/dfrn_confirm.php:131 mod/fsuggest.php:30
-#: mod/fsuggest.php:96
-msgid "Contact not found."
-msgstr "Kontaktia ei ole."
+#: src/Model/Contact.php:1245
+msgid "Connect URL missing."
+msgstr "Yhteys URL-linkki puuttuu."
 
-#: mod/crepair.php:114
+#: src/Model/Contact.php:1254
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
+"The contact could not be added. Please check the relevant network "
+"credentials in your Settings -> Social Networks page."
+msgstr ""
 
-#: mod/crepair.php:115
+#: src/Model/Contact.php:1301
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista."
-
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "No mirroring"
-msgstr "Ei peilausta"
-
-#: mod/crepair.php:129
-msgid "Mirror as forwarded posting"
-msgstr "Peilaa välitettynä julkaisuna"
+"This site is not configured to allow communications with other networks."
+msgstr ""
 
-#: mod/crepair.php:129 mod/crepair.php:131
-msgid "Mirror as my own posting"
-msgstr "Peilaa omana julkaisuna"
+#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."
 
-#: mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Palaa kontaktin muokkaamiseen"
+#: src/Model/Contact.php:1314
+msgid "The profile address specified does not provide adequate information."
+msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa."
 
-#: mod/crepair.php:146
-msgid "Refetch contact data"
+#: src/Model/Contact.php:1319
+msgid "An author or name was not found."
 msgstr ""
 
-#: mod/crepair.php:148 mod/manage.php:184 mod/localtime.php:56
-#: mod/poke.php:199 mod/fsuggest.php:114 mod/message.php:265
-#: mod/message.php:432 mod/photos.php:1080 mod/photos.php:1160
-#: mod/photos.php:1445 mod/photos.php:1491 mod/photos.php:1530
-#: mod/photos.php:1603 mod/contacts.php:610 mod/events.php:530
-#: mod/install.php:251 mod/install.php:290 mod/invite.php:155
-#: mod/profiles.php:672 view/theme/duepuntozero/config.php:71
-#: view/theme/frio/config.php:113 view/theme/quattro/config.php:73
-#: view/theme/vier/config.php:119 src/Object/Post.php:796
-msgid "Submit"
-msgstr "Lähetä"
+#: src/Model/Contact.php:1322
+msgid "No browser URL could be matched to this address."
+msgstr ""
 
-#: mod/crepair.php:149
-msgid "Remote Self"
+#: src/Model/Contact.php:1325
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: mod/crepair.php:152
-msgid "Mirror postings from this contact"
-msgstr "Peilaa tämän kontaktin julkaisut"
+#: src/Model/Contact.php:1326
+msgid "Use mailto: in front of address to force email check."
+msgstr ""
 
-#: mod/crepair.php:154
+#: src/Model/Contact.php:1332
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: mod/crepair.php:158 mod/admin.php:490 mod/admin.php:1781 mod/admin.php:1793
-#: mod/admin.php:1806 mod/admin.php:1822 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Name"
-msgstr "Nimi"
+#: src/Model/Contact.php:1337
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
 
-#: mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Tilin lempinimi"
+#: src/Model/Contact.php:1388
+msgid "Unable to retrieve contact information."
+msgstr "Kontaktin tietoja ei voitu hakea."
 
-#: mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
+#: src/Model/Contact.php:1537 mod/dfrn_request.php:568
+#: mod/dfrn_confirm.php:661
+msgid "[Name Withheld]"
+msgstr "[Nimi jätetty pois]"
 
-#: mod/crepair.php:161
-msgid "Account URL"
-msgstr "Tilin URL-osoite"
+#: src/Model/Contact.php:1605 src/Protocol/DFRN.php:1482
+#, php-format
+msgid "%s's birthday"
+msgstr "%s: syntymäpäivä"
 
-#: mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL kaveripyyntöä varten"
+#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Hyvää syntymäpäivää %s"
 
-#: mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL kaverin vahvistusta varten"
+#: src/Model/Mail.php:40 src/Model/Mail.php:174
+msgid "[no subject]"
+msgstr "[ei aihetta]"
 
-#: mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL huomautuksia varten"
+#: src/Model/Profile.php:97
+msgid "Requested account is not available."
+msgstr "Pyydetty käyttäjätili ei ole saatavilla."
 
-#: mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "URL Ã¤Ã¤nestyksiä/syötteitä varten"
+#: src/Model/Profile.php:118 mod/profile.php:37
+msgid "Requested profile is not available."
+msgstr "Pyydettyä profiilia ei saatavilla."
 
-#: mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Uusi kuva osoitteesta"
+#: src/Model/Profile.php:168 src/Model/Profile.php:399
+#: src/Model/Profile.php:863
+msgid "Edit profile"
+msgstr "Muokkaa profiilia"
 
-#: mod/fbrowser.php:34 view/theme/frio/theme.php:261 src/Content/Nav.php:102
-#: src/Model/Profile.php:906
-msgid "Photos"
-msgstr "Kuvat"
+#: src/Model/Profile.php:297 src/Content/Widget.php:37 mod/dirfind.php:215
+#: mod/suggest.php:101 mod/allfriends.php:90 mod/match.php:105
+msgid "Connect"
+msgstr "Yhdistä"
 
-#: mod/fbrowser.php:43 mod/fbrowser.php:68 mod/photos.php:194
-#: mod/photos.php:1062 mod/photos.php:1149 mod/photos.php:1166
-#: mod/photos.php:1659 mod/photos.php:1673 src/Model/Photo.php:244
-#: src/Model/Photo.php:253
-msgid "Contact Photos"
-msgstr "Kontaktin valokuvat"
+#: src/Model/Profile.php:336
+msgid "Atom feed"
+msgstr "Atom -syöte"
 
-#: mod/fbrowser.php:105 mod/fbrowser.php:136 mod/profile_photo.php:250
-msgid "Upload"
-msgstr "Lähetä"
+#: src/Model/Profile.php:372 src/Content/Nav.php:205
+msgid "Profiles"
+msgstr "Profiilit"
 
-#: mod/fbrowser.php:131
-msgid "Files"
-msgstr "Tiedostot"
+#: src/Model/Profile.php:372
+msgid "Manage/edit profiles"
+msgstr "Hallitse/muokkaa profiilit"
 
-#: mod/fetch.php:16 mod/fetch.php:52 mod/fetch.php:65 mod/help.php:60
-#: mod/p.php:21 mod/p.php:48 mod/p.php:57 index.php:320
-msgid "Not Found"
-msgstr "Ei löydetty"
+#: src/Model/Profile.php:379 src/Model/Profile.php:401 mod/profiles.php:777
+msgid "Change profile photo"
+msgstr "Vaihda profiilikuva"
 
-#: mod/hcard.php:18
-msgid "No profile"
-msgstr "Ei profiilia"
+#: src/Model/Profile.php:380 mod/profiles.php:778
+msgid "Create New Profile"
+msgstr "Luo uusi profiili"
 
-#: mod/help.php:48
-msgid "Help:"
-msgstr "Ohje:"
+#: src/Model/Profile.php:389 mod/profiles.php:767
+msgid "Profile Image"
+msgstr "Profiilikuva"
 
-#: mod/help.php:54 view/theme/vier/theme.php:298 src/Content/Nav.php:134
-msgid "Help"
-msgstr "Ohje"
+#: src/Model/Profile.php:392 mod/profiles.php:769
+msgid "visible to everybody"
+msgstr "näkyvissä kaikille"
 
-#: mod/help.php:63 index.php:325
-msgid "Page not found."
-msgstr "Sivua ei löytynyt."
+#: src/Model/Profile.php:393 mod/profiles.php:675 mod/profiles.php:770
+msgid "Edit visibility"
+msgstr "Muokkaa näkyvyyttä"
 
-#: mod/home.php:39
-#, php-format
-msgid "Welcome to %s"
-msgstr "Tervetuloa %s"
+#: src/Model/Profile.php:417 src/Model/Event.php:60 src/Model/Event.php:85
+#: src/Model/Event.php:421 src/Model/Event.php:900 mod/directory.php:148
+#: mod/events.php:518 mod/notifications.php:247 mod/contacts.php:660
+msgid "Location:"
+msgstr "Sijainti:"
 
-#: mod/lockview.php:38 mod/lockview.php:46
-msgid "Remote privacy information not available."
-msgstr "Yksityisyyden etätietoja ei saatavilla."
+#: src/Model/Profile.php:420 src/Model/Profile.php:749 mod/directory.php:151
+#: mod/notifications.php:253
+msgid "Gender:"
+msgstr "Sukupuoli:"
 
-#: mod/lockview.php:55
-msgid "Visible to:"
-msgstr "Näkyvissä:"
+#: src/Model/Profile.php:421 src/Model/Profile.php:773 mod/directory.php:152
+msgid "Status:"
+msgstr "Tila:"
 
-#: mod/maintenance.php:24
-msgid "System down for maintenance"
-msgstr "Järjestelmä poiskytketty huoltoa varten"
+#: src/Model/Profile.php:422 src/Model/Profile.php:790 mod/directory.php:153
+msgid "Homepage:"
+msgstr "Kotisivu:"
 
-#: mod/newmember.php:11
-msgid "Welcome to Friendica"
-msgstr "Tervetuloa Friendicaan"
+#: src/Model/Profile.php:423 src/Model/Profile.php:810 mod/directory.php:154
+#: mod/notifications.php:249 mod/contacts.php:664
+msgid "About:"
+msgstr "Lisätietoja:"
 
-#: mod/newmember.php:12
-msgid "New Member Checklist"
-msgstr "Uuden jäsenen tarkistuslista"
+#: src/Model/Profile.php:424 mod/contacts.php:662
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: mod/newmember.php:14
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
+#: src/Model/Profile.php:520 mod/notifications.php:261 mod/contacts.php:71
+msgid "Network:"
+msgstr "Verkko:"
+
+#: src/Model/Profile.php:550 src/Model/Profile.php:643
+msgid "g A l F d"
 msgstr ""
 
-#: mod/newmember.php:15
-msgid "Getting Started"
-msgstr "Ensiaskeleet"
+#: src/Model/Profile.php:551
+msgid "d"
+msgstr ""
 
-#: mod/newmember.php:17
-msgid "Friendica Walk-Through"
-msgstr "Friendica -läpikäynti"
+#: src/Model/Profile.php:608 src/Model/Profile.php:707
+msgid "[today]"
+msgstr "[tänään]"
 
-#: mod/newmember.php:17
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr ""
+#: src/Model/Profile.php:619
+msgid "Birthday Reminders"
+msgstr "Syntymäpäivämuistutukset"
 
-#: mod/newmember.php:19 mod/admin.php:1906 mod/admin.php:2175
-#: mod/settings.php:123 view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Settings"
-msgstr "Asetukset"
+#: src/Model/Profile.php:620
+msgid "Birthdays this week:"
+msgstr "Syntymäpäiviä tällä viikolla:"
 
-#: mod/newmember.php:21
-msgid "Go to Your Settings"
-msgstr "Omat Asetukset"
+#: src/Model/Profile.php:694
+msgid "[No description]"
+msgstr "[Ei kuvausta]"
 
-#: mod/newmember.php:21
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr ""
+#: src/Model/Profile.php:721
+msgid "Event Reminders"
+msgstr "Tapahtumamuistutukset"
 
-#: mod/newmember.php:22
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr ""
+#: src/Model/Profile.php:722
+msgid "Events this week:"
+msgstr "Tapahtumia tällä viikolla:"
 
-#: mod/newmember.php:24 mod/profperm.php:113 mod/contacts.php:671
-#: mod/contacts.php:863 view/theme/frio/theme.php:260 src/Content/Nav.php:101
-#: src/Model/Profile.php:732 src/Model/Profile.php:865
-#: src/Model/Profile.php:898
+#: src/Model/Profile.php:734 src/Model/Profile.php:867
+#: src/Model/Profile.php:900 src/Content/Nav.php:101 mod/contacts.php:671
+#: mod/contacts.php:863 mod/newmember.php:24 mod/profperm.php:113
+#: view/theme/frio/theme.php:260
 msgid "Profile"
 msgstr "Profiili"
 
-#: mod/newmember.php:26 mod/profile_photo.php:249 mod/profiles.php:691
-msgid "Upload Profile Photo"
-msgstr "Lataa profiilikuva"
-
-#: mod/newmember.php:26
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr ""
+#: src/Model/Profile.php:742 mod/settings.php:1209
+msgid "Full Name:"
+msgstr "Koko nimi:"
 
-#: mod/newmember.php:27
-msgid "Edit Your Profile"
-msgstr "Muokkaa profiilisi"
+#: src/Model/Profile.php:745
+msgid "Member since:"
+msgstr "Liittymispäivämäärä:"
 
-#: mod/newmember.php:27
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
+#: src/Model/Profile.php:753
+msgid "j F, Y"
 msgstr ""
 
-#: mod/newmember.php:28
-msgid "Profile Keywords"
-msgstr "Profiilin avainsanat"
-
-#: mod/newmember.php:28
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
+#: src/Model/Profile.php:754
+msgid "j F"
 msgstr ""
 
-#: mod/newmember.php:30
-msgid "Connecting"
-msgstr "Yhdistetään"
+#: src/Model/Profile.php:762 src/Util/Temporal.php:147
+msgid "Birthday:"
+msgstr "Syntymäpäivä:"
 
-#: mod/newmember.php:36
-msgid "Importing Emails"
-msgstr "Sähköpostin tuominen"
+#: src/Model/Profile.php:769
+msgid "Age:"
+msgstr "Ikä:"
 
-#: mod/newmember.php:36
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
+#: src/Model/Profile.php:782
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: mod/newmember.php:39
-msgid "Go to Your Contacts Page"
-msgstr "Näytä minun kontaktit"
+#: src/Model/Profile.php:786 mod/profiles.php:694
+msgid "Sexual Preference:"
+msgstr "Seksuaalinen suuntautuminen:"
 
-#: mod/newmember.php:39
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr ""
+#: src/Model/Profile.php:794 mod/profiles.php:721
+msgid "Hometown:"
+msgstr "Kotikaupunki:"
 
-#: mod/newmember.php:40
-msgid "Go to Your Site's Directory"
-msgstr "Näytä oman sivuston luettelo"
+#: src/Model/Profile.php:798 mod/notifications.php:251 mod/follow.php:174
+#: mod/contacts.php:666
+msgid "Tags:"
+msgstr "Tunnisteet:"
 
-#: mod/newmember.php:40
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr ""
+#: src/Model/Profile.php:802 mod/profiles.php:722
+msgid "Political Views:"
+msgstr "Politiikka:"
 
-#: mod/newmember.php:41
-msgid "Finding New People"
-msgstr "Kavereiden hankkiminen"
+#: src/Model/Profile.php:806
+msgid "Religion:"
+msgstr "Uskonto:"
 
-#: mod/newmember.php:41
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr ""
+#: src/Model/Profile.php:814
+msgid "Hobbies/Interests:"
+msgstr "Harrastukset:"
 
-#: mod/newmember.php:43 src/Model/Group.php:414
-msgid "Groups"
-msgstr "Ryhmät"
+#: src/Model/Profile.php:818 mod/profiles.php:726
+msgid "Likes:"
+msgstr "Tykkäykset:"
 
-#: mod/newmember.php:45
-msgid "Group Your Contacts"
-msgstr "Järjestä kontaktit ryhmiin"
+#: src/Model/Profile.php:822 mod/profiles.php:727
+msgid "Dislikes:"
+msgstr "Ei tykkää:"
 
-#: mod/newmember.php:45
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr ""
+#: src/Model/Profile.php:826
+msgid "Contact information and Social Networks:"
+msgstr "Yhteystiedot ja sosiaalinen media:"
 
-#: mod/newmember.php:48
-msgid "Why Aren't My Posts Public?"
-msgstr "Miksi julkaisuni eivät ole julkisia?"
+#: src/Model/Profile.php:830
+msgid "Musical interests:"
+msgstr "Musiikki:"
 
-#: mod/newmember.php:48
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr ""
+#: src/Model/Profile.php:834
+msgid "Books, literature:"
+msgstr "Kirjat, kirjallisuus:"
 
-#: mod/newmember.php:52
-msgid "Getting Help"
-msgstr "Avun saaminen"
+#: src/Model/Profile.php:838
+msgid "Television:"
+msgstr "Televisio:"
 
-#: mod/newmember.php:54
-msgid "Go to the Help Section"
-msgstr "Näytä ohjeet"
+#: src/Model/Profile.php:842
+msgid "Film/dance/culture/entertainment:"
+msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
 
-#: mod/newmember.php:54
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr ""
+#: src/Model/Profile.php:846
+msgid "Love/Romance:"
+msgstr "Rakkaus/romanssi:"
 
-#: mod/nogroup.php:42 mod/viewcontacts.php:112 mod/contacts.php:619
-#: mod/contacts.php:959
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Näytä %s-käyttäjän profiili [%s]"
+#: src/Model/Profile.php:850
+msgid "Work/employment:"
+msgstr "Työ:"
 
-#: mod/nogroup.php:43 mod/contacts.php:960
-msgid "Edit contact"
-msgstr "Muokkaa kontaktia"
+#: src/Model/Profile.php:854
+msgid "School/education:"
+msgstr "Koulutus:"
 
-#: mod/nogroup.php:63
-msgid "Contacts who are not members of a group"
-msgstr "Kontaktit jotka eivät kuulu ryhmään"
+#: src/Model/Profile.php:859
+msgid "Forums:"
+msgstr "Foorumit:"
 
-#: mod/p.php:14
-msgid "Not Extended"
-msgstr "Ei laajennettu"
+#: src/Model/Profile.php:868 mod/events.php:531
+msgid "Basic"
+msgstr ""
 
-#: mod/repair_ostatus.php:18
-msgid "Resubscribing to OStatus contacts"
+#: src/Model/Profile.php:869 mod/events.php:532 mod/admin.php:1351
+#: mod/contacts.php:895
+msgid "Advanced"
 msgstr ""
 
-#: mod/repair_ostatus.php:34
-msgid "Error"
-msgstr "Virhe"
+#: src/Model/Profile.php:892 src/Content/Nav.php:100 mod/contacts.php:669
+#: mod/contacts.php:855 view/theme/frio/theme.php:259
+msgid "Status"
+msgstr "Tila"
 
-#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
-msgid "Done"
-msgstr "Valmis"
+#: src/Model/Profile.php:895 mod/unfollow.php:132 mod/follow.php:186
+#: mod/contacts.php:858
+msgid "Status Messages and Posts"
+msgstr "Statusviestit ja postaukset"
 
-#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
-msgid "Keep this window open until done."
-msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu."
+#: src/Model/Profile.php:903 mod/contacts.php:866
+msgid "Profile Details"
+msgstr "Profiilitiedot"
 
-#: mod/suggest.php:36
-msgid "Do you really want to delete this suggestion?"
-msgstr "Haluatko varmasti poistaa ehdotuksen?"
+#: src/Model/Profile.php:908 src/Content/Nav.php:102 mod/fbrowser.php:34
+#: view/theme/frio/theme.php:261
+msgid "Photos"
+msgstr "Kuvat"
 
-#: mod/suggest.php:73
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua."
+#: src/Model/Profile.php:911 mod/photos.php:108
+msgid "Photo Albums"
+msgstr "Valokuva-albumit"
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Jätä huomiotta/piilota"
+#: src/Model/Profile.php:916 src/Model/Profile.php:919 src/Content/Nav.php:103
+#: view/theme/frio/theme.php:262
+msgid "Videos"
+msgstr "Videot"
 
-#: mod/suggest.php:114 view/theme/vier/theme.php:203 src/Content/Widget.php:64
-msgid "Friend Suggestions"
-msgstr "Ystäväehdotukset"
+#: src/Model/Profile.php:928 src/Model/Profile.php:939 src/Content/Nav.php:104
+#: src/Content/Nav.php:169 mod/events.php:391 mod/cal.php:274
+#: view/theme/frio/theme.php:263 view/theme/frio/theme.php:267
+msgid "Events"
+msgstr "Tapahtumat"
 
-#: mod/update_community.php:27 mod/update_display.php:27
-#: mod/update_notes.php:40 mod/update_profile.php:39 mod/update_network.php:33
-msgid "[Embedded content - reload page to view]"
-msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]"
+#: src/Model/Profile.php:931 src/Model/Profile.php:942 src/Content/Nav.php:169
+#: view/theme/frio/theme.php:267
+msgid "Events and Calendar"
+msgstr "Tapahtumat ja kalenteri"
 
-#: mod/uimport.php:55 mod/register.php:191
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna."
+#: src/Model/Profile.php:950 mod/notes.php:52
+msgid "Personal Notes"
+msgstr "Henkilökohtaiset tiedot"
 
-#: mod/uimport.php:70 mod/register.php:285
-msgid "Import"
-msgstr "Tuo"
+#: src/Model/Profile.php:953
+msgid "Only You Can See This"
+msgstr "Vain sinä näet tämän"
 
-#: mod/uimport.php:72
-msgid "Move account"
-msgstr "Siirrä tili"
+#: src/Model/Event.php:36 src/Model/Event.php:814 mod/localtime.php:19
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
 
-#: mod/uimport.php:73
-msgid "You can import an account from another Friendica server."
-msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta."
+#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
+#: src/Model/Event.php:882
+msgid "Starts:"
+msgstr "Alkaa:"
 
-#: mod/uimport.php:74
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr ""
+#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
+#: src/Model/Event.php:886
+msgid "Finishes:"
+msgstr "Päättyy:"
 
-#: mod/uimport.php:75
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (GNU Social/Statusnet) or from Diaspora"
-msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta."
+#: src/Model/Event.php:368
+msgid "all-day"
+msgstr "koko päivä"
 
-#: mod/uimport.php:76
-msgid "Account file"
-msgstr "Tilitiedosto"
+#: src/Model/Event.php:391
+msgid "Jun"
+msgstr "Kes."
 
-#: mod/uimport.php:76
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr ""
+#: src/Model/Event.php:394
+msgid "Sept"
+msgstr "Syy."
 
-#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s"
+#: src/Model/Event.php:412 mod/events.php:400 mod/cal.php:280
+msgid "today"
+msgstr "tänään"
 
-#: mod/match.php:48
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
+#: src/Model/Event.php:413 src/Util/Temporal.php:304 mod/events.php:401
+#: mod/cal.php:281
+msgid "month"
+msgstr "kuukausi"
 
-#: mod/match.php:104
-msgid "is interested in:"
-msgstr "on kiinnostunut seuraavista aiheista:"
+#: src/Model/Event.php:414 src/Util/Temporal.php:305 mod/events.php:402
+#: mod/cal.php:282
+msgid "week"
+msgstr "viikko"
 
-#: mod/match.php:120
-msgid "Profile Match"
-msgstr "Vastaavien profiilien haku"
+#: src/Model/Event.php:415 src/Util/Temporal.php:306 mod/events.php:403
+#: mod/cal.php:283
+msgid "day"
+msgstr "päivä"
 
-#: mod/match.php:125 mod/dirfind.php:253
-msgid "No matches"
-msgstr "Ei täsmääviä profiileja"
+#: src/Model/Event.php:417
+msgid "No events to display"
+msgstr "Ei näytettäviä tapahtumia."
 
-#: mod/notifications.php:37
-msgid "Invalid request identifier."
-msgstr "Virheellinen pyyntötunniste."
+#: src/Model/Event.php:543
+msgid "l, F j"
+msgstr "l, F j"
 
-#: mod/notifications.php:46 mod/notifications.php:183
-#: mod/notifications.php:230
-msgid "Discard"
-msgstr "Hylkää"
+#: src/Model/Event.php:566
+msgid "Edit event"
+msgstr "Muokkaa tapahtumaa"
 
-#: mod/notifications.php:62 mod/notifications.php:182
-#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
-#: mod/contacts.php:1019
-msgid "Ignore"
-msgstr "Jätä huomiotta"
+#: src/Model/Event.php:567
+msgid "Duplicate event"
+msgstr "Monista tapahtuma"
 
-#: mod/notifications.php:98 src/Content/Nav.php:189
-msgid "Notifications"
-msgstr "Huomautukset"
+#: src/Model/Event.php:568
+msgid "Delete event"
+msgstr "Poista tapahtuma"
 
-#: mod/notifications.php:107
-msgid "Network Notifications"
-msgstr "Verkkoilmoitukset"
+#: src/Model/Event.php:815
+msgid "D g:i A"
+msgstr ""
 
-#: mod/notifications.php:113 mod/notify.php:81
-msgid "System Notifications"
-msgstr "Järjestelmäilmoitukset"
+#: src/Model/Event.php:816
+msgid "g:i A"
+msgstr ""
 
-#: mod/notifications.php:119
-msgid "Personal Notifications"
-msgstr "Henkilökohtaiset ilmoitukset"
+#: src/Model/Event.php:901 src/Model/Event.php:903
+msgid "Show map"
+msgstr "Näytä kartta"
 
-#: mod/notifications.php:125
-msgid "Home Notifications"
-msgstr "Koti-ilmoitukset"
+#: src/Model/Event.php:902
+msgid "Hide map"
+msgstr "Piilota kartta"
 
-#: mod/notifications.php:155
-msgid "Show Ignored Requests"
-msgstr "Näytä ohitetut pyynnöt"
+#: src/Model/Group.php:44
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
 
-#: mod/notifications.php:155
-msgid "Hide Ignored Requests"
-msgstr "Piilota ohitetut pyynnöt"
+#: src/Model/Group.php:341
+msgid "Default privacy group for new contacts"
+msgstr "Oletusryhmä uusille kontakteille"
 
-#: mod/notifications.php:167 mod/notifications.php:237
-msgid "Notification type: "
-msgstr "Ilmoitustyyppi:"
+#: src/Model/Group.php:374
+msgid "Everybody"
+msgstr "Kaikki"
 
-#: mod/notifications.php:170
-#, php-format
-msgid "suggested by %s"
-msgstr "ehdottaa %s"
+#: src/Model/Group.php:394
+msgid "edit"
+msgstr "muokkaa"
 
-#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
-msgid "Hide this contact from others"
-msgstr "Piilota kontakti muilta"
+#: src/Model/Group.php:413 mod/network.php:202
+msgid "add"
+msgstr "lisää"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "Post a new friend activity"
-msgstr ""
+#: src/Model/Group.php:414 mod/newmember.php:43
+msgid "Groups"
+msgstr "Ryhmät"
 
-#: mod/notifications.php:176 mod/notifications.php:255
-msgid "if applicable"
-msgstr "tarvittaessa"
+#: src/Model/Group.php:418
+msgid "Edit group"
+msgstr "Muokkaa ryhmää"
 
-#: mod/notifications.php:179 mod/notifications.php:264 mod/admin.php:1796
-msgid "Approve"
-msgstr "Hyväksy"
+#: src/Model/Group.php:419
+msgid "Contacts not in any group"
+msgstr "Kontaktit ilman ryhmää"
 
-#: mod/notifications.php:198
-msgid "Claims to be known to you: "
-msgstr "Väittää tuntevansa sinut:"
+#: src/Model/Group.php:420
+msgid "Create a new group"
+msgstr "Luo uusi ryhmä"
 
-#: mod/notifications.php:199
-msgid "yes"
-msgstr "kyllä"
+#: src/Model/Group.php:421 mod/group.php:103 mod/group.php:199
+msgid "Group Name: "
+msgstr "Ryhmän nimi:"
 
-#: mod/notifications.php:199
-msgid "no"
-msgstr "ei"
+#: src/Model/Group.php:422
+msgid "Edit groups"
+msgstr "Muokkaa ryhmiä"
 
-#: mod/notifications.php:200 mod/notifications.php:205
-msgid "Shall your connection be bidirectional or not?"
-msgstr "Kaksisuuntainen yhteys?"
+#: src/Model/Photo.php:244 src/Model/Photo.php:253 mod/fbrowser.php:43
+#: mod/fbrowser.php:68 mod/photos.php:194 mod/photos.php:1062
+#: mod/photos.php:1149 mod/photos.php:1166 mod/photos.php:1659
+#: mod/photos.php:1673
+msgid "Contact Photos"
+msgstr "Kontaktin valokuvat"
 
-#: mod/notifications.php:201 mod/notifications.php:206
-#, 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."
+#: src/Model/User.php:154
+msgid "Login failed"
+msgstr "Kirjautuminen epäonnistui"
+
+#: src/Model/User.php:185
+msgid "Not enough information to authenticate"
 msgstr ""
 
-#: mod/notifications.php:202
-#, php-format
-msgid ""
-"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
-" will not receive updates from them in your news feed."
+#: src/Model/User.php:214 src/Core/Console/NewPassword.php:74 mod/cal.php:297
+msgid "User not found"
+msgstr "Käyttäjää ei löydy"
+
+#: src/Model/User.php:335 mod/settings.php:384
+msgid "Passwords do not match. Password unchanged."
+msgstr "Salasanat eivät täsmää. Salasana ennallaan."
+
+#: src/Model/User.php:342
+msgid "An invitation is required."
 msgstr ""
 
-#: mod/notifications.php:207
-#, php-format
+#: src/Model/User.php:346
+msgid "Invitation could not be verified."
+msgstr "Kutsua ei voitu vahvistaa."
+
+#: src/Model/User.php:353
+msgid "Invalid OpenID url"
+msgstr "Virheellinen OpenID url-osoite"
+
+#: src/Model/User.php:366 src/Module/Login.php:100
 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."
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: mod/notifications.php:218
-msgid "Friend"
-msgstr "Kaveri"
+#: src/Model/User.php:366 src/Module/Login.php:100
+msgid "The error message was:"
+msgstr "Virheviesti oli:"
 
-#: mod/notifications.php:219
-msgid "Sharer"
-msgstr "Jakaja"
+#: src/Model/User.php:372
+msgid "Please enter the required information."
+msgstr "Syötä tarvittavat tiedot."
 
-#: mod/notifications.php:219
-msgid "Subscriber"
-msgstr "Tilaaja"
+#: src/Model/User.php:385
+msgid "Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
 
-#: mod/notifications.php:247 mod/contacts.php:660 mod/events.php:518
-#: mod/directory.php:148 src/Model/Event.php:60 src/Model/Event.php:85
-#: src/Model/Event.php:421 src/Model/Event.php:900 src/Model/Profile.php:417
-msgid "Location:"
-msgstr "Sijainti:"
+#: src/Model/User.php:388
+msgid "Name too short."
+msgstr "Nimi on liian lyhyt."
 
-#: mod/notifications.php:249 mod/contacts.php:664 mod/directory.php:154
-#: src/Model/Profile.php:423 src/Model/Profile.php:808
-msgid "About:"
-msgstr "Lisätietoja:"
+#: src/Model/User.php:396
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
 
-#: mod/notifications.php:251 mod/contacts.php:666 mod/follow.php:174
-#: src/Model/Profile.php:796
-msgid "Tags:"
-msgstr "Tunnisteet:"
+#: src/Model/User.php:401
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."
 
-#: mod/notifications.php:253 mod/directory.php:151 src/Model/Profile.php:420
-#: src/Model/Profile.php:747
-msgid "Gender:"
-msgstr "Sukupuoli:"
+#: src/Model/User.php:405
+msgid "Not a valid email address."
+msgstr "Virheellinen sähköpostiosoite."
 
-#: mod/notifications.php:258 mod/contacts.php:656 mod/unfollow.php:122
-#: mod/admin.php:490 mod/admin.php:500 mod/follow.php:166
-msgid "Profile URL"
-msgstr "Profiilin URL"
+#: src/Model/User.php:409 src/Model/User.php:417
+msgid "Cannot use that email."
+msgstr "Sähköpostiosoitetta ei voitu käyttää."
 
-#: mod/notifications.php:261 mod/contacts.php:71 src/Model/Profile.php:520
-msgid "Network:"
-msgstr "Verkko:"
+#: src/Model/User.php:424
+msgid "Your nickname can only contain a-z, 0-9 and _."
+msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _."
 
-#: mod/notifications.php:275
-msgid "No introductions."
-msgstr "Ei esittelyjä."
+#: src/Model/User.php:431 src/Model/User.php:487
+msgid "Nickname is already registered. Please choose another."
+msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."
 
-#: mod/notifications.php:316
-msgid "Show unread"
-msgstr "Näytä lukemattomat"
+#: src/Model/User.php:441
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
 
-#: mod/notifications.php:316
-msgid "Show all"
-msgstr "Näytä kaikki"
+#: src/Model/User.php:474 src/Model/User.php:478
+msgid "An error occurred during registration. Please try again."
+msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen."
 
-#: mod/notifications.php:322
-#, php-format
-msgid "No more %s notifications."
-msgstr "Ei muita %s ilmoituksia."
+#: src/Model/User.php:498 view/theme/duepuntozero/config.php:54
+msgid "default"
+msgstr "oletus"
 
-#: mod/openid.php:29
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
+#: src/Model/User.php:503
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
 
-#: mod/openid.php:66
+#: src/Model/User.php:510
+msgid "An error occurred creating your self contact. Please try again."
+msgstr ""
+
+#: src/Model/User.php:515 src/Content/ContactSelector.php:169
+msgid "Friends"
+msgstr "Kaverit"
+
+#: src/Model/User.php:519
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."
+"An error occurred creating your default contact group. Please try again."
+msgstr ""
 
-#: mod/openid.php:116 src/Module/Login.php:86 src/Module/Login.php:134
-msgid "Login failed."
-msgstr "Kirjautuminen epäonnistui"
+#: src/Model/User.php:593
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t\t"
+msgstr ""
 
-#: mod/dfrn_confirm.php:74 mod/profiles.php:39 mod/profiles.php:149
-#: mod/profiles.php:196 mod/profiles.php:618
-msgid "Profile not found."
-msgstr "Profiilia ei löytynyt."
+#: src/Model/User.php:603
+#, php-format
+msgid "Registration at %s"
+msgstr "Rekisteröityminen kohteessa %s"
 
-#: mod/dfrn_confirm.php:132
+#: src/Model/User.php:621
+#, php-format
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t\t"
 msgstr ""
 
-#: mod/dfrn_confirm.php:242
-msgid "Response from remote site was not understood."
-msgstr "Etäsivuston vastaus oli epäselvä."
+#: src/Model/User.php:625
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t\t%1$s\n"
+"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %2$s."
+msgstr ""
 
-#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Odottamaton vastaus etäsivustolta:"
+#: src/Model/User.php:659 mod/admin.php:1611
+#, php-format
+msgid "Registration details for %s"
+msgstr ""
 
-#: mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Vahvistus onnistui."
+#: src/Content/Text/BBCode.php:416
+msgid "view full size"
+msgstr "näytä täysikokoisena"
 
-#: mod/dfrn_confirm.php:275
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
+#: src/Content/Text/BBCode.php:842 src/Content/Text/BBCode.php:1611
+#: src/Content/Text/BBCode.php:1612
+msgid "Image/photo"
+msgstr "Kuva/valokuva"
 
-#: mod/dfrn_confirm.php:278
-msgid "Introduction failed or was revoked."
-msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
+#: src/Content/Text/BBCode.php:980
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: mod/dfrn_confirm.php:283
-msgid "Remote site reported: "
-msgstr ""
+#: src/Content/Text/BBCode.php:1538 src/Content/Text/BBCode.php:1560
+msgid "$1 wrote:"
+msgstr "$1 kirjoitti:"
 
-#: mod/dfrn_confirm.php:396
-msgid "Unable to set contact photo."
-msgstr "Kontaktin kuvaa ei voitu asettaa"
+#: src/Content/Text/BBCode.php:1620 src/Content/Text/BBCode.php:1621
+msgid "Encrypted content"
+msgstr "Salattu sisältö"
 
-#: mod/dfrn_confirm.php:498
-#, php-format
-msgid "No user record found for '%s' "
-msgstr ""
+#: src/Content/Text/BBCode.php:1740
+msgid "Invalid source protocol"
+msgstr "Virheellinen lähdeprotokolla"
 
-#: mod/dfrn_confirm.php:508
-msgid "Our site encryption key is apparently messed up."
-msgstr "Sivustomme salausavain on sekaisin."
+#: src/Content/Text/BBCode.php:1751
+msgid "Invalid link protocol"
+msgstr "Virheellinen linkkiprotokolla"
 
-#: mod/dfrn_confirm.php:519
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr ""
+#: src/Content/Feature.php:79
+msgid "General Features"
+msgstr "Yleiset ominaisuudet"
 
-#: mod/dfrn_confirm.php:535
-msgid "Contact record was not found for you on our site."
+#: src/Content/Feature.php:81
+msgid "Multiple Profiles"
 msgstr ""
 
-#: mod/dfrn_confirm.php:549
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: src/Content/Feature.php:81
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: mod/dfrn_confirm.php:565
+#: src/Content/Feature.php:82
+msgid "Photo Location"
+msgstr "Kuvan sijainti"
+
+#: src/Content/Feature.php:82
 msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"Photo metadata is normally stripped. This extracts the location (if present)"
+" prior to stripping metadata and links it to a map."
 msgstr ""
 
-#: mod/dfrn_confirm.php:576
-msgid "Unable to set your contact credentials on our system."
+#: src/Content/Feature.php:83
+msgid "Export Public Calendar"
+msgstr "Vie julkinen kalenteri"
+
+#: src/Content/Feature.php:83
+msgid "Ability for visitors to download the public calendar"
 msgstr ""
 
-#: mod/dfrn_confirm.php:631
-msgid "Unable to update your contact profile details on our system"
+#: src/Content/Feature.php:88
+msgid "Post Composition Features"
 msgstr ""
 
-#: mod/dfrn_confirm.php:661 mod/dfrn_request.php:568
-#: src/Model/Contact.php:1537
-msgid "[Name Withheld]"
-msgstr "[Nimi jätetty pois]"
+#: src/Content/Feature.php:89
+msgid "Post Preview"
+msgstr "Viestin esikatselu"
 
-#: mod/dfrn_confirm.php:694
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s on liittynyt kohteeseen %2$s"
+#: src/Content/Feature.php:89
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: mod/manage.php:180
-msgid "Manage Identities and/or Pages"
-msgstr "Hallitse identiteetit ja/tai sivut"
+#: src/Content/Feature.php:90
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: mod/manage.php:181
+#: src/Content/Feature.php:90
 msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+"Add/remove mention when a forum page is selected/deselected in ACL window."
 msgstr ""
 
-#: mod/manage.php:182
-msgid "Select an identity to manage: "
-msgstr "Valitse identiteetti hallitavaksi:"
+#: src/Content/Feature.php:95
+msgid "Network Sidebar Widgets"
+msgstr ""
 
-#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
-#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
-#: mod/wall_upload.php:155 mod/wall_upload.php:158
-msgid "Invalid request."
-msgstr "Virheellinen pyyntö."
+#: src/Content/Feature.php:96
+msgid "Search by Date"
+msgstr "Päivämäärähaku"
 
-#: mod/wall_attach.php:101
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: src/Content/Feature.php:96
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: mod/wall_attach.php:101
-msgid "Or - did you try to upload an empty file?"
-msgstr "Yrititkö ladata tyhjän tiedoston?"
-
-#: mod/wall_attach.php:112
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Tiedosto ylittää kokorajoituksen %s"
+#: src/Content/Feature.php:97 src/Content/Feature.php:127
+msgid "List Forums"
+msgstr "Näytä foorumit"
 
-#: mod/wall_attach.php:136 mod/wall_attach.php:152
-msgid "File upload failed."
-msgstr "Tiedoston lähettäminen epäonnistui."
+#: src/Content/Feature.php:97
+msgid "Enable widget to display the forums your are connected with"
+msgstr ""
 
-#: mod/dfrn_request.php:94
-msgid "This introduction has already been accepted."
-msgstr "Tämä esittely on jo hyväksytty."
+#: src/Content/Feature.php:98
+msgid "Group Filter"
+msgstr "Ryhmäsuodatin"
 
-#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."
+#: src/Content/Feature.php:98
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
 
-#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."
+#: src/Content/Feature.php:99
+msgid "Network Filter"
+msgstr "Verkkosuodatin"
 
-#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
-msgid "Warning: profile location has no profile photo."
-msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."
+#: src/Content/Feature.php:99
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
 
-#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
-#, 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] ""
+#: src/Content/Feature.php:100 mod/network.php:201 mod/search.php:46
+msgid "Saved Searches"
+msgstr "Tallennetut haut"
 
-#: mod/dfrn_request.php:162
-msgid "Introduction complete."
-msgstr "Esittely valmis."
+#: src/Content/Feature.php:100
+msgid "Save search terms for re-use"
+msgstr ""
 
-#: mod/dfrn_request.php:199
-msgid "Unrecoverable protocol error."
-msgstr "Vakava protokollavirhe."
+#: src/Content/Feature.php:105
+msgid "Network Tabs"
+msgstr "Verkko välilehdet"
 
-#: mod/dfrn_request.php:226
-msgid "Profile unavailable."
-msgstr "Profiili ei saatavilla."
+#: src/Content/Feature.php:106
+msgid "Network Personal Tab"
+msgstr ""
 
-#: mod/dfrn_request.php:248
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s on saanut liikaa yhteyspyyntöjä tänään."
+#: src/Content/Feature.php:106
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
 
-#: mod/dfrn_request.php:249
-msgid "Spam protection measures have been invoked."
-msgstr "Roskapostisuojaukset otettu käyttöön."
+#: src/Content/Feature.php:107
+msgid "Network New Tab"
+msgstr ""
 
-#: mod/dfrn_request.php:250
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."
+#: src/Content/Feature.php:107
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr ""
 
-#: mod/dfrn_request.php:280
-msgid "Invalid locator"
-msgstr "Viallinen paikannin"
+#: src/Content/Feature.php:108
+msgid "Network Shared Links Tab"
+msgstr ""
 
-#: mod/dfrn_request.php:316
-msgid "You have already introduced yourself here."
-msgstr "Olet jo esitellyt itsesi täällä."
+#: src/Content/Feature.php:108
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: mod/dfrn_request.php:319
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."
+#: src/Content/Feature.php:113
+msgid "Post/Comment Tools"
+msgstr "Julkaisu/kommentti työkalut"
 
-#: mod/dfrn_request.php:339
-msgid "Invalid profile URL."
-msgstr "Viallinen profiiliosoite."
+#: src/Content/Feature.php:114
+msgid "Multiple Deletion"
+msgstr ""
 
-#: mod/dfrn_request.php:345 src/Model/Contact.php:1235
-msgid "Disallowed profile URL."
-msgstr "Kielletty profiiliosoite."
+#: src/Content/Feature.php:114
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
 
-#: mod/dfrn_request.php:351 mod/admin.php:353 mod/admin.php:371
-#: mod/friendica.php:128 src/Model/Contact.php:1240
-msgid "Blocked domain"
-msgstr "Estetty verkkotunnus"
+#: src/Content/Feature.php:115
+msgid "Edit Sent Posts"
+msgstr "Muokkaa lähetetyt julkaisut"
 
-#: mod/dfrn_request.php:419 mod/contacts.php:230
-msgid "Failed to update contact record."
-msgstr "Kontaktitietojen päivitys epäonnistui."
+#: src/Content/Feature.php:115
+msgid "Edit and correct posts and comments after sending"
+msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
 
-#: mod/dfrn_request.php:439
-msgid "Your introduction has been sent."
-msgstr "Esittelysi lähetettiin."
+#: src/Content/Feature.php:116
+msgid "Tagging"
+msgstr "Tunnisteet"
 
-#: mod/dfrn_request.php:477
-msgid ""
-"Remote subscription can't be done for your network. Please subscribe "
-"directly on your system."
+#: src/Content/Feature.php:116
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: mod/dfrn_request.php:493
-msgid "Please login to confirm introduction."
-msgstr "Kirjaudu vahvistaaksesi esittelysi."
+#: src/Content/Feature.php:117
+msgid "Post Categories"
+msgstr "Julkaisuluokat"
 
-#: mod/dfrn_request.php:501
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin."
+#: src/Content/Feature.php:117
+msgid "Add categories to your posts"
+msgstr "Luokittele julkaisusi"
 
-#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
-msgid "Confirm"
-msgstr "Vahvista"
+#: src/Content/Feature.php:118 src/Content/Widget.php:200
+msgid "Saved Folders"
+msgstr "Tallennetut kansiot"
 
-#: mod/dfrn_request.php:527
-msgid "Hide this contact"
-msgstr "Piilota kontakti"
+#: src/Content/Feature.php:118
+msgid "Ability to file posts under folders"
+msgstr ""
 
-#: mod/dfrn_request.php:530
-#, php-format
-msgid "Welcome home %s."
-msgstr "Tervetuloa kotiin %s."
+#: src/Content/Feature.php:119
+msgid "Dislike Posts"
+msgstr ""
 
-#: mod/dfrn_request.php:531
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."
+#: src/Content/Feature.php:119
+msgid "Ability to dislike posts/comments"
+msgstr ""
 
-#: mod/dfrn_request.php:607 mod/probe.php:13 mod/search.php:98
-#: mod/search.php:104 mod/viewcontacts.php:45 mod/webfinger.php:16
-#: mod/community.php:27 mod/photos.php:932 mod/videos.php:199
-#: mod/display.php:203 mod/directory.php:42
-msgid "Public access denied."
-msgstr "Julkinen käyttö estetty."
+#: src/Content/Feature.php:120
+msgid "Star Posts"
+msgstr "Tähtimerkityt julkaisut"
 
-#: mod/dfrn_request.php:642
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"
+#: src/Content/Feature.php:120
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Salli julkaisujen tähtimerkintä"
 
-#: mod/dfrn_request.php:645
-#, php-format
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"%s\">follow "
-"this link to find a public Friendica site and join us today</a>."
+#: src/Content/Feature.php:121
+msgid "Mute Post Notifications"
+msgstr "Mykistä julkaisuilmoitukset"
+
+#: src/Content/Feature.php:121
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: mod/dfrn_request.php:650
-msgid "Friend/Connection Request"
-msgstr "Ystävä/yhteyspyyntö"
+#: src/Content/Feature.php:126
+msgid "Advanced Profile Settings"
+msgstr "Profiilin lisäasetukset"
 
-#: mod/dfrn_request.php:651
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@gnusocial.de"
-msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
+#: src/Content/Feature.php:127
+msgid "Show visitors public community forums at the Advanced Profile Page"
+msgstr ""
 
-#: mod/dfrn_request.php:652 mod/follow.php:149
-msgid "Please answer the following:"
-msgstr "Vastaa seuraavaan:"
+#: src/Content/Feature.php:128
+msgid "Tag Cloud"
+msgstr "Tunnistepilvi"
 
-#: mod/dfrn_request.php:653 mod/follow.php:150
-#, php-format
-msgid "Does %s know you?"
-msgstr "Tunteeko %s sinut?"
+#: src/Content/Feature.php:128
+msgid "Provide a personal tag cloud on your profile page"
+msgstr ""
 
-#: mod/dfrn_request.php:654 mod/follow.php:151
-msgid "Add a personal note:"
-msgstr "Lisää oma merkintä:"
+#: src/Content/Feature.php:129
+msgid "Display Membership Date"
+msgstr "Näytä liittymispäivämäärä"
 
-#: mod/dfrn_request.php:656 src/Content/ContactSelector.php:79
-msgid "Friendica"
-msgstr "Friendica"
+#: src/Content/Feature.php:129
+msgid "Display membership date in profile"
+msgstr "Näytä liittymispäivämäärä profiilissa"
 
-#: mod/dfrn_request.php:657
-msgid "GNU Social (Pleroma, Mastodon)"
-msgstr "GNU Social (Pleroma, Mastodon)"
+#: src/Content/Widget/CalendarExport.php:61
+msgid "Export"
+msgstr "Vie"
 
-#: mod/dfrn_request.php:658
-msgid "Diaspora (Socialhome, Hubzilla)"
-msgstr "Diaspora (Socialhome, Hubzilla)"
+#: src/Content/Widget/CalendarExport.php:62
+msgid "Export calendar as ical"
+msgstr "Vie kalenteri ical -tiedostona"
 
-#: mod/dfrn_request.php:659
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Ã¤lä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."
+#: src/Content/Widget/CalendarExport.php:63
+msgid "Export calendar as csv"
+msgstr "Vie kalenteri csv-tiedostona"
 
-#: mod/dfrn_request.php:660 mod/unfollow.php:113 mod/follow.php:157
-msgid "Your Identity Address:"
-msgstr "Identiteettisi osoite:"
+#: src/Content/Widget.php:33
+msgid "Add New Contact"
+msgstr "Lisää uusi kontakti"
 
-#: mod/dfrn_request.php:662 mod/unfollow.php:65 mod/follow.php:62
-msgid "Submit Request"
-msgstr "Lähetä pyyntö"
+#: src/Content/Widget.php:34
+msgid "Enter address or web location"
+msgstr "Syötä verkko-osoite"
 
-#: mod/filer.php:34
-msgid "- select -"
-msgstr "- valitse -"
+#: src/Content/Widget.php:35
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
 
-#: mod/localtime.php:19 src/Model/Event.php:36 src/Model/Event.php:814
-msgid "l F d, Y \\@ g:i A"
-msgstr ""
+#: src/Content/Widget.php:53
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d kutsu saatavilla"
+msgstr[1] "%d kutsuja saatavilla"
 
-#: mod/localtime.php:33
-msgid "Time Conversion"
-msgstr "Aikamuunnos"
+#: src/Content/Widget.php:59
+msgid "Find People"
+msgstr "Löydä ihmisiä"
 
-#: mod/localtime.php:35
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
+#: src/Content/Widget.php:60
+msgid "Enter name or interest"
+msgstr "Syötä nimi tai harrastus"
 
-#: mod/localtime.php:39
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC-aika: %s"
+#: src/Content/Widget.php:62
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esim. Matti Meikäläinen, kalastus yms."
 
-#: mod/localtime.php:42
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aikavyöhyke: %s"
+#: src/Content/Widget.php:63 mod/directory.php:209 mod/contacts.php:820
+msgid "Find"
+msgstr "Etsi"
 
-#: mod/localtime.php:46
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Muunnettu paikallisaika: %s"
+#: src/Content/Widget.php:64 mod/suggest.php:114 view/theme/vier/theme.php:203
+msgid "Friend Suggestions"
+msgstr "Ystäväehdotukset"
 
-#: mod/localtime.php:52
-msgid "Please select your timezone:"
-msgstr "Valitse aikavyöhykkeesi:"
+#: src/Content/Widget.php:65 view/theme/vier/theme.php:202
+msgid "Similar Interests"
+msgstr "Yhteiset harrastukset"
 
-#: mod/notify.php:77
-msgid "No more system notifications."
-msgstr "Ei enää järjestelmäilmoituksia."
+#: src/Content/Widget.php:66
+msgid "Random Profile"
+msgstr "Satunnainen profiili"
 
-#: mod/ping.php:292
-msgid "{0} wants to be your friend"
-msgstr "{0} lähetti kaveripyynnön"
+#: src/Content/Widget.php:67 view/theme/vier/theme.php:204
+msgid "Invite Friends"
+msgstr "Kutsu kavereita"
 
-#: mod/ping.php:307
-msgid "{0} sent you a message"
-msgstr "{0} lähetti sinulle viestin"
+#: src/Content/Widget.php:68
+msgid "View Global Directory"
+msgstr "Katso maailmanlaajuista luetteloa"
 
-#: mod/ping.php:322
-msgid "{0} requested registration"
-msgstr "{0} jätti rekisteröintipyynnön"
+#: src/Content/Widget.php:159
+msgid "Networks"
+msgstr "Verkot"
 
-#: mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Tökkää"
+#: src/Content/Widget.php:162
+msgid "All Networks"
+msgstr "Kaikki verkot"
 
-#: mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
+#: src/Content/Widget.php:203 src/Content/Widget.php:243
+msgid "Everything"
+msgstr "Kaikki"
 
-#: mod/poke.php:194
-msgid "Recipient"
-msgstr "Vastaanottaja"
+#: src/Content/Widget.php:240
+msgid "Categories"
+msgstr "Luokat"
 
-#: mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Valitse mitä haluat tehdä vastaanottajalle"
+#: src/Content/Widget.php:307
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d yhteinen kontakti"
+msgstr[1] "%d yhteistä kontaktia"
 
-#: mod/poke.php:198
-msgid "Make this post private"
-msgstr "Muuta julkaisu yksityiseksi"
+#: src/Content/ContactSelector.php:55
+msgid "Frequently"
+msgstr "Usein"
 
-#: mod/probe.php:14 mod/webfinger.php:17
-msgid "Only logged in users are permitted to perform a probing."
-msgstr ""
+#: src/Content/ContactSelector.php:56
+msgid "Hourly"
+msgstr "Tunneittain"
 
-#: mod/profperm.php:28 mod/group.php:83 index.php:443
-msgid "Permission denied"
-msgstr "Käyttöoikeus evätty"
+#: src/Content/ContactSelector.php:57
+msgid "Twice daily"
+msgstr "Kahdesti päivässä"
 
-#: mod/profperm.php:34 mod/profperm.php:65
-msgid "Invalid profile identifier."
-msgstr "Virheellinen profiilitunniste."
+#: src/Content/ContactSelector.php:58
+msgid "Daily"
+msgstr "Päivittäin"
 
-#: mod/profperm.php:111
-msgid "Profile Visibility Editor"
-msgstr "Profiilin näkyvyyden muokkaaminen"
+#: src/Content/ContactSelector.php:59
+msgid "Weekly"
+msgstr "Viikottain"
 
-#: mod/profperm.php:115 mod/group.php:265
-msgid "Click on a contact to add or remove."
-msgstr "Valitse kontakti, jota haluat poistaa tai lisätä."
+#: src/Content/ContactSelector.php:60
+msgid "Monthly"
+msgstr "Kuukausittain"
 
-#: mod/profperm.php:124
-msgid "Visible To"
-msgstr "Näkyvyys"
+#: src/Content/ContactSelector.php:79 mod/dfrn_request.php:656
+msgid "Friendica"
+msgstr "Friendica"
 
-#: mod/profperm.php:140
-msgid "All Contacts (with secure profile access)"
-msgstr ""
+#: src/Content/ContactSelector.php:80
+msgid "OStatus"
+msgstr "OStatus"
 
-#: mod/regmod.php:68
-msgid "Account approved."
-msgstr "Tili hyväksytty."
+#: src/Content/ContactSelector.php:81
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: mod/regmod.php:93
-#, php-format
-msgid "Registration revoked for %s"
-msgstr ""
+#: src/Content/ContactSelector.php:82 mod/admin.php:1796 mod/admin.php:1807
+#: mod/admin.php:1820 mod/admin.php:1838
+msgid "Email"
+msgstr "Sähköposti"
 
-#: mod/regmod.php:102
-msgid "Please login."
-msgstr "Ole hyvä ja kirjaudu."
+#: src/Content/ContactSelector.php:83 mod/settings.php:805
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: mod/search.php:37 mod/network.php:194
-msgid "Remove term"
-msgstr "Poista kohde"
+#: src/Content/ContactSelector.php:84
+msgid "Facebook"
+msgstr "Facebook"
 
-#: mod/search.php:46 mod/network.php:201 src/Content/Feature.php:100
-msgid "Saved Searches"
-msgstr "Tallennetut haut"
+#: src/Content/ContactSelector.php:85
+msgid "Zot!"
+msgstr "Zot!"
 
-#: mod/search.php:105
-msgid "Only logged in users are permitted to perform a search."
-msgstr ""
+#: src/Content/ContactSelector.php:86
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: mod/search.php:129
-msgid "Too Many Requests"
-msgstr "Liian monta pyyntöä"
+#: src/Content/ContactSelector.php:87
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: mod/search.php:130
-msgid "Only one search per minute is permitted for not logged in users."
-msgstr ""
+#: src/Content/ContactSelector.php:88
+msgid "MySpace"
+msgstr "MySpace"
 
-#: mod/search.php:228 mod/community.php:136
-msgid "No results."
-msgstr "Ei tuloksia."
+#: src/Content/ContactSelector.php:89
+msgid "Google+"
+msgstr "Google+"
 
-#: mod/search.php:234
-#, php-format
-msgid "Items tagged with: %s"
-msgstr "Kohteet joilla tunnisteet: %s"
+#: src/Content/ContactSelector.php:90
+msgid "pump.io"
+msgstr "pump.io"
 
-#: mod/search.php:236 mod/contacts.php:819
-#, php-format
-msgid "Results for: %s"
-msgstr "Tulokset haulla: %s"
+#: src/Content/ContactSelector.php:91
+msgid "Twitter"
+msgstr "Twitter"
 
-#: mod/subthread.php:113
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
+#: src/Content/ContactSelector.php:92
+msgid "Diaspora Connector"
+msgstr "Diaspora -liitin"
 
-#: mod/tagrm.php:47
-msgid "Tag removed"
-msgstr "Tägi poistettiin"
+#: src/Content/ContactSelector.php:93
+msgid "GNU Social Connector"
+msgstr "GNU social -liitin"
 
-#: mod/tagrm.php:85
-msgid "Remove Item Tag"
-msgstr "Poista tägi"
+#: src/Content/ContactSelector.php:94
+msgid "pnut"
+msgstr "pnut"
 
-#: mod/tagrm.php:87
-msgid "Select a tag to remove: "
-msgstr "Valitse tägi poistamista varten:"
+#: src/Content/ContactSelector.php:95
+msgid "App.net"
+msgstr "App.net"
 
-#: mod/tagrm.php:98 mod/delegate.php:177
-msgid "Remove"
-msgstr "Poista"
+#: src/Content/ContactSelector.php:125
+msgid "Male"
+msgstr "Mies"
 
-#: mod/uexport.php:44
-msgid "Export account"
-msgstr "Vie tili"
+#: src/Content/ContactSelector.php:125
+msgid "Female"
+msgstr "Nainen"
 
-#: mod/uexport.php:44
-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 "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."
+#: src/Content/ContactSelector.php:125
+msgid "Currently Male"
+msgstr "Tällä hetkellä mies"
 
-#: mod/uexport.php:45
-msgid "Export all"
-msgstr "Vie kaikki"
+#: src/Content/ContactSelector.php:125
+msgid "Currently Female"
+msgstr "Tällä hetkellä nainen"
 
-#: mod/uexport.php:45
-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 "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Male"
+msgstr "Enimmäkseen mies"
 
-#: mod/uexport.php:52 mod/settings.php:107
-msgid "Export personal data"
-msgstr "Vie henkilökohtaiset tiedot"
+#: src/Content/ContactSelector.php:125
+msgid "Mostly Female"
+msgstr "Enimmäkseen nainen"
 
-#: mod/viewcontacts.php:87
-msgid "No contacts."
-msgstr "Ei kontakteja."
+#: src/Content/ContactSelector.php:125
+msgid "Transgender"
+msgstr "Transsukupuolinen"
 
-#: mod/viewsrc.php:12
-msgid "Access denied."
-msgstr "Käyttö estetty."
+#: src/Content/ContactSelector.php:125
+msgid "Intersex"
+msgstr "Intersukupuolinen"
 
-#: mod/wall_upload.php:186 mod/photos.php:763 mod/photos.php:766
-#: mod/photos.php:795 mod/profile_photo.php:153
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Kuva ylittää kokorajoituksen %s"
+#: src/Content/ContactSelector.php:125
+msgid "Transsexual"
+msgstr "Transsukupuolinen"
 
-#: mod/wall_upload.php:200 mod/photos.php:818 mod/profile_photo.php:162
-msgid "Unable to process image."
-msgstr "Kuvan käsitteleminen epäonnistui."
+#: src/Content/ContactSelector.php:125
+msgid "Hermaphrodite"
+msgstr "Hermafrodiitti"
 
-#: mod/wall_upload.php:231 mod/item.php:471 src/Object/Image.php:953
-#: src/Object/Image.php:969 src/Object/Image.php:977 src/Object/Image.php:1002
-msgid "Wall Photos"
-msgstr "Seinäkuvat"
+#: src/Content/ContactSelector.php:125
+msgid "Neuter"
+msgstr "Neutri"
 
-#: mod/wall_upload.php:239 mod/photos.php:847 mod/profile_photo.php:307
-msgid "Image upload failed."
-msgstr "Kuvan lähettäminen epäonnistui."
+#: src/Content/ContactSelector.php:125
+msgid "Non-specific"
+msgstr "Ei-binäärinen"
 
-#: mod/wallmessage.php:49 mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."
+#: src/Content/ContactSelector.php:125
+msgid "Other"
+msgstr "Toinen"
 
-#: mod/wallmessage.php:57 mod/message.php:73
-msgid "No recipient selected."
-msgstr "Vastaanottaja puuttuu."
+#: src/Content/ContactSelector.php:147
+msgid "Males"
+msgstr "Miehet"
 
-#: mod/wallmessage.php:60
-msgid "Unable to check your home location."
-msgstr "Kotisijaintisi ei voitu tarkistaa."
+#: src/Content/ContactSelector.php:147
+msgid "Females"
+msgstr "Naiset"
 
-#: mod/wallmessage.php:63 mod/message.php:80
-msgid "Message could not be sent."
-msgstr "Viestiä ei voitu lähettää."
+#: src/Content/ContactSelector.php:147
+msgid "Gay"
+msgstr "Homo"
 
-#: mod/wallmessage.php:66 mod/message.php:83
-msgid "Message collection failure."
-msgstr "Viestin noutaminen epäonnistui."
+#: src/Content/ContactSelector.php:147
+msgid "Lesbian"
+msgstr "Lesbo"
 
-#: mod/wallmessage.php:69 mod/message.php:86
-msgid "Message sent."
-msgstr "Viesti lähetetty."
+#: src/Content/ContactSelector.php:147
+msgid "No Preference"
+msgstr ""
 
-#: mod/wallmessage.php:86 mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Vastaanottaja puuttuu."
+#: src/Content/ContactSelector.php:147
+msgid "Bisexual"
+msgstr "Biseksuaali"
 
-#: mod/wallmessage.php:132 mod/message.php:250
-msgid "Send Private Message"
-msgstr "Lähetä yksityisviesti"
+#: src/Content/ContactSelector.php:147
+msgid "Autosexual"
+msgstr ""
 
-#: mod/wallmessage.php:133
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+#: src/Content/ContactSelector.php:147
+msgid "Abstinent"
+msgstr "Selibaatissa elävä"
+
+#: src/Content/ContactSelector.php:147
+msgid "Virgin"
+msgstr "Neitsyt"
+
+#: src/Content/ContactSelector.php:147
+msgid "Deviant"
 msgstr ""
 
-#: mod/wallmessage.php:134 mod/message.php:251 mod/message.php:421
-msgid "To:"
-msgstr "Vastaanottaja:"
+#: src/Content/ContactSelector.php:147
+msgid "Fetish"
+msgstr ""
 
-#: mod/wallmessage.php:135 mod/message.php:255 mod/message.php:423
-msgid "Subject:"
-msgstr "Aihe:"
+#: src/Content/ContactSelector.php:147
+msgid "Oodles"
+msgstr ""
 
-#: mod/wallmessage.php:141 mod/message.php:259 mod/message.php:426
-#: mod/invite.php:149
-msgid "Your message:"
-msgstr "Viestisi:"
+#: src/Content/ContactSelector.php:147
+msgid "Nonsexual"
+msgstr "Aseksuaali"
 
-#: mod/bookmarklet.php:23 src/Content/Nav.php:114 src/Module/Login.php:312
-msgid "Login"
-msgstr "Kirjaudu sisään"
+#: src/Content/ContactSelector.php:169
+msgid "Single"
+msgstr "Sinkku"
 
-#: mod/bookmarklet.php:51
-msgid "The post was created"
-msgstr "Julkaisu luotu"
+#: src/Content/ContactSelector.php:169
+msgid "Lonely"
+msgstr "Yksinäinen"
 
-#: mod/community.php:46
-msgid "Community option not available."
-msgstr "Yhteisö vaihtoehto ei saatavilla."
+#: src/Content/ContactSelector.php:169
+msgid "Available"
+msgstr ""
 
-#: mod/community.php:63
-msgid "Not available."
-msgstr "Ei saatavilla."
+#: src/Content/ContactSelector.php:169
+msgid "Unavailable"
+msgstr ""
 
-#: mod/community.php:76
-msgid "Local Community"
-msgstr "Paikallinen yhteisö"
+#: src/Content/ContactSelector.php:169
+msgid "Has crush"
+msgstr "Ihastunut"
 
-#: mod/community.php:79
-msgid "Posts from local users on this server"
-msgstr "Tämän palvelimen julkaisut"
+#: src/Content/ContactSelector.php:169
+msgid "Infatuated"
+msgstr "Hullaantunut"
 
-#: mod/community.php:87
-msgid "Global Community"
-msgstr "Maailmanlaajuinen yhteisö"
+#: src/Content/ContactSelector.php:169
+msgid "Dating"
+msgstr "Seurustelee"
 
-#: mod/community.php:90
-msgid "Posts from users of the whole federated network"
-msgstr "Maailmanlaajuisen verkon julkaisut"
+#: src/Content/ContactSelector.php:169
+msgid "Unfaithful"
+msgstr ""
 
-#: mod/community.php:180
-msgid ""
-"This community stream shows all public posts received by this node. They may"
-" not reflect the opinions of this node’s users."
+#: src/Content/ContactSelector.php:169
+msgid "Sex Addict"
 msgstr ""
 
-#: mod/editpost.php:25 mod/editpost.php:35
-msgid "Item not found"
-msgstr "Kohdetta ei löytynyt"
+#: src/Content/ContactSelector.php:169
+msgid "Friends/Benefits"
+msgstr ""
 
-#: mod/editpost.php:42
-msgid "Edit post"
-msgstr "Muokkaa viestiä"
+#: src/Content/ContactSelector.php:169
+msgid "Casual"
+msgstr ""
 
-#: mod/editpost.php:134 src/Core/ACL.php:315
-msgid "CC: email addresses"
-msgstr "Kopio: sähköpostiosoitteet"
+#: src/Content/ContactSelector.php:169
+msgid "Engaged"
+msgstr "Kihloissa"
 
-#: mod/editpost.php:141 src/Core/ACL.php:316
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Esimerkki: bob@example.com, mary@example.com"
+#: src/Content/ContactSelector.php:169
+msgid "Married"
+msgstr "Naimisissa"
 
-#: mod/fsuggest.php:72
-msgid "Friend suggestion sent."
-msgstr "Ystäväehdotus lähetettiin."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily married"
+msgstr ""
 
-#: mod/fsuggest.php:101
-msgid "Suggest Friends"
-msgstr "Ehdota ystäviä"
+#: src/Content/ContactSelector.php:169
+msgid "Partners"
+msgstr "Kumppanit"
 
-#: mod/fsuggest.php:103
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Ehdota ystävää ystävälle %s"
+#: src/Content/ContactSelector.php:169
+msgid "Cohabiting"
+msgstr "Avoliitossa"
 
-#: mod/group.php:36
-msgid "Group created."
-msgstr "Ryhmä luotu."
+#: src/Content/ContactSelector.php:169
+msgid "Common law"
+msgstr "Avoliitossa"
 
-#: mod/group.php:42
-msgid "Could not create group."
-msgstr "Ryhmää ei voitu luoda."
+#: src/Content/ContactSelector.php:169
+msgid "Happy"
+msgstr "Iloinen"
 
-#: mod/group.php:56 mod/group.php:157
-msgid "Group not found."
-msgstr "Ryhmää ei löytynyt."
+#: src/Content/ContactSelector.php:169
+msgid "Not looking"
+msgstr "Ei etsi"
 
-#: mod/group.php:70
-msgid "Group name changed."
-msgstr "Ryhmän nimi muutettu."
+#: src/Content/ContactSelector.php:169
+msgid "Swinger"
+msgstr ""
 
-#: mod/group.php:97
-msgid "Save Group"
-msgstr "Tallenna ryhmä"
+#: src/Content/ContactSelector.php:169
+msgid "Betrayed"
+msgstr "Petetty"
 
-#: mod/group.php:102
-msgid "Create a group of contacts/friends."
-msgstr "Luo kontakti/kaveriryhmä"
+#: src/Content/ContactSelector.php:169
+msgid "Separated"
+msgstr ""
 
-#: mod/group.php:103 mod/group.php:199 src/Model/Group.php:421
-msgid "Group Name: "
-msgstr "Ryhmän nimi:"
+#: src/Content/ContactSelector.php:169
+msgid "Unstable"
+msgstr "Epävakaa"
 
-#: mod/group.php:127
-msgid "Group removed."
-msgstr "Ryhmä poistettu."
+#: src/Content/ContactSelector.php:169
+msgid "Divorced"
+msgstr "Eronnut"
 
-#: mod/group.php:129
-msgid "Unable to remove group."
-msgstr "Ryhmää ei voida poistaa."
+#: src/Content/ContactSelector.php:169
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: mod/group.php:192
-msgid "Delete Group"
-msgstr "Poista ryhmä"
+#: src/Content/ContactSelector.php:169
+msgid "Widowed"
+msgstr "Leski"
 
-#: mod/group.php:198
-msgid "Group Editor"
-msgstr "Ryhmien muokkausta"
+#: src/Content/ContactSelector.php:169
+msgid "Uncertain"
+msgstr "Epävarma"
 
-#: mod/group.php:203
-msgid "Edit Group Name"
-msgstr "Muokkaa ryhmän nimeä"
+#: src/Content/ContactSelector.php:169
+msgid "It's complicated"
+msgstr "Se on monimutkaista"
 
-#: mod/group.php:213
-msgid "Members"
-msgstr "Jäsenet"
+#: src/Content/ContactSelector.php:169
+msgid "Don't care"
+msgstr "Ei ole väliä"
 
-#: mod/group.php:215 mod/contacts.php:719
-msgid "All Contacts"
-msgstr "Kaikki yhteystiedot"
+#: src/Content/ContactSelector.php:169
+msgid "Ask me"
+msgstr "Kysy minulta"
 
-#: mod/group.php:216 mod/network.php:639
-msgid "Group is empty"
-msgstr "Ryhmä on tyhjä"
+#: src/Content/OEmbed.php:253
+msgid "Embedding disabled"
+msgstr "Upottaminen poistettu käytöstä"
 
-#: mod/group.php:229
-msgid "Remove Contact"
-msgstr "Poista kontakti"
+#: src/Content/OEmbed.php:373
+msgid "Embedded content"
+msgstr "Upotettu sisältö"
 
-#: mod/group.php:253
-msgid "Add Contact"
-msgstr "Lisää kontakti"
+#: src/Content/ForumManager.php:127 view/theme/vier/theme.php:256
+msgid "External link to forum"
+msgstr "Ulkoinen linkki foorumiin"
 
-#: mod/message.php:30 src/Content/Nav.php:198
-msgid "New Message"
-msgstr "Uusi viesti"
+#: src/Content/Nav.php:53
+msgid "Nothing new here"
+msgstr ""
 
-#: mod/message.php:77
-msgid "Unable to locate contact information."
-msgstr "Kontaktin tiedot ei löydy."
+#: src/Content/Nav.php:57
+msgid "Clear notifications"
+msgstr "Tyhjennä ilmoitukset"
 
-#: mod/message.php:112 view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Messages"
-msgstr "Viestit"
+#: src/Content/Nav.php:97 src/Module/Login.php:311
+#: view/theme/frio/theme.php:256
+msgid "Logout"
+msgstr "Kirjaudu ulos"
 
-#: mod/message.php:136
-msgid "Do you really want to delete this message?"
-msgstr "Haluatko varmasti poistaa viestin?"
+#: src/Content/Nav.php:97 view/theme/frio/theme.php:256
+msgid "End this session"
+msgstr "Lopeta istunto"
 
-#: mod/message.php:156
-msgid "Message deleted."
-msgstr "Viesti poistettu."
+#: src/Content/Nav.php:100 src/Content/Nav.php:181
+#: view/theme/frio/theme.php:259
+msgid "Your posts and conversations"
+msgstr "Omat julkaisut ja keskustelut"
 
-#: mod/message.php:185
-msgid "Conversation removed."
-msgstr "Keskustelu poistettu."
+#: src/Content/Nav.php:101 view/theme/frio/theme.php:260
+msgid "Your profile page"
+msgstr "Oma profiilisivu"
 
-#: mod/message.php:291
-msgid "No messages."
-msgstr "Ei viestejä."
+#: src/Content/Nav.php:102 view/theme/frio/theme.php:261
+msgid "Your photos"
+msgstr "Omat kuvat"
 
-#: mod/message.php:330
-msgid "Message not available."
-msgstr "Viesti ei saatavilla."
+#: src/Content/Nav.php:103 view/theme/frio/theme.php:262
+msgid "Your videos"
+msgstr "Omat videot"
 
-#: mod/message.php:397
-msgid "Delete message"
-msgstr "Poista viesti"
+#: src/Content/Nav.php:104 view/theme/frio/theme.php:263
+msgid "Your events"
+msgstr "Omat tapahtumat"
 
-#: mod/message.php:399 mod/message.php:500
-msgid "D, d M Y - g:i A"
+#: src/Content/Nav.php:105
+msgid "Personal notes"
 msgstr ""
 
-#: mod/message.php:414 mod/message.php:497
-msgid "Delete conversation"
-msgstr "Poista keskustelu"
-
-#: mod/message.php:416
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: src/Content/Nav.php:105
+msgid "Your personal notes"
 msgstr ""
 
-#: mod/message.php:420
-msgid "Send Reply"
-msgstr "Lähetä vastaus"
-
-#: mod/message.php:471
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Tuntematon lähettäjä - %s"
+#: src/Content/Nav.php:114 src/Module/Login.php:312 mod/bookmarklet.php:23
+msgid "Login"
+msgstr "Kirjaudu sisään"
 
-#: mod/message.php:473
-#, php-format
-msgid "You and %s"
-msgstr "Sinä ja %s"
+#: src/Content/Nav.php:114
+msgid "Sign in"
+msgstr "Kirjaudu sisään"
 
-#: mod/message.php:475
-#, php-format
-msgid "%s and You"
-msgstr "%s ja sinä"
+#: src/Content/Nav.php:124 src/Content/Nav.php:181
+#: src/Core/NotificationsManager.php:192
+msgid "Home"
+msgstr "Koti"
 
-#: mod/message.php:503
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d viesti"
-msgstr[1] "%d viestiä"
+#: src/Content/Nav.php:124
+msgid "Home Page"
+msgstr "Kotisivu"
 
-#: mod/notes.php:52 src/Model/Profile.php:948
-msgid "Personal Notes"
-msgstr "Henkilökohtaiset tiedot"
+#: src/Content/Nav.php:128 src/Module/Login.php:283 mod/register.php:279
+msgid "Register"
+msgstr "Rekisteröidy"
 
-#: mod/photos.php:108 src/Model/Profile.php:909
-msgid "Photo Albums"
-msgstr "Valokuva-albumit"
+#: src/Content/Nav.php:128
+msgid "Create an account"
+msgstr "Luo tili"
 
-#: mod/photos.php:109 mod/photos.php:1713
-msgid "Recent Photos"
-msgstr "Viimeaikaisia kuvia"
+#: src/Content/Nav.php:134 mod/help.php:54 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Ohje"
 
-#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
-msgid "Upload New Photos"
-msgstr "Lähetä uusia kuvia"
+#: src/Content/Nav.php:134
+msgid "Help and documentation"
+msgstr "Ohjeet ja dokmentointi"
 
-#: mod/photos.php:126 mod/settings.php:50
-msgid "everybody"
-msgstr "kaikki"
+#: src/Content/Nav.php:138
+msgid "Apps"
+msgstr "Sovellukset"
 
-#: mod/photos.php:184
-msgid "Contact information unavailable"
-msgstr "Kontaktin tietoja ei saatavilla"
+#: src/Content/Nav.php:138
+msgid "Addon applications, utilities, games"
+msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
 
-#: mod/photos.php:204
-msgid "Album not found."
-msgstr "Albumia ei ole."
+#: src/Content/Nav.php:142
+msgid "Search site content"
+msgstr "Sivustohaku"
 
-#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
-msgid "Delete Album"
-msgstr "Poista albumi"
+#: src/Content/Nav.php:165
+msgid "Community"
+msgstr "Yhteisö"
 
-#: mod/photos.php:243
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"
+#: src/Content/Nav.php:165
+msgid "Conversations on this and other servers"
+msgstr ""
 
-#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
-msgid "Delete Photo"
-msgstr "Poista valokuva"
+#: src/Content/Nav.php:172
+msgid "Directory"
+msgstr "Luettelo"
 
-#: mod/photos.php:319
-msgid "Do you really want to delete this photo?"
-msgstr "Haluatko varmasti poistaa kuvan?"
+#: src/Content/Nav.php:172
+msgid "People directory"
+msgstr ""
 
-#: mod/photos.php:667
-msgid "a photo"
-msgstr "valokuva"
+#: src/Content/Nav.php:174 mod/admin.php:179
+msgid "Information"
+msgstr "Tietoja"
 
-#: mod/photos.php:667
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta"
-
-#: mod/photos.php:769
-msgid "Image upload didn't complete, please try again"
-msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
+#: src/Content/Nav.php:174
+msgid "Information about this friendica instance"
+msgstr "Lisätietoja tästä Friendica -instanssista"
 
-#: mod/photos.php:772
-msgid "Image file is missing"
-msgstr "Kuvatiedosto puuttuu"
+#: src/Content/Nav.php:178 src/Core/NotificationsManager.php:178
+#: mod/admin.php:758 view/theme/frio/theme.php:266
+msgid "Network"
+msgstr "Verkko"
 
-#: mod/photos.php:777
-msgid ""
-"Server can't accept new file upload at this time, please contact your "
-"administrator"
-msgstr ""
+#: src/Content/Nav.php:178 view/theme/frio/theme.php:266
+msgid "Conversations from your friends"
+msgstr "Kavereiden keskustelut"
 
-#: mod/photos.php:803
-msgid "Image file is empty."
-msgstr "Kuvatiedosto on tyhjä."
+#: src/Content/Nav.php:179
+msgid "Network Reset"
+msgstr "Verkon nollaus"
 
-#: mod/photos.php:940
-msgid "No photos selected"
-msgstr "Ei valittuja kuvia"
+#: src/Content/Nav.php:179
+msgid "Load Network page with no filters"
+msgstr ""
 
-#: mod/photos.php:1036 mod/videos.php:309
-msgid "Access to this item is restricted."
-msgstr "Pääsy kohteeseen on rajoitettu."
+#: src/Content/Nav.php:185 src/Core/NotificationsManager.php:199
+msgid "Introductions"
+msgstr "Esittelyt"
 
-#: mod/photos.php:1090
-msgid "Upload Photos"
-msgstr "Lähetä kuvia"
+#: src/Content/Nav.php:185
+msgid "Friend Requests"
+msgstr "Kaveripyynnöt"
 
-#: mod/photos.php:1094 mod/photos.php:1156
-msgid "New album name: "
-msgstr "Albumin uusi nimi: "
+#: src/Content/Nav.php:186 mod/notifications.php:98
+msgid "Notifications"
+msgstr "Huomautukset"
 
-#: mod/photos.php:1095
-msgid "or existing album name: "
-msgstr "tai olemassaolevan albumin nimi: "
+#: src/Content/Nav.php:187
+msgid "See all notifications"
+msgstr "Näytä kaikki ilmoitukset"
 
-#: mod/photos.php:1096
-msgid "Do not show a status post for this upload"
-msgstr "Älä näytä tilaviestiä tälle lähetykselle"
+#: src/Content/Nav.php:188 mod/settings.php:870
+msgid "Mark as seen"
+msgstr "Merkitse luetuksi"
 
-#: mod/photos.php:1098 mod/photos.php:1441 mod/events.php:533
-#: src/Core/ACL.php:318
-msgid "Permissions"
-msgstr "Käyttöoikeudet"
+#: src/Content/Nav.php:188
+msgid "Mark all system notifications seen"
+msgstr ""
 
-#: mod/photos.php:1106 mod/photos.php:1449 mod/settings.php:1229
-msgid "Show to Groups"
-msgstr "Näytä ryhmille"
+#: src/Content/Nav.php:191 mod/message.php:112 view/theme/frio/theme.php:268
+msgid "Messages"
+msgstr "Viestit"
 
-#: mod/photos.php:1107 mod/photos.php:1450 mod/settings.php:1230
-msgid "Show to Contacts"
-msgstr "Näytä kontakteille"
+#: src/Content/Nav.php:191 view/theme/frio/theme.php:268
+msgid "Private mail"
+msgstr "Yksityinen posti"
 
-#: mod/photos.php:1167
-msgid "Edit Album"
-msgstr "Muokkaa albumia"
+#: src/Content/Nav.php:192
+msgid "Inbox"
+msgstr "Saapuneet"
 
-#: mod/photos.php:1172
-msgid "Show Newest First"
-msgstr "Näytä uusin ensin"
+#: src/Content/Nav.php:193
+msgid "Outbox"
+msgstr "Lähtevät"
 
-#: mod/photos.php:1174
-msgid "Show Oldest First"
-msgstr "Näytä vanhin ensin"
+#: src/Content/Nav.php:194 mod/message.php:30
+msgid "New Message"
+msgstr "Uusi viesti"
 
-#: mod/photos.php:1195 mod/photos.php:1698
-msgid "View Photo"
-msgstr "Näytä kuva"
+#: src/Content/Nav.php:197
+msgid "Manage"
+msgstr "Hallitse"
 
-#: mod/photos.php:1236
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."
+#: src/Content/Nav.php:197
+msgid "Manage other pages"
+msgstr "Hallitse muita sivuja"
 
-#: mod/photos.php:1238
-msgid "Photo not available"
-msgstr "Kuva ei ole saatavilla"
+#: src/Content/Nav.php:200 mod/settings.php:93
+msgid "Delegations"
+msgstr ""
 
-#: mod/photos.php:1301
-msgid "View photo"
-msgstr "Näytä kuva"
+#: src/Content/Nav.php:200 mod/delegate.php:169
+msgid "Delegate Page Management"
+msgstr ""
 
-#: mod/photos.php:1301
-msgid "Edit photo"
-msgstr "Muokkaa kuvaa"
+#: src/Content/Nav.php:202 mod/settings.php:123 mod/admin.php:1920
+#: mod/admin.php:2189 mod/newmember.php:19 view/theme/frio/theme.php:269
+msgid "Settings"
+msgstr "Asetukset"
 
-#: mod/photos.php:1302
-msgid "Use as profile photo"
-msgstr "Käytä profiilikuvana"
+#: src/Content/Nav.php:202 view/theme/frio/theme.php:269
+msgid "Account settings"
+msgstr "Tiliasetukset"
 
-#: mod/photos.php:1308 src/Object/Post.php:149
-msgid "Private Message"
-msgstr "Yksityisviesti"
+#: src/Content/Nav.php:205
+msgid "Manage/Edit Profiles"
+msgstr "Hallitse/muokka profiilit"
 
-#: mod/photos.php:1327
-msgid "View Full Size"
-msgstr "Näytä täysikokoisena"
+#: src/Content/Nav.php:208 view/theme/frio/theme.php:270
+msgid "Manage/edit friends and contacts"
+msgstr "Hallitse/muokkaa kaverit ja kontaktit"
 
-#: mod/photos.php:1414
-msgid "Tags: "
-msgstr "Merkinnät:"
+#: src/Content/Nav.php:213 mod/admin.php:222
+msgid "Admin"
+msgstr "Ylläpitäjä"
 
-#: mod/photos.php:1417
-msgid "[Remove any tag]"
-msgstr "[Poista mikä tahansa merkintä]"
+#: src/Content/Nav.php:213
+msgid "Site setup and configuration"
+msgstr "Sivuston asennus ja asetukset"
 
-#: mod/photos.php:1432
-msgid "New album name"
-msgstr "Uusi nimi albumille"
+#: src/Content/Nav.php:216
+msgid "Navigation"
+msgstr "Navigointi"
 
-#: mod/photos.php:1433
-msgid "Caption"
-msgstr "Kuvateksti"
+#: src/Content/Nav.php:216
+msgid "Site map"
+msgstr "Sivustokartta"
 
-#: mod/photos.php:1434
-msgid "Add a Tag"
-msgstr "Lisää merkintä"
+#: src/Worker/Delivery.php:390
+msgid "(no subject)"
+msgstr "(ei aihetta)"
 
-#: mod/photos.php:1434
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: src/App.php:511
+msgid "Delete this item?"
+msgstr "Poista tämä kohde?"
 
-#: mod/photos.php:1435
-msgid "Do not rotate"
-msgstr "Älä kierrä"
+#: src/App.php:513
+msgid "show fewer"
+msgstr "näytä vähemmän"
 
-#: mod/photos.php:1436
-msgid "Rotate CW (right)"
-msgstr "Käännä oikealle"
+#: src/Module/Login.php:86 src/Module/Login.php:134 mod/openid.php:116
+msgid "Login failed."
+msgstr "Kirjautuminen epäonnistui"
 
-#: mod/photos.php:1437
-msgid "Rotate CCW (left)"
-msgstr "Käännä vasemmalle"
+#: src/Module/Login.php:282
+msgid "Create a New Account"
+msgstr "Luo uusi käyttäjätili"
 
-#: mod/photos.php:1471 src/Object/Post.php:296
-msgid "I like this (toggle)"
-msgstr "Tykkään tästä (vaihda)"
+#: src/Module/Login.php:314 mod/lostpass.php:119
+msgid "Nickname or Email: "
+msgstr "Lempinimi tai sähköposti:"
 
-#: mod/photos.php:1472 src/Object/Post.php:297
-msgid "I don't like this (toggle)"
-msgstr "En tykkää tästä (vaihda)"
+#: src/Module/Login.php:315
+msgid "Password: "
+msgstr "Salasana:"
 
-#: mod/photos.php:1488 mod/photos.php:1527 mod/photos.php:1600
-#: mod/contacts.php:953 src/Object/Post.php:793
-msgid "This is you"
-msgstr "Tämä olet sinä"
+#: src/Module/Login.php:316
+msgid "Remember me"
+msgstr "Muista minut"
 
-#: mod/photos.php:1490 mod/photos.php:1529 mod/photos.php:1602
-#: src/Object/Post.php:399 src/Object/Post.php:795
-msgid "Comment"
-msgstr "Kommentti"
+#: src/Module/Login.php:319
+msgid "Or login using OpenID: "
+msgstr "Kirjaudu sisään OpenID -tunnuksella:"
 
-#: mod/photos.php:1634
-msgid "Map"
-msgstr "Kartta"
+#: src/Module/Login.php:325
+msgid "Forgot your password?"
+msgstr "Unohditko salasanasi?"
 
-#: mod/photos.php:1704 mod/videos.php:387
-msgid "View Album"
-msgstr "Näytä albumi"
+#: src/Module/Login.php:326 mod/lostpass.php:136
+msgid "Password Reset"
+msgstr "Salasanan nollaus"
 
-#: mod/profile.php:37 src/Model/Profile.php:118
-msgid "Requested profile is not available."
-msgstr "Pyydettyä profiilia ei saatavilla."
+#: src/Module/Login.php:328
+msgid "Website Terms of Service"
+msgstr "Verkkosivun käyttöehdot"
 
-#: mod/profile.php:78 src/Protocol/OStatus.php:1252
-#, php-format
-msgid "%s's posts"
-msgstr "%s: julkaisut"
+#: src/Module/Login.php:329
+msgid "terms of service"
+msgstr "käyttöehdot"
 
-#: mod/profile.php:79 src/Protocol/OStatus.php:1253
-#, php-format
-msgid "%s's comments"
-msgstr "%s: kommentit"
+#: src/Module/Login.php:331
+msgid "Website Privacy Policy"
+msgstr "Sivuston tietosuojakäytäntö"
 
-#: mod/profile.php:80 src/Protocol/OStatus.php:1251
-#, php-format
-msgid "%s's timeline"
-msgstr "%s: aikajana"
+#: src/Module/Login.php:332
+msgid "privacy policy"
+msgstr "tietosuojakäytäntö"
 
-#: mod/profile.php:173 mod/cal.php:142 mod/display.php:313
-msgid "Access to this profile has been restricted."
-msgstr "Pääsy tähän profiiliin on rajoitettu"
+#: src/Module/Tos.php:48 mod/admin.php:188 mod/admin.php:302
+#: mod/register.php:288
+msgid "Terms of Service"
+msgstr "Käyttöehdot"
 
-#: mod/profile.php:194
-msgid "Tips for New Members"
-msgstr "Vinkkejä uusille käyttäjille"
+#: src/Module/Tos.php:51
+msgid "Privacy Statement"
+msgstr "Tietosuojalausunto"
 
-#: mod/videos.php:139
-msgid "Do you really want to delete this video?"
-msgstr "Haluatko varmasti poistaa tämän videon?"
+#: src/Module/Tos.php:52
+msgid ""
+"At the time of registration, and for providing communications between the "
+"user account and their contacts, the user has to provide a display name (pen"
+" name), an username (nickname) and a working email address. The names will "
+"be accessible on the profile page of the account by any visitor of the page,"
+" even if other profile details are not displayed. The email address will "
+"only be used to send the user notifications about interactions, but wont be "
+"visibly displayed. The listing of an account in the node's user directory or"
+" the global user directory is optional and can be controlled in the user "
+"settings, it is not necessary for communication."
+msgstr ""
 
-#: mod/videos.php:144
-msgid "Delete Video"
-msgstr "Poista video"
+#: src/Module/Tos.php:53
+msgid ""
+"This data is required for communication and is passed on to the nodes of the"
+" communication partners. Users can enter additional private data that may be"
+" transmitted to the communication partners accounts."
+msgstr ""
 
-#: mod/videos.php:207
-msgid "No videos selected"
-msgstr "Ei videoita valittuna"
+#: src/Module/Tos.php:54
+#, php-format
+msgid ""
+"At any point in time a logged in user can export their account data from the"
+" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
+"to delete their account they can do so at <a "
+"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
+"be permanent."
+msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Viimeisimmät videot"
+#: src/Module/Logout.php:28
+msgid "Logged out."
+msgstr "Kirjautunut ulos."
 
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Lataa uusia videoita"
+#: src/Object/Image.php:953 src/Object/Image.php:969 src/Object/Image.php:977
+#: src/Object/Image.php:1002 mod/wall_upload.php:231 mod/item.php:471
+msgid "Wall Photos"
+msgstr "Seinäkuvat"
 
-#: mod/cal.php:274 mod/events.php:391 view/theme/frio/theme.php:263
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:104
-#: src/Content/Nav.php:169 src/Model/Profile.php:926 src/Model/Profile.php:937
-msgid "Events"
-msgstr "Tapahtumat"
+#: src/Object/Post.php:128
+msgid "This entry was edited"
+msgstr "Tämä kohde oli muokattu"
 
-#: mod/cal.php:275 mod/events.php:392
-msgid "View"
-msgstr "Katso"
+#: src/Object/Post.php:149 mod/photos.php:1308
+msgid "Private Message"
+msgstr "Yksityisviesti"
 
-#: mod/cal.php:276 mod/events.php:394
-msgid "Previous"
-msgstr "Edellinen"
+#: src/Object/Post.php:155 src/Object/Post.php:157 mod/settings.php:737
+msgid "Edit"
+msgstr "Muokkaa"
 
-#: mod/cal.php:277 mod/events.php:395 mod/install.php:209
-msgid "Next"
-msgstr "Seuraava"
+#: src/Object/Post.php:182
+msgid "save to folder"
+msgstr "tallenna kansioon"
 
-#: mod/cal.php:280 mod/events.php:400 src/Model/Event.php:412
-msgid "today"
-msgstr "tänään"
+#: src/Object/Post.php:235
+msgid "I will attend"
+msgstr "Osallistun"
 
-#: mod/cal.php:281 mod/events.php:401 src/Util/Temporal.php:304
-#: src/Model/Event.php:413
-msgid "month"
-msgstr "kuukausi"
+#: src/Object/Post.php:235
+msgid "I will not attend"
+msgstr "En aio osallistua"
 
-#: mod/cal.php:282 mod/events.php:402 src/Util/Temporal.php:305
-#: src/Model/Event.php:414
-msgid "week"
-msgstr "viikko"
+#: src/Object/Post.php:235
+msgid "I might attend"
+msgstr "Ehkä osallistun"
 
-#: mod/cal.php:283 mod/events.php:403 src/Util/Temporal.php:306
-#: src/Model/Event.php:415
-msgid "day"
-msgstr "päivä"
+#: src/Object/Post.php:263
+msgid "add star"
+msgstr "lisää tähti"
 
-#: mod/cal.php:284 mod/events.php:404
-msgid "list"
-msgstr "luettelo"
+#: src/Object/Post.php:264
+msgid "remove star"
+msgstr "poista tähti"
 
-#: mod/cal.php:297 src/Core/Console/NewPassword.php:73 src/Model/User.php:214
-msgid "User not found"
-msgstr "Käyttäjää ei löydy"
+#: src/Object/Post.php:265
+msgid "toggle star status"
+msgstr "Tähtitila päälle/pois"
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Tätä kalenteriformaattia ei tueta"
+#: src/Object/Post.php:268
+msgid "starred"
+msgstr "tähtimerkitty"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Vientikelpoista dataa ei löytynyt"
+#: src/Object/Post.php:274
+msgid "ignore thread"
+msgstr "Sivuuta keskustelu"
 
-#: mod/cal.php:332
-msgid "calendar"
-msgstr "kalenteri"
+#: src/Object/Post.php:275
+msgid "unignore thread"
+msgstr "Seuraa keskustelua"
 
-#: mod/contacts.php:157
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d kontakti muokattu"
-msgstr[1] "%d kontakteja muokattu"
+#: src/Object/Post.php:276
+msgid "toggle ignore status"
+msgstr "Sivuuta/seuraa"
 
-#: mod/contacts.php:184 mod/contacts.php:400
-msgid "Could not access contact record."
-msgstr "Yhteystietoon ei päästä käsiksi."
+#: src/Object/Post.php:279 mod/ostatus_subscribe.php:83
+msgid "ignored"
+msgstr "ohitettu"
 
-#: mod/contacts.php:194
-msgid "Could not locate selected profile."
-msgstr "Valittua profiilia ei löydy."
+#: src/Object/Post.php:285
+msgid "add tag"
+msgstr "lisää tägi"
 
-#: mod/contacts.php:228
-msgid "Contact updated."
-msgstr "Yhteystietopäivitys onnistui."
+#: src/Object/Post.php:296 mod/photos.php:1471
+msgid "I like this (toggle)"
+msgstr "Tykkään tästä (vaihda)"
 
-#: mod/contacts.php:421
-msgid "Contact has been blocked"
-msgstr "Henkilö on estetty"
+#: src/Object/Post.php:296
+msgid "like"
+msgstr "tykkää"
 
-#: mod/contacts.php:421
-msgid "Contact has been unblocked"
-msgstr "Henkilö on jälleen sallittu"
+#: src/Object/Post.php:297 mod/photos.php:1472
+msgid "I don't like this (toggle)"
+msgstr "En tykkää tästä (vaihda)"
 
-#: mod/contacts.php:432
-msgid "Contact has been ignored"
-msgstr "Henkilöä ei enää huomioida"
+#: src/Object/Post.php:297
+msgid "dislike"
+msgstr "en tykkää"
 
-#: mod/contacts.php:432
-msgid "Contact has been unignored"
-msgstr "Henkilö on jälleen huomioituna."
+#: src/Object/Post.php:300
+msgid "Share this"
+msgstr "Jaa tämä"
 
-#: mod/contacts.php:443
-msgid "Contact has been archived"
-msgstr "Henkilö on arkistoitu."
+#: src/Object/Post.php:300
+msgid "share"
+msgstr "jaa"
 
-#: mod/contacts.php:443
-msgid "Contact has been unarchived"
-msgstr "Henkilö on otettu pois arkistosta."
+#: src/Object/Post.php:365
+msgid "to"
+msgstr ""
 
-#: mod/contacts.php:467
-msgid "Drop contact"
-msgstr "Poista kontakti"
+#: src/Object/Post.php:366
+msgid "via"
+msgstr "kautta"
 
-#: mod/contacts.php:470 mod/contacts.php:823
-msgid "Do you really want to delete this contact?"
-msgstr "Haluatko todella poistaa tämän yhteystiedon?"
+#: src/Object/Post.php:367
+msgid "Wall-to-Wall"
+msgstr ""
 
-#: mod/contacts.php:488
-msgid "Contact has been removed."
-msgstr "Yhteystieto on poistettu."
+#: src/Object/Post.php:368
+msgid "via Wall-To-Wall:"
+msgstr ""
 
-#: mod/contacts.php:519
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Olet kaveri %s kanssa."
+#: src/Object/Post.php:399 src/Object/Post.php:795 mod/photos.php:1490
+#: mod/photos.php:1529 mod/photos.php:1602
+msgid "Comment"
+msgstr "Kommentti"
 
-#: mod/contacts.php:523
+#: src/Object/Post.php:427
 #, php-format
-msgid "You are sharing with %s"
-msgstr "Olet jakanut jotakin %s:n kanssa"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d kommentti"
+msgstr[1] "%d kommentteja"
 
-#: mod/contacts.php:527
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s jakaa sinulle jotakin."
+#: src/Object/Post.php:793 mod/photos.php:1488 mod/photos.php:1527
+#: mod/photos.php:1600 mod/contacts.php:953
+msgid "This is you"
+msgstr "Tämä olet sinä"
 
-#: mod/contacts.php:547
-msgid "Private communications are not available for this contact."
-msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."
+#: src/Object/Post.php:796 mod/manage.php:184 mod/invite.php:155
+#: mod/profiles.php:672 mod/events.php:530 mod/fsuggest.php:114
+#: mod/photos.php:1080 mod/photos.php:1160 mod/photos.php:1445
+#: mod/photos.php:1491 mod/photos.php:1530 mod/photos.php:1603
+#: mod/message.php:265 mod/message.php:432 mod/localtime.php:56
+#: mod/crepair.php:148 mod/poke.php:199 mod/contacts.php:610
+#: mod/install.php:251 mod/install.php:290 view/theme/quattro/config.php:73
+#: view/theme/frio/config.php:113 view/theme/vier/config.php:119
+#: view/theme/duepuntozero/config.php:71
+msgid "Submit"
+msgstr "Lähetä"
 
-#: mod/contacts.php:549
-msgid "Never"
-msgstr "Ei koskaan"
+#: src/Object/Post.php:797
+msgid "Bold"
+msgstr "Lihavoitu"
 
-#: mod/contacts.php:552
-msgid "(Update was successful)"
-msgstr "(Päivitys onnistui)"
+#: src/Object/Post.php:798
+msgid "Italic"
+msgstr "Kursivoitu"
 
-#: mod/contacts.php:552
-msgid "(Update was not successful)"
-msgstr "(Päivitys epäonnistui)"
+#: src/Object/Post.php:799
+msgid "Underline"
+msgstr "Alleviivaus"
 
-#: mod/contacts.php:554 mod/contacts.php:992
-msgid "Suggest friends"
-msgstr "Ehdota ystäviä"
+#: src/Object/Post.php:800
+msgid "Quote"
+msgstr "Lainaus"
 
-#: mod/contacts.php:558
-#, php-format
-msgid "Network type: %s"
-msgstr "Verkkotyyppi: %s"
+#: src/Object/Post.php:801
+msgid "Code"
+msgstr "Koodi"
 
-#: mod/contacts.php:563
-msgid "Communications lost with this contact!"
-msgstr "Yhteys tähän henkilöön menetettiin!"
+#: src/Object/Post.php:802
+msgid "Image"
+msgstr "Kuva"
 
-#: mod/contacts.php:569
-msgid "Fetch further information for feeds"
-msgstr ""
+#: src/Object/Post.php:803
+msgid "Link"
+msgstr "Linkki"
 
-#: mod/contacts.php:571
-msgid ""
-"Fetch information like preview pictures, title and teaser from the feed "
-"item. You can activate this if the feed doesn't contain much text. Keywords "
-"are taken from the meta header in the feed item and are posted as hash tags."
+#: src/Object/Post.php:804
+msgid "Video"
+msgstr "Video"
+
+#: src/Database/DBStructure.php:32
+msgid "There are no tables on MyISAM."
 msgstr ""
 
-#: mod/contacts.php:572 mod/admin.php:1272 mod/admin.php:1435
-#: mod/admin.php:1445
-msgid "Disabled"
-msgstr "Pois käytöstä"
-
-#: mod/contacts.php:573
-msgid "Fetch information"
-msgstr "Nouda tiedot"
-
-#: mod/contacts.php:574
-msgid "Fetch keywords"
-msgstr "Nouda avainsanat"
-
-#: mod/contacts.php:575
-msgid "Fetch information and keywords"
-msgstr "Nouda tiedot ja avainsanat"
-
-#: mod/contacts.php:599 mod/unfollow.php:100
-msgid "Disconnect/Unfollow"
-msgstr "Katkaise / Lopeta seuraaminen"
-
-#: mod/contacts.php:608
-msgid "Contact"
-msgstr "Kontakti"
+#: src/Database/DBStructure.php:75
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen."
 
-#: mod/contacts.php:611
-msgid "Profile Visibility"
-msgstr "Profiilin näkyvyys"
+#: src/Database/DBStructure.php:80
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Virheviesti on\n[pre]%s[/pre]"
 
-#: mod/contacts.php:612
+#: src/Database/DBStructure.php:191
 #, php-format
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti."
+"\n"
+"Error %d occurred during database update:\n"
+"%s\n"
+msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
 
-#: mod/contacts.php:613
-msgid "Contact Information / Notes"
-msgstr "Yhteystiedot / Muistiinpanot"
+#: src/Database/DBStructure.php:194
+msgid "Errors encountered performing database changes: "
+msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
 
-#: mod/contacts.php:614
-msgid "Their personal note"
-msgstr ""
+#: src/Database/DBStructure.php:210
+msgid ": Database update"
+msgstr ": Tietokannan päivitys"
 
-#: mod/contacts.php:616
-msgid "Edit contact notes"
-msgstr "Muokkaa yhteystietojen muistiinpanoja"
+#: src/Database/DBStructure.php:460
+#, php-format
+msgid "%s: updating %s table."
+msgstr "%s: päivitetään %s-taulukkoa."
 
-#: mod/contacts.php:620
-msgid "Block/Unblock contact"
-msgstr "Estä/salli henkilö"
+#: src/Core/UserImport.php:104
+msgid "Error decoding account file"
+msgstr ""
 
-#: mod/contacts.php:621
-msgid "Ignore contact"
-msgstr "Jätä henkilö huomiotta"
+#: src/Core/UserImport.php:110
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"
 
-#: mod/contacts.php:622
-msgid "Repair URL settings"
-msgstr "Korjaa URL-asetukset"
+#: src/Core/UserImport.php:118
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!"
 
-#: mod/contacts.php:623
-msgid "View conversations"
-msgstr "Katso keskusteluja"
+#: src/Core/UserImport.php:151
+msgid "User creation error"
+msgstr "Virhe käyttäjän luomisessa"
 
-#: mod/contacts.php:628
-msgid "Last update:"
-msgstr "Viimeksi päivitetty:"
+#: src/Core/UserImport.php:169
+msgid "User profile creation error"
+msgstr "Virhe käyttäjäprofiilin luomisessa"
 
-#: mod/contacts.php:630
-msgid "Update public posts"
-msgstr "Päivitä julkiset postaukset"
+#: src/Core/UserImport.php:213
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakti ei tuotu"
+msgstr[1] "%d kontakteja ei tuotu"
 
-#: mod/contacts.php:632 mod/contacts.php:1002
-msgid "Update now"
-msgstr "Päivitä nyt"
+#: src/Core/UserImport.php:278
+msgid "Done. You can now login with your username and password"
+msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:485 mod/admin.php:1800
-msgid "Unblock"
-msgstr "Salli"
+#: src/Core/Console/NewPassword.php:78 mod/settings.php:394
+msgid ""
+"The new password has been exposed in a public data dump, please choose "
+"another."
+msgstr ""
 
-#: mod/contacts.php:637 mod/contacts.php:827 mod/contacts.php:1011
-#: mod/admin.php:484 mod/admin.php:1799
-msgid "Block"
-msgstr "Estä"
+#: src/Core/Console/NewPassword.php:82 mod/settings.php:409
+msgid "Password update failed. Please try again."
+msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
 
-#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
-msgid "Unignore"
-msgstr "Ota huomioon"
+#: src/Core/Console/NewPassword.php:85 mod/settings.php:407
+msgid "Password changed."
+msgstr "Salasana vaihdettu."
 
-#: mod/contacts.php:642
-msgid "Currently blocked"
-msgstr "Estetty tällä hetkellä"
+#: src/Core/Console/GlobalCommunityBlock.php:69 mod/admin.php:443
+#, php-format
+msgid "Could not find any contact entry for this URL (%s)"
+msgstr ""
 
-#: mod/contacts.php:643
-msgid "Currently ignored"
-msgstr "Jätetty huomiotta tällä hetkellä"
+#: src/Core/Console/GlobalCommunityBlock.php:72 mod/admin.php:441
+msgid "The contact has been blocked from the node"
+msgstr "Kontakti on estetty tällä solmulla"
 
-#: mod/contacts.php:644
-msgid "Currently archived"
-msgstr "Arkistoitu tällä hetkellä"
+#: src/Core/ACL.php:295
+msgid "Post to Email"
+msgstr "Viesti sähköpostiin"
 
-#: mod/contacts.php:645
-msgid "Awaiting connection acknowledge"
-msgstr "Odotetaan yhteyden kuittausta"
+#: src/Core/ACL.php:301
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Piilota profiilitietosi tuntemattomilta?"
 
-#: mod/contacts.php:646
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: src/Core/ACL.php:300
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: mod/contacts.php:647
-msgid "Notification for new posts"
-msgstr "Uusien postausten ilmoitus"
+#: src/Core/ACL.php:307
+msgid "Visible to everybody"
+msgstr "Näkyvissä kaikille"
 
-#: mod/contacts.php:647
-msgid "Send a notification of every new post of this contact"
-msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista"
+#: src/Core/ACL.php:308 view/theme/vier/config.php:115
+msgid "show"
+msgstr "näytä"
 
-#: mod/contacts.php:650
-msgid "Blacklisted keywords"
-msgstr "Kielletyt avainsanat"
+#: src/Core/ACL.php:309 view/theme/vier/config.php:115
+msgid "don't show"
+msgstr "älä näytä"
 
-#: mod/contacts.php:650
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: src/Core/ACL.php:315 mod/editpost.php:134
+msgid "CC: email addresses"
+msgstr "Kopio: sähköpostiosoitteet"
 
-#: mod/contacts.php:662 src/Model/Profile.php:424
-msgid "XMPP:"
-msgstr "XMPP:"
+#: src/Core/ACL.php:316 mod/editpost.php:141
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Esimerkki: bob@example.com, mary@example.com"
 
-#: mod/contacts.php:667
-msgid "Actions"
-msgstr "Toimenpiteet"
+#: src/Core/ACL.php:318 mod/events.php:533 mod/photos.php:1098
+#: mod/photos.php:1441
+msgid "Permissions"
+msgstr "Käyttöoikeudet"
 
-#: mod/contacts.php:669 mod/contacts.php:855 view/theme/frio/theme.php:259
-#: src/Content/Nav.php:100 src/Model/Profile.php:890
-msgid "Status"
-msgstr "Tila"
+#: src/Core/ACL.php:319
+msgid "Close"
+msgstr "Sulje"
 
-#: mod/contacts.php:670
-msgid "Contact Settings"
-msgstr "Yhteystietoasetukset"
+#: src/Core/NotificationsManager.php:171
+msgid "System"
+msgstr "Järjestelmä"
 
-#: mod/contacts.php:711
-msgid "Suggestions"
-msgstr "Ehdotukset"
+#: src/Core/NotificationsManager.php:185 mod/network.php:955
+#: mod/profiles.php:687
+msgid "Personal"
+msgstr "Henkilökohtainen"
 
-#: mod/contacts.php:714
-msgid "Suggest potential friends"
-msgstr "Ehdota mahdollisille ystäville"
+#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s kommentoi julkaisuun jonka kirjoitti %s"
 
-#: mod/contacts.php:722
-msgid "Show all contacts"
-msgstr "Näytä kaikki yhteystiedot"
+#: src/Core/NotificationsManager.php:267
+#, php-format
+msgid "%s created a new post"
+msgstr "%s loi uuden julkaisun"
 
-#: mod/contacts.php:727
-msgid "Unblocked"
-msgstr "Sallittu"
+#: src/Core/NotificationsManager.php:281
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
 
-#: mod/contacts.php:730
-msgid "Only show unblocked contacts"
-msgstr "Näytä vain sallitut henkilöt"
+#: src/Core/NotificationsManager.php:294
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
 
-#: mod/contacts.php:735
-msgid "Blocked"
-msgstr "Estetty"
+#: src/Core/NotificationsManager.php:307
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s osallistuu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:738
-msgid "Only show blocked contacts"
-msgstr "Näytä vain estetyt henkilöt"
+#: src/Core/NotificationsManager.php:320
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s ei osallistu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:743
-msgid "Ignored"
-msgstr "Jätetty huomiotta"
+#: src/Core/NotificationsManager.php:333
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s"
 
-#: mod/contacts.php:746
-msgid "Only show ignored contacts"
-msgstr "Näytä vain henkilöt, jotka jätetty huomiotta"
+#: src/Core/NotificationsManager.php:350
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ja %s ovat kavereita"
 
-#: mod/contacts.php:751
-msgid "Archived"
-msgstr "Arkistoitu"
+#: src/Core/NotificationsManager.php:825
+msgid "Friend Suggestion"
+msgstr "Kaveriehdotus"
 
-#: mod/contacts.php:754
-msgid "Only show archived contacts"
-msgstr "Näytä vain arkistoidut henkilöt"
+#: src/Core/NotificationsManager.php:851
+msgid "Friend/Connect Request"
+msgstr "Ystävä/yhteyspyyntö"
 
-#: mod/contacts.php:759
-msgid "Hidden"
-msgstr "Piilotettu"
+#: src/Core/NotificationsManager.php:851
+msgid "New Follower"
+msgstr "Uusi seuraaja"
 
-#: mod/contacts.php:762
-msgid "Only show hidden contacts"
-msgstr "Näytä vain piilotetut henkilöt"
+#: src/Util/Temporal.php:81 src/Util/Temporal.php:83 mod/profiles.php:689
+msgid "Miscellaneous"
+msgstr "Sekalaista"
 
-#: mod/contacts.php:818
-msgid "Search your contacts"
-msgstr "Etsi henkilöitä"
+#: src/Util/Temporal.php:149 mod/profiles.php:712
+msgid "Age: "
+msgstr "Ikä:"
 
-#: mod/contacts.php:820 mod/directory.php:209 src/Content/Widget.php:63
-msgid "Find"
-msgstr "Etsi"
+#: src/Util/Temporal.php:151
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "VVVV-KK-PP tai KK-PP"
 
-#: mod/contacts.php:826 mod/settings.php:170 mod/settings.php:701
-msgid "Update"
-msgstr "Päivitä"
+#: src/Util/Temporal.php:294
+msgid "never"
+msgstr "ei ikinä"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Archive"
-msgstr "Arkistoi"
+#: src/Util/Temporal.php:300
+msgid "less than a second ago"
+msgstr "alle sekunti sitten"
 
-#: mod/contacts.php:829 mod/contacts.php:1027
-msgid "Unarchive"
-msgstr "Poista arkistosta"
+#: src/Util/Temporal.php:303
+msgid "year"
+msgstr "vuosi"
 
-#: mod/contacts.php:832
-msgid "Batch Actions"
-msgstr ""
+#: src/Util/Temporal.php:303
+msgid "years"
+msgstr "vuotta"
 
-#: mod/contacts.php:858 mod/unfollow.php:132 mod/follow.php:186
-#: src/Model/Profile.php:893
-msgid "Status Messages and Posts"
-msgstr "Statusviestit ja postaukset"
+#: src/Util/Temporal.php:304
+msgid "months"
+msgstr "kuukautta"
 
-#: mod/contacts.php:866 src/Model/Profile.php:901
-msgid "Profile Details"
-msgstr "Profiilitiedot"
+#: src/Util/Temporal.php:305
+msgid "weeks"
+msgstr "viikkoa"
 
-#: mod/contacts.php:878
-msgid "View all contacts"
-msgstr "Näytä kaikki kontaktit"
+#: src/Util/Temporal.php:306
+msgid "days"
+msgstr "päivää"
 
-#: mod/contacts.php:889
-msgid "View all common friends"
-msgstr "Näytä kaikki yhteiset kaverit"
+#: src/Util/Temporal.php:307
+msgid "hour"
+msgstr "tunti"
 
-#: mod/contacts.php:895 mod/events.php:532 mod/admin.php:1351
-#: src/Model/Profile.php:867
-msgid "Advanced"
-msgstr ""
+#: src/Util/Temporal.php:307
+msgid "hours"
+msgstr "tuntia"
 
-#: mod/contacts.php:898
-msgid "Advanced Contact Settings"
-msgstr "Kontakti-lisäasetukset"
+#: src/Util/Temporal.php:308
+msgid "minute"
+msgstr "minuutti"
 
-#: mod/contacts.php:930
-msgid "Mutual Friendship"
-msgstr "Yhteinen kaveruus"
+#: src/Util/Temporal.php:308
+msgid "minutes"
+msgstr "inuuttia"
 
-#: mod/contacts.php:934
-msgid "is a fan of yours"
-msgstr "on fanisi"
+#: src/Util/Temporal.php:309
+msgid "second"
+msgstr "sekunti"
 
-#: mod/contacts.php:938
-msgid "you are a fan of"
-msgstr "fanitat"
+#: src/Util/Temporal.php:309
+msgid "seconds"
+msgstr "sekuntia"
 
-#: mod/contacts.php:1013
-msgid "Toggle Blocked status"
-msgstr "Estetty tila päälle/pois"
+#: src/Util/Temporal.php:318
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s sitten"
 
-#: mod/contacts.php:1021
-msgid "Toggle Ignored status"
-msgstr "Sivuuta/seuraa"
+#: src/Protocol/OStatus.php:1251 mod/profile.php:80
+#, php-format
+msgid "%s's timeline"
+msgstr "%s: aikajana"
 
-#: mod/contacts.php:1029
-msgid "Toggle Archive status"
-msgstr "Arkistotila päälle/pois"
+#: src/Protocol/OStatus.php:1252 mod/profile.php:78
+#, php-format
+msgid "%s's posts"
+msgstr "%s: julkaisut"
 
-#: mod/contacts.php:1037
-msgid "Delete contact"
-msgstr "Poista kontakti"
+#: src/Protocol/OStatus.php:1253 mod/profile.php:79
+#, php-format
+msgid "%s's comments"
+msgstr "%s: kommentit"
 
-#: mod/delegate.php:37
-msgid "Parent user not found."
-msgstr ""
+#: src/Protocol/OStatus.php:1799
+#, php-format
+msgid "%s is now following %s."
+msgstr "%s seuraa %s."
 
-#: mod/delegate.php:144
-msgid "No parent user"
-msgstr ""
+#: src/Protocol/OStatus.php:1800
+msgid "following"
+msgstr "seuraa"
 
-#: mod/delegate.php:159
-msgid "Parent Password:"
-msgstr ""
+#: src/Protocol/OStatus.php:1803
+#, php-format
+msgid "%s stopped following %s."
+msgstr "%s ei enää seuraa %s."
 
-#: mod/delegate.php:159
-msgid ""
-"Please enter the password of the parent account to legitimize your request."
-msgstr ""
+#: src/Protocol/OStatus.php:1804
+msgid "stopped following"
+msgstr "ei enää seuraa"
 
-#: mod/delegate.php:164
-msgid "Parent User"
+#: src/Protocol/Diaspora.php:2680
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: mod/delegate.php:167
-msgid ""
-"Parent users have total control about this account, including the account "
-"settings. Please double check whom you give this access."
-msgstr ""
+#: src/Protocol/Diaspora.php:3756
+msgid "Attachments:"
+msgstr "Liitteitä:"
 
-#: mod/delegate.php:168 mod/admin.php:307 mod/admin.php:1346
-#: mod/admin.php:1965 mod/admin.php:2218 mod/admin.php:2292 mod/admin.php:2439
-#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
-#: mod/settings.php:961 mod/settings.php:1194
-msgid "Save Settings"
-msgstr "Tallenna asetukset"
+#: mod/directory.php:42 mod/display.php:203 mod/viewcontacts.php:45
+#: mod/photos.php:932 mod/community.php:27 mod/videos.php:199
+#: mod/dfrn_request.php:607 mod/search.php:98 mod/search.php:104
+#: mod/probe.php:13 mod/webfinger.php:16
+msgid "Public access denied."
+msgstr "Julkinen käyttö estetty."
 
-#: mod/delegate.php:169 src/Content/Nav.php:204
-msgid "Delegate Page Management"
-msgstr ""
+#: mod/directory.php:202 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Maailmanlaajuinen hakemisto"
 
-#: mod/delegate.php:170
-msgid "Delegates"
+#: mod/directory.php:204
+msgid "Find on this site"
 msgstr ""
 
-#: mod/delegate.php:172
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr ""
+#: mod/directory.php:206
+msgid "Results for:"
+msgstr "Tulokset haulla:"
 
-#: mod/delegate.php:173
-msgid "Existing Page Delegates"
+#: mod/directory.php:208
+msgid "Site Directory"
+msgstr "Sivuston luettelo"
+
+#: mod/directory.php:213
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/delegate.php:175
-msgid "Potential Delegates"
+#: mod/dirfind.php:49
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/delegate.php:178
-msgid "Add"
-msgstr "Lisää"
+#: mod/dirfind.php:60
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Foorumihaku - %s"
 
-#: mod/delegate.php:179
-msgid "No entries."
-msgstr ""
+#: mod/dirfind.php:253 mod/match.php:125
+msgid "No matches"
+msgstr "Ei täsmääviä profiileja"
 
-#: mod/events.php:105 mod/events.php:107
-msgid "Event can not end before it has started."
+#: mod/repair_ostatus.php:18
+msgid "Resubscribing to OStatus contacts"
 msgstr ""
 
-#: mod/events.php:114 mod/events.php:116
-msgid "Event title and start time are required."
-msgstr "Tapahtuman nimi ja alkamisaika vaaditaan."
-
-#: mod/events.php:393
-msgid "Create New Event"
-msgstr "Luo uusi tapahtuma"
+#: mod/repair_ostatus.php:34
+msgid "Error"
+msgstr "Virhe"
 
-#: mod/events.php:506
-msgid "Event details"
-msgstr "Tapahtuman tiedot"
+#: mod/repair_ostatus.php:48 mod/ostatus_subscribe.php:64
+msgid "Done"
+msgstr "Valmis"
 
-#: mod/events.php:507
-msgid "Starting date and Title are required."
-msgstr "Aloituspvm ja otsikko vaaditaan."
+#: mod/repair_ostatus.php:54 mod/ostatus_subscribe.php:88
+msgid "Keep this window open until done."
+msgstr "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu."
 
-#: mod/events.php:508 mod/events.php:509
-msgid "Event Starts:"
-msgstr "Tapahtuma alkaa:"
+#: mod/ping.php:292
+msgid "{0} wants to be your friend"
+msgstr "{0} lähetti kaveripyynnön"
 
-#: mod/events.php:508 mod/events.php:520 mod/profiles.php:700
-msgid "Required"
-msgstr "Vaaditaan"
+#: mod/ping.php:307
+msgid "{0} sent you a message"
+msgstr "{0} lähetti sinulle viestin"
 
-#: mod/events.php:510 mod/events.php:526
-msgid "Finish date/time is not known or not relevant"
-msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"
+#: mod/ping.php:322
+msgid "{0} requested registration"
+msgstr "{0} jätti rekisteröintipyynnön"
 
-#: mod/events.php:512 mod/events.php:513
-msgid "Event Finishes:"
-msgstr "Tapahtuma päättyy:"
+#: mod/suggest.php:36
+msgid "Do you really want to delete this suggestion?"
+msgstr "Haluatko varmasti poistaa ehdotuksen?"
 
-#: mod/events.php:514 mod/events.php:527
-msgid "Adjust for viewer timezone"
-msgstr "Ota huomioon katsojan aikavyöhyke"
+#: mod/suggest.php:73
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua."
 
-#: mod/events.php:516
-msgid "Description:"
-msgstr "Kuvaus:"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Jätä huomiotta/piilota"
 
-#: mod/events.php:520 mod/events.php:522
-msgid "Title:"
-msgstr "Otsikko:"
+#: mod/display.php:313 mod/profile.php:173 mod/cal.php:142
+msgid "Access to this profile has been restricted."
+msgstr "Pääsy tähän profiiliin on rajoitettu"
 
-#: mod/events.php:523 mod/events.php:524
-msgid "Share this event"
-msgstr "Jaa tämä tapahtuma"
+#: mod/profile_photo.php:55
+msgid "Image uploaded but image cropping failed."
+msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui."
 
-#: mod/events.php:531 src/Model/Profile.php:866
-msgid "Basic"
-msgstr ""
+#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
+#: mod/profile_photo.php:315
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Kuvan pienentäminen [%s] epäonnistui."
 
-#: mod/events.php:552
-msgid "Failed to remove event"
-msgstr "Tapahtuman poisto epäonnistui"
+#: mod/profile_photo.php:125
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."
 
-#: mod/events.php:554
-msgid "Event removed"
-msgstr "Tapahtuma poistettu"
+#: mod/profile_photo.php:134
+msgid "Unable to process image"
+msgstr "Kuvan käsitteleminen epäonnistui"
 
-#: mod/feedtest.php:20
-msgid "You must be logged in to use this module"
-msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"
+#: mod/profile_photo.php:153 mod/photos.php:763 mod/photos.php:766
+#: mod/photos.php:795 mod/wall_upload.php:186
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Kuva ylittää kokorajoituksen %s"
 
-#: mod/feedtest.php:48
-msgid "Source URL"
-msgstr "Lähde URL"
+#: mod/profile_photo.php:162 mod/photos.php:818 mod/wall_upload.php:200
+msgid "Unable to process image."
+msgstr "Kuvan käsitteleminen epäonnistui."
 
-#: mod/install.php:114
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica viestinnän palvelin - asetukset"
+#: mod/profile_photo.php:247
+msgid "Upload File:"
+msgstr "Lähetä tiedosto:"
 
-#: mod/install.php:120
-msgid "Could not connect to database."
-msgstr "Tietokantaan ei saada yhteyttä."
+#: mod/profile_photo.php:248
+msgid "Select a profile:"
+msgstr "Valitse profiili:"
 
-#: mod/install.php:124
-msgid "Could not create table."
-msgstr "Taulun luominen epäonnistui."
+#: mod/profile_photo.php:249 mod/profiles.php:691 mod/newmember.php:26
+msgid "Upload Profile Photo"
+msgstr "Lataa profiilikuva"
 
-#: mod/install.php:130
-msgid "Your Friendica site database has been installed."
-msgstr "Friendica-sivustosi tietokanta on asennettu."
+#: mod/profile_photo.php:250 mod/fbrowser.php:105 mod/fbrowser.php:136
+msgid "Upload"
+msgstr "Lähetä"
 
-#: mod/install.php:135
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää."
+#: mod/profile_photo.php:253
+msgid "or"
+msgstr "tai"
 
-#: mod/install.php:136 mod/install.php:208 mod/install.php:558
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lue tiedosto \"INSTALL.txt\"."
+#: mod/profile_photo.php:253
+msgid "skip this step"
+msgstr "ohita tämä vaihe"
 
-#: mod/install.php:148
-msgid "Database already in use."
-msgstr "Tietokanta on jo käytössä."
+#: mod/profile_photo.php:253
+msgid "select a photo from your photo albums"
+msgstr "valitse kuva albumeistasi"
 
-#: mod/install.php:205
-msgid "System check"
-msgstr "Järjestelmän tarkistus"
+#: mod/profile_photo.php:266
+msgid "Crop Image"
+msgstr "Rajaa kuva"
 
-#: mod/install.php:210
-msgid "Check again"
-msgstr "Tarkista uudelleen"
+#: mod/profile_photo.php:267
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Rajaa kuva sopivasti."
 
-#: mod/install.php:230
-msgid "Database connection"
-msgstr "Tietokantayhteys"
+#: mod/profile_photo.php:269
+msgid "Done Editing"
+msgstr "Lopeta muokkaus"
 
-#: mod/install.php:231
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden."
+#: mod/profile_photo.php:305
+msgid "Image uploaded successfully."
+msgstr "Kuvan lähettäminen onnistui."
 
-#: mod/install.php:232
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä."
+#: mod/profile_photo.php:307 mod/photos.php:847 mod/wall_upload.php:239
+msgid "Image upload failed."
+msgstr "Kuvan lähettäminen epäonnistui."
 
-#: mod/install.php:233
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat."
+#: mod/removeme.php:43
+msgid "User deleted their account"
+msgstr "Käyttäjä poisti tilinsä"
 
-#: mod/install.php:237
-msgid "Database Server Name"
-msgstr "Tietokannan palvelimen nimi"
+#: mod/removeme.php:44
+msgid ""
+"On your Friendica node an user deleted their account. Please ensure that "
+"their data is removed from the backups."
+msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."
 
-#: mod/install.php:238
-msgid "Database Login Name"
-msgstr "Tietokannan käyttäjän nimi"
+#: mod/removeme.php:45
+#, php-format
+msgid "The user id is %d"
+msgstr ""
 
-#: mod/install.php:239
-msgid "Database Login Password"
-msgstr "Tietokannan käyttäjän salasana"
+#: mod/removeme.php:76 mod/removeme.php:79
+msgid "Remove My Account"
+msgstr "Poista tilini"
 
-#: mod/install.php:239
-msgid "For security reasons the password must not be empty"
-msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä"
+#: mod/removeme.php:77
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."
 
-#: mod/install.php:240
-msgid "Database Name"
-msgstr "Tietokannan nimi"
+#: mod/removeme.php:78
+msgid "Please enter your password for verification:"
+msgstr "Syötä salasanasi varmistusta varten:"
 
-#: mod/install.php:241 mod/install.php:281
-msgid "Site administrator email address"
-msgstr "Sivuston ylläpitäjän sähköpostiosoite"
+#: mod/manage.php:180
+msgid "Manage Identities and/or Pages"
+msgstr "Hallitse identiteetit ja/tai sivut"
 
-#: mod/install.php:241 mod/install.php:281
+#: mod/manage.php:181
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää."
-
-#: mod/install.php:245 mod/install.php:284
-msgid "Please select a default timezone for your website"
-msgstr "Valitse oletusaikavyöhyke sivustollesi"
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr ""
 
-#: mod/install.php:271
-msgid "Site settings"
-msgstr "Sivuston asetukset"
+#: mod/manage.php:182
+msgid "Select an identity to manage: "
+msgstr "Valitse identiteetti hallitavaksi:"
 
-#: mod/install.php:285
-msgid "System Language:"
-msgstr "Järjestelmän kieli:"
+#: mod/update_notes.php:40 mod/update_display.php:27
+#: mod/update_community.php:27 mod/update_network.php:33
+#: mod/update_profile.php:39
+msgid "[Embedded content - reload page to view]"
+msgstr "[Upotettu sisältö - näet sen päivittämällä sivun]"
 
-#: mod/install.php:285
+#: mod/uimport.php:55 mod/register.php:191
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Valitse Friendica-sivustosi oletuskieli."
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna."
 
-#: mod/install.php:325
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista."
+#: mod/uimport.php:70 mod/register.php:285
+msgid "Import"
+msgstr "Tuo"
 
-#: mod/install.php:326
-msgid ""
-"If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</a>"
-msgstr ""
+#: mod/uimport.php:72
+msgid "Move account"
+msgstr "Siirrä tili"
 
-#: mod/install.php:330
-msgid "PHP executable path"
-msgstr "Polku PHP-ohjelmaan"
+#: mod/uimport.php:73
+msgid "You can import an account from another Friendica server."
+msgstr "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta."
 
-#: mod/install.php:330
+#: mod/uimport.php:74
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta."
-
-#: mod/install.php:335
-msgid "Command line PHP"
-msgstr "Komentorivi-PHP"
-
-#: mod/install.php:344
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
 msgstr ""
 
-#: mod/install.php:345
-msgid "Found PHP version: "
-msgstr "PHP-versio löydetty:"
-
-#: mod/install.php:347
-msgid "PHP cli binary"
-msgstr "PHP cli -binääritiedosto"
-
-#: mod/install.php:358
+#: mod/uimport.php:75
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"."
-
-#: mod/install.php:359
-msgid "This is required for message delivery to work."
-msgstr "Asetus vaaditaan viestien lähettämiseen."
-
-#: mod/install.php:361
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (GNU Social/Statusnet) or from Diaspora"
+msgstr "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta."
 
-#: mod/install.php:384
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia."
+#: mod/uimport.php:76
+msgid "Account file"
+msgstr "Tilitiedosto"
 
-#: mod/install.php:385
+#: mod/uimport.php:76
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: mod/install.php:387
-msgid "Generate encryption keys"
-msgstr "Luo salausavaimet"
-
-#: mod/install.php:394
-msgid "libCurl PHP module"
-msgstr "PHP-moduuli libCurl"
-
-#: mod/install.php:395
-msgid "GD graphics PHP module"
-msgstr "PHP-moduuli GD graphics"
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr ""
 
-#: mod/install.php:396
-msgid "OpenSSL PHP module"
-msgstr "PHP-moduuli OpenSSL"
+#: mod/invite.php:33
+msgid "Total invitation limit exceeded."
+msgstr "Kutsuraja ylitetty."
 
-#: mod/install.php:397
-msgid "PDO or MySQLi PHP module"
-msgstr "PDO tai MySQLi PHP-moduuli"
+#: mod/invite.php:55
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Virheellinen sähköpostiosoite."
 
-#: mod/install.php:398
-msgid "mb_string PHP module"
-msgstr "PHP-moduuli mb_string"
+#: mod/invite.php:87
+msgid "Please join us on Friendica"
+msgstr "Tervetuloa Friendicaan"
 
-#: mod/install.php:399
-msgid "XML PHP module"
-msgstr "XML PHP-moduuli"
+#: mod/invite.php:96
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."
 
-#: mod/install.php:400
-msgid "iconv PHP module"
-msgstr "iconv PHP-moduuli"
+#: mod/invite.php:100
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Viestin toimitus epäonnistui."
 
-#: mod/install.php:401
-msgid "POSIX PHP module"
-msgstr "POSIX PHP-moduuli"
+#: mod/invite.php:104
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d viesti lähetetty."
+msgstr[1] "%d viestiä lähetetty."
 
-#: mod/install.php:405 mod/install.php:407
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite -moduuli"
+#: mod/invite.php:122
+msgid "You have no more invitations available"
+msgstr "Sinulla ei ole kutsuja jäljellä"
 
-#: mod/install.php:405
+#: mod/invite.php:130
+#, php-format
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:413
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr ""
 
-#: mod/install.php:417
+#: mod/invite.php:132
+#, php-format
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:421
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:425
-msgid "Error: PDO or MySQLi PHP module required but not installed."
-msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:429
-msgid "Error: The MySQL driver for PDO is not installed."
-msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu"
-
-#: mod/install.php:433
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:437
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:441
-msgid "Error: POSIX PHP module required but not installed."
-msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu."
-
-#: mod/install.php:451
-msgid "Error, XML PHP module required but not installed."
-msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
 
-#: mod/install.php:463
+#: mod/invite.php:133
+#, php-format
 msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr ""
 
-#: mod/install.php:464
+#: mod/invite.php:137
 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 "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit."
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
 
-#: mod/install.php:465
+#: mod/invite.php:141
 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 "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks."
+msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
+#: mod/invite.php:140
+#, php-format
+msgid "To accept this invitation, please visit and register at %s."
 msgstr ""
 
-#: mod/install.php:469
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php on kirjoitettava"
+#: mod/invite.php:147
+msgid "Send invitations"
+msgstr "Lähetä kutsut"
 
-#: mod/install.php:479
+#: mod/invite.php:148
+msgid "Enter email addresses, one per line:"
+msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
+
+#: mod/invite.php:149 mod/message.php:259 mod/message.php:426
+#: mod/wallmessage.php:141
+msgid "Your message:"
+msgstr "Viestisi:"
+
+#: mod/invite.php:150
 msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: mod/install.php:480
-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."
+#: mod/invite.php:152
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: mod/install.php:481
+#: mod/invite.php:152
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:"
 
-#: mod/install.php:482
+#: mod/invite.php:154
 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."
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendi.ca"
 msgstr ""
 
-#: mod/install.php:485
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 on kirjoitettava"
+#: mod/openid.php:29
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID -protokollavirhe. Tunnusta ei vastaanotettu."
 
-#: mod/install.php:501
+#: mod/openid.php:66
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla."
 
-#: mod/install.php:503
-msgid "Url rewrite is working"
-msgstr "URL-osoitteen uudellenkirjoitus toimii"
+#: mod/hcard.php:18
+msgid "No profile"
+msgstr "Ei profiilia"
 
-#: mod/install.php:522
-msgid "ImageMagick PHP extension is not installed"
-msgstr "ImageMagick PHP-laajennus ei ole asetettu"
+#: mod/apps.php:14 index.php:273
+msgid "You must be logged in to use addons. "
+msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia"
 
-#: mod/install.php:524
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP-laajennus on asetettu"
-
-#: mod/install.php:526
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagik tukee GIF-formaattia"
-
-#: mod/install.php:533
-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 "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen."
+#: mod/apps.php:19
+msgid "Applications"
+msgstr "Sovellukset"
 
-#: mod/install.php:556
-msgid "<h1>What next</h1>"
-msgstr "<h1>Mitä seuraavaksi</h1>"
+#: mod/apps.php:22
+msgid "No installed applications."
+msgstr "Ei asennettuja sovelluksia."
 
-#: mod/install.php:557
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"worker."
-msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille."
+#: mod/network.php:194 mod/search.php:37
+msgid "Remove term"
+msgstr "Poista kohde"
 
-#: mod/install.php:560
+#: mod/network.php:547
 #, php-format
 msgid ""
-"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
-"and register as new user. Remember to use the same email you have entered as"
-" administrator email. This will allow you to enter the site admin panel."
+"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:550
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/item.php:114
-msgid "Unable to locate original post."
-msgstr "Alkuperäinen julkaisu ei löydy."
+#: mod/network.php:618
+msgid "No such group"
+msgstr "Ryhmä ei ole olemassa"
 
-#: mod/item.php:274
-msgid "Empty post discarded."
-msgstr "Tyhjä julkaisu hylätty."
+#: mod/network.php:639 mod/group.php:216
+msgid "Group is empty"
+msgstr "Ryhmä on tyhjä"
 
-#: mod/item.php:799
+#: mod/network.php:643
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr ""
+msgid "Group: %s"
+msgstr "Ryhmä: %s"
 
-#: mod/item.php:801
-#, php-format
-msgid "You may visit them online at %s"
-msgstr ""
+#: mod/network.php:669
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."
 
-#: mod/item.php:802
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr ""
+#: mod/network.php:672
+msgid "Invalid contact."
+msgstr "Virheellinen kontakti."
 
-#: mod/item.php:806
-#, php-format
-msgid "%s posted an update."
-msgstr "%s julkaisi päivityksen."
+#: mod/network.php:936
+msgid "Commented Order"
+msgstr "Järjestä viimeisimpien kommenttien mukaan"
 
-#: mod/oexchange.php:30
-msgid "Post successful."
-msgstr "Viestin lähetys onnistui."
+#: mod/network.php:939
+msgid "Sort by Comment Date"
+msgstr "Kommentit päivämäärän mukaan"
 
-#: mod/ostatus_subscribe.php:21
-msgid "Subscribing to OStatus contacts"
-msgstr "OStatus -kontaktien tilaaminen"
+#: mod/network.php:944
+msgid "Posted Order"
+msgstr "Järjestä julkaisupäivämäärän mukaan"
 
-#: mod/ostatus_subscribe.php:33
-msgid "No contact provided."
-msgstr "Kontakti puuttuu."
+#: mod/network.php:947
+msgid "Sort by Post Date"
+msgstr "Julkaisut päivämäärän mukaan"
 
-#: mod/ostatus_subscribe.php:40
-msgid "Couldn't fetch information for contact."
-msgstr "Kontaktin tietoja ei voitu hakea."
+#: mod/network.php:958
+msgid "Posts that mention or involve you"
+msgstr "Julkaisut jotka liittyvät sinuun"
 
-#: mod/ostatus_subscribe.php:50
-msgid "Couldn't fetch friends for contact."
-msgstr "Ei voitu hakea kontaktin kaverit."
+#: mod/network.php:966
+msgid "New"
+msgstr "Uusi"
 
-#: mod/ostatus_subscribe.php:78
-msgid "success"
-msgstr "onnistui"
+#: mod/network.php:969
+msgid "Activity Stream - by date"
+msgstr ""
 
-#: mod/ostatus_subscribe.php:80
-msgid "failed"
-msgstr "epäonnistui"
+#: mod/network.php:977
+msgid "Shared Links"
+msgstr "Jaetut linkit"
 
-#: mod/ostatus_subscribe.php:83 src/Object/Post.php:279
-msgid "ignored"
-msgstr "ohitettu"
+#: mod/network.php:980
+msgid "Interesting Links"
+msgstr "Kiinnostavat linkit"
 
-#: mod/profile_photo.php:55
-msgid "Image uploaded but image cropping failed."
-msgstr "Kuva ladattu mutta kuvan rajaus epäonnistui."
+#: mod/network.php:988
+msgid "Starred"
+msgstr "Tähtimerkitty"
 
-#: mod/profile_photo.php:88 mod/profile_photo.php:96 mod/profile_photo.php:104
-#: mod/profile_photo.php:315
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Kuvan pienentäminen [%s] epäonnistui."
+#: mod/network.php:991
+msgid "Favourite Posts"
+msgstr "Lempijulkaisut"
 
-#: mod/profile_photo.php:125
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti."
+#: mod/friendica.php:77
+msgid "This is Friendica, version"
+msgstr "Tämä on Friendica, versio"
 
-#: mod/profile_photo.php:134
-msgid "Unable to process image"
-msgstr "Kuvan käsitteleminen epäonnistui"
+#: mod/friendica.php:78
+msgid "running at web location"
+msgstr "käynnissä osoitteessa"
 
-#: mod/profile_photo.php:247
-msgid "Upload File:"
-msgstr "Lähetä tiedosto:"
+#: mod/friendica.php:82
+msgid ""
+"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
+"about the Friendica project."
+msgstr "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> saadaksesi lisätietoja Friendica- projektista."
 
-#: mod/profile_photo.php:248
-msgid "Select a profile:"
-msgstr "Valitse profiili:"
+#: mod/friendica.php:86
+msgid "Bug reports and issues: please visit"
+msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
 
-#: mod/profile_photo.php:253
-msgid "or"
-msgstr "tai"
+#: mod/friendica.php:86
+msgid "the bugtracker at github"
+msgstr "githubin bugtrackeri"
 
-#: mod/profile_photo.php:253
-msgid "skip this step"
-msgstr "ohita tämä vaihe"
+#: mod/friendica.php:89
+msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
+msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"
 
-#: mod/profile_photo.php:253
-msgid "select a photo from your photo albums"
-msgstr "valitse kuva albumeistasi"
+#: mod/friendica.php:103
+msgid "Installed addons/apps:"
+msgstr "Asennettu lisäosat/sovellukset:"
 
-#: mod/profile_photo.php:266
-msgid "Crop Image"
-msgstr "Rajaa kuva"
+#: mod/friendica.php:117
+msgid "No installed addons/apps"
+msgstr "Ei asennettuja lisäosia/sovelluksia"
 
-#: mod/profile_photo.php:267
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Rajaa kuva sopivasti."
+#: mod/friendica.php:122
+#, php-format
+msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
+msgstr "Lue tämän solmun <a href=\"%1$s/tos\">käyttöehdot</a>."
 
-#: mod/profile_photo.php:269
-msgid "Done Editing"
-msgstr "Lopeta muokkaus"
+#: mod/friendica.php:127
+msgid "On this server the following remote servers are blocked."
+msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."
 
-#: mod/profile_photo.php:305
-msgid "Image uploaded successfully."
-msgstr "Kuvan lähettäminen onnistui."
+#: mod/friendica.php:128 mod/admin.php:354 mod/admin.php:372
+msgid "Reason for the block"
+msgstr "Eston syy"
 
-#: mod/unfollow.php:34
-msgid "Contact wasn't found or can't be unfollowed."
+#: mod/subthread.php:113
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: mod/unfollow.php:47
-msgid "Contact unfollowed"
-msgstr "Kontaktia ei enää seurata"
+#: mod/profiles.php:39 mod/profiles.php:149 mod/profiles.php:196
+#: mod/profiles.php:618 mod/dfrn_confirm.php:74
+msgid "Profile not found."
+msgstr "Profiilia ei löytynyt."
 
-#: mod/unfollow.php:73
-msgid "You aren't a friend of this contact."
-msgstr "Et ole kontaktin kaveri."
+#: mod/profiles.php:58
+msgid "Profile deleted."
+msgstr "Profiili poistettiin."
 
-#: mod/unfollow.php:79
-msgid "Unfollowing is currently not supported by your network."
-msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
+#: mod/profiles.php:74 mod/profiles.php:110
+msgid "Profile-"
+msgstr "Profiili-"
 
-#: mod/admin.php:106
-msgid "Theme settings updated."
-msgstr "Teeman asetukset päivitetty."
+#: mod/profiles.php:93 mod/profiles.php:132
+msgid "New profile created."
+msgstr "Uusi profiili luotu."
 
-#: mod/admin.php:179 src/Content/Nav.php:174
-msgid "Information"
-msgstr "Tietoja"
+#: mod/profiles.php:116
+msgid "Profile unavailable to clone."
+msgstr "Profiili ei saatavilla kloonattavaksi."
 
-#: mod/admin.php:180
-msgid "Overview"
-msgstr "Yleiskatsaus"
+#: mod/profiles.php:206
+msgid "Profile Name is required."
+msgstr "Profiilinimi on pakollinen."
 
-#: mod/admin.php:181 mod/admin.php:718
-msgid "Federation Statistics"
-msgstr "Liiton tilastotiedot"
+#: mod/profiles.php:347
+msgid "Marital Status"
+msgstr "Siviilisääty"
 
-#: mod/admin.php:182
-msgid "Configuration"
-msgstr "Kokoonpano"
+#: mod/profiles.php:351
+msgid "Romantic Partner"
+msgstr "Romanttinen kumppani"
 
-#: mod/admin.php:183 mod/admin.php:1345
-msgid "Site"
-msgstr "Sivusto"
+#: mod/profiles.php:363
+msgid "Work/Employment"
+msgstr "Työ"
 
-#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1788 mod/admin.php:1804
-msgid "Users"
-msgstr "Käyttäjät"
+#: mod/profiles.php:366
+msgid "Religion"
+msgstr "Uskonto"
 
-#: mod/admin.php:185 mod/admin.php:1904 mod/admin.php:1964 mod/settings.php:86
-msgid "Addons"
-msgstr "Lisäosat"
+#: mod/profiles.php:370
+msgid "Political Views"
+msgstr "Poliittiset näkemykset"
 
-#: mod/admin.php:186 mod/admin.php:2173 mod/admin.php:2217
-msgid "Themes"
-msgstr "Teemat"
+#: mod/profiles.php:374
+msgid "Gender"
+msgstr "Sukupuoli"
 
-#: mod/admin.php:187 mod/settings.php:64
-msgid "Additional features"
-msgstr "Lisäominaisuuksia"
+#: mod/profiles.php:378
+msgid "Sexual Preference"
+msgstr "Seksuaalinen suuntautuminen"
 
-#: mod/admin.php:188 mod/admin.php:302 mod/register.php:288
-#: src/Module/Tos.php:48
-msgid "Terms of Service"
-msgstr "Käyttöehdot"
+#: mod/profiles.php:382
+msgid "XMPP"
+msgstr "XMPP"
 
-#: mod/admin.php:189
-msgid "Database"
-msgstr "Tietokanta"
+#: mod/profiles.php:386
+msgid "Homepage"
+msgstr "Kotisivu"
 
-#: mod/admin.php:190
-msgid "DB updates"
-msgstr "Tietokannan päivitykset"
+#: mod/profiles.php:390 mod/profiles.php:686
+msgid "Interests"
+msgstr "Kiinnostukset"
 
-#: mod/admin.php:191 mod/admin.php:753
-msgid "Inspect Queue"
-msgstr "Tarkista jono"
+#: mod/profiles.php:394 mod/admin.php:490
+msgid "Address"
+msgstr "Osoite"
 
-#: mod/admin.php:192
-msgid "Tools"
-msgstr "Työkalut"
+#: mod/profiles.php:401 mod/profiles.php:682
+msgid "Location"
+msgstr "Sijainti"
 
-#: mod/admin.php:193
-msgid "Contact Blocklist"
-msgstr "Kontaktien estolista"
+#: mod/profiles.php:486
+msgid "Profile updated."
+msgstr "Profiili päivitettiin."
 
-#: mod/admin.php:194 mod/admin.php:362
-msgid "Server Blocklist"
-msgstr "Palvelimien estolista"
+#: mod/profiles.php:564
+msgid " and "
+msgstr "ja"
 
-#: mod/admin.php:195 mod/admin.php:521
-msgid "Delete Item"
-msgstr "Poista kohde"
+#: mod/profiles.php:573
+msgid "public profile"
+msgstr "julkinen profiili"
 
-#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2291
-msgid "Logs"
-msgstr "Lokit"
+#: mod/profiles.php:576
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr ""
 
-#: mod/admin.php:198 mod/admin.php:2358
-msgid "View Logs"
-msgstr "Katso lokit"
+#: mod/profiles.php:577
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr ""
 
-#: mod/admin.php:200
-msgid "Diagnostics"
-msgstr "Diagnostiikka"
+#: mod/profiles.php:579
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr ""
 
-#: mod/admin.php:201
-msgid "PHP Info"
-msgstr "PHP tietoja"
+#: mod/profiles.php:633
+msgid "Hide contacts and friends:"
+msgstr "Piilota kontaktit ja kaverit:"
 
-#: mod/admin.php:202
-msgid "probe address"
-msgstr ""
+#: mod/profiles.php:636 mod/profiles.php:640 mod/profiles.php:661
+#: mod/api.php:111 mod/settings.php:1105 mod/settings.php:1111
+#: mod/settings.php:1118 mod/settings.php:1122 mod/settings.php:1126
+#: mod/settings.php:1130 mod/settings.php:1134 mod/settings.php:1138
+#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160
+#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:653
+#: mod/follow.php:150 mod/register.php:238
+msgid "No"
+msgstr "Ei"
 
-#: mod/admin.php:203
-msgid "check webfinger"
-msgstr "Tarkista webfinger"
+#: mod/profiles.php:638
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Piilota tämän profiilin kontakti/kaverilista?"
 
-#: mod/admin.php:222 src/Content/Nav.php:217
-msgid "Admin"
-msgstr "Ylläpitäjä"
+#: mod/profiles.php:658
+msgid "Show more profile fields:"
+msgstr "Näytä lisää profiilikenttiä:"
 
-#: mod/admin.php:223
-msgid "Addon Features"
-msgstr "Lisäosaominaisuudet"
+#: mod/profiles.php:670
+msgid "Profile Actions"
+msgstr ""
 
-#: mod/admin.php:224
-msgid "User registrations waiting for confirmation"
-msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
+#: mod/profiles.php:671
+msgid "Edit Profile Details"
+msgstr "Muokkaa profiilin yksityiskohdat"
 
-#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
-#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
-#: mod/admin.php:1787 mod/admin.php:1903 mod/admin.php:1963 mod/admin.php:2172
-#: mod/admin.php:2216 mod/admin.php:2290 mod/admin.php:2357
-msgid "Administration"
-msgstr "Ylläpito"
+#: mod/profiles.php:673
+msgid "Change Profile Photo"
+msgstr "Vaihda profiilikuva"
 
-#: mod/admin.php:303
-msgid "Display Terms of Service"
-msgstr "Näytä käyttöehdot"
+#: mod/profiles.php:674
+msgid "View this profile"
+msgstr "Näytä profiilia"
 
-#: mod/admin.php:303
-msgid ""
-"Enable the Terms of Service page. If this is enabled a link to the terms "
-"will be added to the registration form and the general information page."
-msgstr ""
+#: mod/profiles.php:676
+msgid "Create a new profile using these settings"
+msgstr "Luo uusi profiili näillä asetuksilla"
 
-#: mod/admin.php:304
-msgid "Display Privacy Statement"
-msgstr "Näytä tietosuojalausunto"
+#: mod/profiles.php:677
+msgid "Clone this profile"
+msgstr "Kloonaa tämä profiili"
 
-#: mod/admin.php:304
-#, php-format
-msgid ""
-"Show some informations regarding the needed information to operate the node "
-"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
-msgstr ""
+#: mod/profiles.php:678
+msgid "Delete this profile"
+msgstr "Poista tämä profiili"
 
-#: mod/admin.php:305
-msgid "The Terms of Service"
-msgstr "Käyttöehdot"
+#: mod/profiles.php:680
+msgid "Basic information"
+msgstr "Perustiedot"
 
-#: mod/admin.php:305
-msgid ""
-"Enter the Terms of Service for your node here. You can use BBCode. Headers "
-"of sections should be [h2] and below."
-msgstr ""
+#: mod/profiles.php:681
+msgid "Profile picture"
+msgstr "Profiilikuva"
 
-#: mod/admin.php:353
-msgid "The blocked domain"
-msgstr "Estetty verkkotunnus"
+#: mod/profiles.php:683
+msgid "Preferences"
+msgstr "Mieltymykset"
 
-#: mod/admin.php:354 mod/admin.php:372 mod/friendica.php:128
-msgid "Reason for the block"
-msgstr "Eston syy"
+#: mod/profiles.php:684
+msgid "Status information"
+msgstr "Tilatiedot"
 
-#: mod/admin.php:354 mod/admin.php:367
-msgid "The reason why you blocked this domain."
-msgstr "Verkkotunnuksen estosyy."
+#: mod/profiles.php:685
+msgid "Additional information"
+msgstr "Lisätietoja"
 
-#: mod/admin.php:355
-msgid "Delete domain"
-msgstr "Poista verkkotunnus"
+#: mod/profiles.php:688
+msgid "Relation"
+msgstr "Suhde"
 
-#: mod/admin.php:355
-msgid "Check to delete this entry from the blocklist"
-msgstr "Laita rasti poistaaksesi kohde estolistalta"
+#: mod/profiles.php:692
+msgid "Your Gender:"
+msgstr "Sukupuoli:"
 
-#: mod/admin.php:363
-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:693
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Siviilisääty:"
 
-#: mod/admin.php:364
-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:695
+msgid "Example: fishing photography software"
+msgstr "Esimerkki: kalastus valokuvaus ohjelmistot"
 
-#: mod/admin.php:365
-msgid "Add new entry to block list"
-msgstr "Lisää uusi kohde estolistaan"
+#: mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profiilinimi:"
 
-#: mod/admin.php:366
-msgid "Server Domain"
-msgstr "Palvelimen verkkotunnus"
+#: mod/profiles.php:700 mod/events.php:508 mod/events.php:520
+msgid "Required"
+msgstr "Vaaditaan"
 
-#: mod/admin.php:366
+#: mod/profiles.php:702
 msgid ""
-"The domain of the new server to add to the block list. Do not include the "
-"protocol."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: mod/admin.php:367
-msgid "Block reason"
-msgstr "Estosyy"
+#: mod/profiles.php:703
+msgid "Your Full Name:"
+msgstr "Koko nimi:"
 
-#: mod/admin.php:368
-msgid "Add Entry"
-msgstr "Lisää merkintä"
+#: mod/profiles.php:704
+msgid "Title/Description:"
+msgstr "Otsikko/kuvaus:"
 
-#: mod/admin.php:369
-msgid "Save changes to the blocklist"
-msgstr "Tallenna muutoksia estolistaan"
+#: mod/profiles.php:707
+msgid "Street Address:"
+msgstr "Katuosoite:"
 
-#: mod/admin.php:370
-msgid "Current Entries in the Blocklist"
-msgstr "Nykyinen estolista"
+#: mod/profiles.php:708
+msgid "Locality/City:"
+msgstr "Kaupunki:"
 
-#: mod/admin.php:373
-msgid "Delete entry from blocklist"
-msgstr "Poista kohde estolistalta"
+#: mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Alue/osavaltio:"
 
-#: mod/admin.php:376
-msgid "Delete entry from blocklist?"
-msgstr "Poista kohde estolistalta?"
+#: mod/profiles.php:710
+msgid "Postal/Zip Code:"
+msgstr "Postinumero:"
 
-#: mod/admin.php:402
-msgid "Server added to blocklist."
-msgstr "Palvelin lisätty estolistalle"
+#: mod/profiles.php:711
+msgid "Country:"
+msgstr "Maa:"
 
-#: mod/admin.php:418
-msgid "Site blocklist updated."
-msgstr "Sivuston estolista päivitetty."
+#: mod/profiles.php:715
+msgid "Who: (if applicable)"
+msgstr "Kuka: (tarvittaessa)"
 
-#: mod/admin.php:441 src/Core/Console/GlobalCommunityBlock.php:72
-msgid "The contact has been blocked from the node"
-msgstr "Kontakti on estetty tällä solmulla"
+#: mod/profiles.php:715
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com"
 
-#: mod/admin.php:443 src/Core/Console/GlobalCommunityBlock.php:69
-#, php-format
-msgid "Could not find any contact entry for this URL (%s)"
-msgstr ""
+#: mod/profiles.php:716
+msgid "Since [date]:"
+msgstr "Lähtien [päivämäärä]:"
 
-#: mod/admin.php:450
-#, php-format
-msgid "%s contact unblocked"
-msgid_plural "%s contacts unblocked"
-msgstr[0] "%s kontakti poistettu estolistalta"
-msgstr[1] "%s kontaktia poistettu estolistalta"
+#: mod/profiles.php:718
+msgid "Tell us about yourself..."
+msgstr "Kerro vähän itsestäsi..."
 
-#: mod/admin.php:479
-msgid "Remote Contact Blocklist"
-msgstr "Etäkontakti estolista"
+#: mod/profiles.php:719
+msgid "XMPP (Jabber) address:"
+msgstr "XMPP (Jabber) osoite:"
 
-#: mod/admin.php:480
+#: mod/profiles.php:719
 msgid ""
-"This page allows you to prevent any message from a remote contact to reach "
-"your node."
+"The XMPP address will be propagated to your contacts so that they can follow"
+" you."
 msgstr ""
 
-#: mod/admin.php:481
-msgid "Block Remote Contact"
-msgstr "Estä etäkontakti"
-
-#: mod/admin.php:482 mod/admin.php:1790
-msgid "select all"
-msgstr "valitse kaikki"
+#: mod/profiles.php:720
+msgid "Homepage URL:"
+msgstr "Kotisivun URL-osoite:"
 
-#: mod/admin.php:483
-msgid "select none"
-msgstr "älä valitse mitään"
+#: mod/profiles.php:723
+msgid "Religious Views:"
+msgstr "Uskonto:"
 
-#: mod/admin.php:486
-msgid "No remote contact is blocked from this node."
-msgstr ""
+#: mod/profiles.php:724
+msgid "Public Keywords:"
+msgstr "Julkiset avainsanat:"
 
-#: mod/admin.php:488
-msgid "Blocked Remote Contacts"
-msgstr "Estetty etäkontaktit"
+#: mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)"
 
-#: mod/admin.php:489
-msgid "Block New Remote Contact"
-msgstr "Estä uusi etäkontakti"
+#: mod/profiles.php:725
+msgid "Private Keywords:"
+msgstr "Yksityiset avainsanat:"
 
-#: mod/admin.php:490
-msgid "Photo"
-msgstr "Kuva"
+#: mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Käytetään profiilihakua varten, ei näy muille)"
 
-#: mod/admin.php:490 mod/profiles.php:394
-msgid "Address"
-msgstr "Osoite"
+#: mod/profiles.php:728
+msgid "Musical interests"
+msgstr "Musiikki"
 
-#: mod/admin.php:498
-#, php-format
-msgid "%s total blocked contact"
-msgid_plural "%s total blocked contacts"
-msgstr[0] "Yhteensä %s estetty kontakti"
-msgstr[1] "Yhteensä %s estettyjä kontakteja"
+#: mod/profiles.php:729
+msgid "Books, literature"
+msgstr "Kirjat, kirjallisuus"
 
-#: mod/admin.php:500
-msgid "URL of the remote contact to block."
-msgstr "Estettävän etäkontaktin URL-osoite"
+#: mod/profiles.php:730
+msgid "Television"
+msgstr "Televisio"
 
-#: mod/admin.php:522
-msgid "Delete this Item"
-msgstr "Poista tämä kohde"
+#: mod/profiles.php:731
+msgid "Film/dance/culture/entertainment"
+msgstr "Elokuvat/tanssi/kulttuuri/viihde"
 
-#: mod/admin.php:523
-msgid ""
-"On this page you can delete an item from your node. If the item is a top "
-"level posting, the entire thread will be deleted."
-msgstr ""
+#: mod/profiles.php:732
+msgid "Hobbies/Interests"
+msgstr "Harrastukset"
 
-#: mod/admin.php:524
-msgid ""
-"You need to know the GUID of the item. You can find it e.g. by looking at "
-"the display URL. The last part of http://example.com/display/123456 is the "
-"GUID, here 123456."
-msgstr ""
+#: mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Rakkaus/romanssi"
 
-#: mod/admin.php:525
-msgid "GUID"
-msgstr "GUID"
+#: mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Työ:"
 
-#: mod/admin.php:525
-msgid "The GUID of the item you want to delete."
-msgstr "Poistettavan kohteen GUID."
+#: mod/profiles.php:735
+msgid "School/education"
+msgstr "Koulutus:"
 
-#: mod/admin.php:564
-msgid "Item marked for deletion."
-msgstr "Kohde merkitty poistettavaksi."
+#: mod/profiles.php:736
+msgid "Contact information and Social Networks"
+msgstr "Yhteystiedot ja sosiaalinen media"
 
-#: mod/admin.php:635
-msgid "unknown"
-msgstr "tuntematon"
+#: mod/profiles.php:776
+msgid "Edit/Manage Profiles"
+msgstr "Muokkaa/hallitse profiilit"
 
-#: mod/admin.php:711
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/events.php:105 mod/events.php:107
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:712
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr ""
+#: mod/events.php:114 mod/events.php:116
+msgid "Event title and start time are required."
+msgstr "Tapahtuman nimi ja alkamisaika vaaditaan."
 
-#: mod/admin.php:724
-#, php-format
-msgid ""
-"Currently this node is aware of %d nodes with %d registered users from the "
-"following platforms:"
-msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:"
+#: mod/events.php:392 mod/cal.php:275
+msgid "View"
+msgstr "Katso"
 
-#: mod/admin.php:755
-msgid "ID"
-msgstr ""
+#: mod/events.php:393
+msgid "Create New Event"
+msgstr "Luo uusi tapahtuma"
 
-#: mod/admin.php:756
-msgid "Recipient Name"
-msgstr "Vastaanottajan nimi"
+#: mod/events.php:394 mod/cal.php:276
+msgid "Previous"
+msgstr "Edellinen"
 
-#: mod/admin.php:757
-msgid "Recipient Profile"
-msgstr "Vastaanottajan profiili"
+#: mod/events.php:395 mod/cal.php:277 mod/install.php:209
+msgid "Next"
+msgstr "Seuraava"
 
-#: mod/admin.php:758 view/theme/frio/theme.php:266
-#: src/Core/NotificationsManager.php:178 src/Content/Nav.php:178
-msgid "Network"
-msgstr "Verkko"
+#: mod/events.php:404 mod/cal.php:284
+msgid "list"
+msgstr "luettelo"
 
-#: mod/admin.php:759
-msgid "Created"
-msgstr "Luotu"
+#: mod/events.php:506
+msgid "Event details"
+msgstr "Tapahtuman tiedot"
 
-#: mod/admin.php:760
-msgid "Last Tried"
-msgstr "Viimeksi yritetty"
+#: mod/events.php:507
+msgid "Starting date and Title are required."
+msgstr "Aloituspvm ja otsikko vaaditaan."
 
-#: mod/admin.php:761
-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/events.php:508 mod/events.php:509
+msgid "Event Starts:"
+msgstr "Tapahtuma alkaa:"
 
-#: mod/admin.php:785
-#, 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 "
-"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
-" an automatic conversion.<br />"
-msgstr ""
+#: mod/events.php:510 mod/events.php:526
+msgid "Finish date/time is not known or not relevant"
+msgstr "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä"
 
-#: mod/admin.php:792
-#, php-format
-msgid ""
-"There is a new version of Friendica available for download. Your current "
-"version is %1$s, upstream version is %2$s"
-msgstr ""
+#: mod/events.php:512 mod/events.php:513
+msgid "Event Finishes:"
+msgstr "Tapahtuma päättyy:"
 
-#: mod/admin.php:802
-msgid ""
-"The database update failed. Please run \"php bin/console.php dbstructure "
-"update\" from the command line and have a look at the errors that might "
-"appear."
-msgstr ""
+#: mod/events.php:514 mod/events.php:527
+msgid "Adjust for viewer timezone"
+msgstr "Ota huomioon katsojan aikavyöhyke"
 
-#: mod/admin.php:808
-msgid "The worker was never executed. Please check your database structure!"
-msgstr ""
+#: mod/events.php:516
+msgid "Description:"
+msgstr "Kuvaus:"
 
-#: mod/admin.php:811
-#, php-format
-msgid ""
-"The last worker execution was on %s UTC. This is older than one hour. Please"
-" check your crontab settings."
-msgstr ""
+#: mod/events.php:520 mod/events.php:522
+msgid "Title:"
+msgstr "Otsikko:"
 
-#: mod/admin.php:816 mod/admin.php:1739
-msgid "Normal Account"
-msgstr "Perustili"
+#: mod/events.php:523 mod/events.php:524
+msgid "Share this event"
+msgstr "Jaa tämä tapahtuma"
 
-#: mod/admin.php:817 mod/admin.php:1740
-msgid "Automatic Follower Account"
-msgstr "Automaattinen seuraajatili"
+#: mod/events.php:552
+msgid "Failed to remove event"
+msgstr "Tapahtuman poisto epäonnistui"
 
-#: mod/admin.php:818 mod/admin.php:1741
-msgid "Public Forum Account"
-msgstr "Julkinen foorumitili"
+#: mod/events.php:554
+msgid "Event removed"
+msgstr "Tapahtuma poistettu"
 
-#: mod/admin.php:819 mod/admin.php:1742
-msgid "Automatic Friend Account"
-msgstr "Automaattinen kaveritili"
+#: mod/notify.php:77
+msgid "No more system notifications."
+msgstr "Ei enää järjestelmäilmoituksia."
 
-#: mod/admin.php:820
-msgid "Blog Account"
-msgstr "Blogitili"
+#: mod/notify.php:81 mod/notifications.php:113
+msgid "System Notifications"
+msgstr "Järjestelmäilmoitukset"
 
-#: mod/admin.php:821
-msgid "Private Forum Account"
-msgstr "Yksityinen foorumitili"
+#: mod/fsuggest.php:30 mod/fsuggest.php:96 mod/crepair.php:110
+#: mod/dfrn_confirm.php:131
+msgid "Contact not found."
+msgstr "Kontaktia ei ole."
 
-#: mod/admin.php:843
-msgid "Message queues"
-msgstr "Viestijonot"
+#: mod/fsuggest.php:72
+msgid "Friend suggestion sent."
+msgstr "Ystäväehdotus lähetettiin."
 
-#: mod/admin.php:849
-msgid "Summary"
-msgstr "Yhteenveto"
+#: mod/fsuggest.php:101
+msgid "Suggest Friends"
+msgstr "Ehdota ystäviä"
 
-#: mod/admin.php:851
-msgid "Registered users"
-msgstr "Rekisteröityneet käyttäjät"
+#: mod/fsuggest.php:103
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Ehdota ystävää ystävälle %s"
 
-#: mod/admin.php:853
-msgid "Pending registrations"
-msgstr "Vireillä olevat rekisteröinnit"
+#: mod/attach.php:15
+msgid "Item not available."
+msgstr "Kohde ei saatavilla."
 
-#: mod/admin.php:854
-msgid "Version"
-msgstr "Versio"
+#: mod/attach.php:25
+msgid "Item was not found."
+msgstr "Kohdetta ei löytynyt."
 
-#: mod/admin.php:859
-msgid "Active addons"
-msgstr "Käytössäolevat lisäosat"
+#: mod/allfriends.php:51
+msgid "No friends to display."
+msgstr "Ei näytettäviä kavereita."
 
-#: mod/admin.php:890
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr ""
+#: mod/viewcontacts.php:87
+msgid "No contacts."
+msgstr "Ei kontakteja."
 
-#: mod/admin.php:1209
-msgid "Site settings updated."
-msgstr "Sivuston asetukset päivitettiin."
+#: mod/viewcontacts.php:112 mod/nogroup.php:42 mod/contacts.php:619
+#: mod/contacts.php:959
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Näytä %s-käyttäjän profiili [%s]"
 
-#: mod/admin.php:1236 mod/settings.php:905
-msgid "No special theme for mobile devices"
-msgstr "Ei mobiiliteemaa"
+#: mod/ostatus_subscribe.php:21
+msgid "Subscribing to OStatus contacts"
+msgstr "OStatus -kontaktien tilaaminen"
 
-#: mod/admin.php:1265
-msgid "No community page"
-msgstr "Ei yhteisösivua"
+#: mod/ostatus_subscribe.php:33
+msgid "No contact provided."
+msgstr "Kontakti puuttuu."
 
-#: mod/admin.php:1266
-msgid "Public postings from users of this site"
-msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
+#: mod/ostatus_subscribe.php:40
+msgid "Couldn't fetch information for contact."
+msgstr "Kontaktin tietoja ei voitu hakea."
 
-#: mod/admin.php:1267
-msgid "Public postings from the federated network"
-msgstr "Julkiset julkaisut liittoutuneelta verkolta"
+#: mod/ostatus_subscribe.php:50
+msgid "Couldn't fetch friends for contact."
+msgstr "Ei voitu hakea kontaktin kaverit."
 
-#: mod/admin.php:1268
-msgid "Public postings from local users and the federated network"
-msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"
+#: mod/ostatus_subscribe.php:78
+msgid "success"
+msgstr "onnistui"
 
-#: mod/admin.php:1274
-msgid "Users, Global Contacts"
-msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
+#: mod/ostatus_subscribe.php:80
+msgid "failed"
+msgstr "epäonnistui"
 
-#: mod/admin.php:1275
-msgid "Users, Global Contacts/fallback"
-msgstr ""
+#: mod/api.php:85 mod/api.php:107
+msgid "Authorize application connection"
+msgstr "Vahvista sovellusyhteys"
 
-#: mod/admin.php:1279
-msgid "One month"
-msgstr "Yksi kuukausi"
+#: mod/api.php:86
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:"
 
-#: mod/admin.php:1280
-msgid "Three months"
-msgstr "Kolme kuukautta"
+#: mod/api.php:95
+msgid "Please login to continue."
+msgstr "Ole hyvä ja kirjaudu jatkaaksesi."
 
-#: mod/admin.php:1281
-msgid "Half a year"
-msgstr "Puoli vuotta"
+#: mod/api.php:109
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?"
 
-#: mod/admin.php:1282
-msgid "One year"
-msgstr "Yksi vuosi"
+#: mod/settings.php:50 mod/photos.php:126
+msgid "everybody"
+msgstr "kaikki"
 
-#: mod/admin.php:1287
-msgid "Multi user instance"
-msgstr "Monen käyttäjän instanssi"
+#: mod/settings.php:55
+msgid "Account"
+msgstr "Tili"
 
-#: mod/admin.php:1310
-msgid "Closed"
-msgstr "Suljettu"
+#: mod/settings.php:64 mod/admin.php:187
+msgid "Additional features"
+msgstr "Lisäominaisuuksia"
 
-#: mod/admin.php:1311
-msgid "Requires approval"
-msgstr "Edellyttää hyväksyntää"
+#: mod/settings.php:72
+msgid "Display"
+msgstr "Ulkonäkö"
 
-#: mod/admin.php:1312
-msgid "Open"
-msgstr "Avoin"
+#: mod/settings.php:79 mod/settings.php:842
+msgid "Social Networks"
+msgstr "Sosiaalinen media"
 
-#: mod/admin.php:1316
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
+#: mod/settings.php:86 mod/admin.php:185 mod/admin.php:1918 mod/admin.php:1978
+msgid "Addons"
+msgstr "Lisäosat"
 
-#: mod/admin.php:1317
-msgid "Force all links to use SSL"
-msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
+#: mod/settings.php:100
+msgid "Connected apps"
+msgstr "Yhdistetyt sovellukset"
 
-#: mod/admin.php:1318
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr ""
+#: mod/settings.php:107 mod/uexport.php:52
+msgid "Export personal data"
+msgstr "Vie henkilökohtaiset tiedot"
 
-#: mod/admin.php:1322
-msgid "Don't check"
-msgstr "Älä tarkista"
+#: mod/settings.php:114
+msgid "Remove account"
+msgstr "Poista tili"
 
-#: mod/admin.php:1323
-msgid "check the stable version"
-msgstr ""
+#: mod/settings.php:168
+msgid "Missing some important data!"
+msgstr "Tärkeää dataa puuttuu!"
 
-#: mod/admin.php:1324
-msgid "check the development version"
-msgstr ""
+#: mod/settings.php:170 mod/settings.php:701 mod/contacts.php:826
+msgid "Update"
+msgstr "Päivitä"
 
-#: mod/admin.php:1347
-msgid "Republish users to directory"
+#: mod/settings.php:279
+msgid "Failed to connect with email account using the settings provided."
 msgstr ""
 
-#: mod/admin.php:1348 mod/register.php:264
-msgid "Registration"
-msgstr "Rekisteröityminen"
-
-#: mod/admin.php:1349
-msgid "File upload"
-msgstr "Tiedoston lataus"
+#: mod/settings.php:284
+msgid "Email settings updated."
+msgstr "Sähköpostin asetukset päivitettiin."
 
-#: mod/admin.php:1350
-msgid "Policies"
-msgstr "Käytännöt"
+#: mod/settings.php:300
+msgid "Features updated"
+msgstr "Ominaisuudet päivitetty"
 
-#: mod/admin.php:1352
-msgid "Auto Discovered Contact Directory"
+#: mod/settings.php:372
+msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/admin.php:1353
-msgid "Performance"
-msgstr "Suoritus"
+#: mod/settings.php:389
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
 
-#: mod/admin.php:1354
-msgid "Worker"
-msgstr "Worker"
+#: mod/settings.php:400
+msgid "Wrong password."
+msgstr "Väärä salasana."
 
-#: mod/admin.php:1355
-msgid "Message Relay"
+#: mod/settings.php:496
+msgid " Please use a shorter name."
+msgstr "Käytä lyhyempää nimeä."
+
+#: mod/settings.php:499
+msgid " Name too short."
+msgstr "Nimi on liian lyhyt."
+
+#: mod/settings.php:507
+msgid "Wrong Password"
+msgstr "Väärä salasana"
+
+#: mod/settings.php:512
+msgid "Invalid email."
+msgstr "Virheellinen sähköposti."
+
+#: mod/settings.php:519
+msgid "Cannot change to that email."
 msgstr ""
 
-#: mod/admin.php:1356
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/settings.php:572
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/admin.php:1359
-msgid "Site name"
-msgstr "Sivuston nimi"
+#: mod/settings.php:575
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr ""
 
-#: mod/admin.php:1360
-msgid "Host name"
-msgstr "Palvelimen nimi"
+#: mod/settings.php:615
+msgid "Settings updated."
+msgstr "Asetukset päivitetty."
 
-#: mod/admin.php:1361
-msgid "Sender Email"
-msgstr "Lähettäjän sähköposti"
+#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
+msgid "Add application"
+msgstr "Lisää sovellus"
 
-#: mod/admin.php:1361
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr ""
+#: mod/settings.php:675 mod/settings.php:784 mod/settings.php:872
+#: mod/settings.php:961 mod/settings.php:1194 mod/admin.php:307
+#: mod/admin.php:1346 mod/admin.php:1979 mod/admin.php:2232 mod/admin.php:2306
+#: mod/admin.php:2453 mod/delegate.php:168
+msgid "Save Settings"
+msgstr "Tallenna asetukset"
 
-#: mod/admin.php:1362
-msgid "Banner/Logo"
-msgstr "Banneri/logo"
+#: mod/settings.php:677 mod/settings.php:703 mod/admin.php:490
+#: mod/admin.php:1796 mod/admin.php:1807 mod/admin.php:1820 mod/admin.php:1836
+#: mod/crepair.php:158
+msgid "Name"
+msgstr "Nimi"
 
-#: mod/admin.php:1363
-msgid "Shortcut icon"
-msgstr "Pikakuvake"
+#: mod/settings.php:678 mod/settings.php:704
+msgid "Consumer Key"
+msgstr "Kuluttajan avain"
 
-#: mod/admin.php:1363
-msgid "Link to an icon that will be used for browsers."
-msgstr ""
+#: mod/settings.php:679 mod/settings.php:705
+msgid "Consumer Secret"
+msgstr "Kuluttajasalaisuus"
 
-#: mod/admin.php:1364
-msgid "Touch icon"
-msgstr "Kosketusnäyttökuvake"
+#: mod/settings.php:680 mod/settings.php:706
+msgid "Redirect"
+msgstr "Uudelleenohjaus"
 
-#: mod/admin.php:1364
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr ""
+#: mod/settings.php:681 mod/settings.php:707
+msgid "Icon url"
+msgstr "Kuvakkeen URL-osoite"
 
-#: mod/admin.php:1365
-msgid "Additional Info"
-msgstr "Lisätietoja"
+#: mod/settings.php:692
+msgid "You can't edit this application."
+msgstr "Et voi muokata tätä sovellusta."
 
-#: mod/admin.php:1365
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/servers."
-msgstr ""
+#: mod/settings.php:735
+msgid "Connected Apps"
+msgstr "Yhdistetyt sovellukset"
 
-#: mod/admin.php:1366
-msgid "System language"
-msgstr "Järjestelmän kieli"
+#: mod/settings.php:739
+msgid "Client key starts with"
+msgstr "Asiakasavain alkaa"
 
-#: mod/admin.php:1367
-msgid "System theme"
-msgstr "Järjestelmäteema"
+#: mod/settings.php:740
+msgid "No name"
+msgstr "Ei nimeä"
 
-#: mod/admin.php:1367
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr ""
+#: mod/settings.php:741
+msgid "Remove authorization"
+msgstr "Poista lupa"
 
-#: mod/admin.php:1368
-msgid "Mobile system theme"
-msgstr "Mobiili järjestelmäteema"
+#: mod/settings.php:752
+msgid "No Addon settings configured"
+msgstr "Lisäosa-asetukset puuttuvat"
 
-#: mod/admin.php:1368
-msgid "Theme for mobile devices"
-msgstr "Mobiiliteema"
+#: mod/settings.php:761
+msgid "Addon Settings"
+msgstr "Lisäosa-asetukset"
 
-#: mod/admin.php:1369
-msgid "SSL link policy"
-msgstr "SSL-linkkikäytäntö"
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "Off"
+msgstr "Pois päältä"
 
-#: mod/admin.php:1369
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
+#: mod/settings.php:775 mod/admin.php:2442 mod/admin.php:2443
+msgid "On"
+msgstr "Päällä"
 
-#: mod/admin.php:1370
-msgid "Force SSL"
-msgstr "Pakoita SSL-yhteyden käyttöä"
+#: mod/settings.php:782
+msgid "Additional Features"
+msgstr "Lisäominaisuuksia"
 
-#: mod/admin.php:1370
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr ""
+#: mod/settings.php:805 mod/settings.php:806
+msgid "enabled"
+msgstr "käytössä"
 
-#: mod/admin.php:1371
-msgid "Hide help entry from navigation menu"
-msgstr ""
+#: mod/settings.php:805 mod/settings.php:806
+msgid "disabled"
+msgstr "pois käytöstä"
 
-#: mod/admin.php:1371
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/settings.php:805 mod/settings.php:806
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/admin.php:1372
-msgid "Single user instance"
-msgstr "Yksittäisen käyttäjän instanssi"
+#: mod/settings.php:806
+msgid "GNU Social (OStatus)"
+msgstr "GNU Social (OStatus)"
 
-#: mod/admin.php:1372
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/settings.php:837
+msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/admin.php:1373
-msgid "Maximum image size"
-msgstr "Suurin kuvakoko"
+#: mod/settings.php:847
+msgid "General Social Media Settings"
+msgstr "Yleiset some asetukset"
 
-#: mod/admin.php:1373
+#: mod/settings.php:848
+msgid "Disable Content Warning"
+msgstr "Poista sisältövaroitus käytöstä"
+
+#: mod/settings.php:848
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+"Users on networks like Mastodon or Pleroma are able to set a content warning"
+" field which collapse their post by default. This disables the automatic "
+"collapsing and sets the content warning as the post title. Doesn't affect "
+"any other content filtering you eventually set up."
 msgstr ""
 
-#: mod/admin.php:1374
-msgid "Maximum image length"
-msgstr "Suurin kuvapituus"
+#: mod/settings.php:849
+msgid "Disable intelligent shortening"
+msgstr ""
 
-#: mod/admin.php:1374
+#: mod/settings.php:849
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+"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:1375
-msgid "JPEG image quality"
-msgstr "JPEG-kuvanlaatu"
+#: mod/settings.php:850
+msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
+msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
 
-#: mod/admin.php:1375
+#: mod/settings.php:850
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"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:1377
-msgid "Register policy"
-msgstr ""
+#: mod/settings.php:851
+msgid "Default group for OStatus contacts"
+msgstr "Oletusryhmä OStatus kontakteille"
 
-#: mod/admin.php:1378
-msgid "Maximum Daily Registrations"
-msgstr "Päivittäinen rekisteröitymisraja"
+#: mod/settings.php:852
+msgid "Your legacy GNU Social account"
+msgstr "Vanha GNU social käyttäjätilisi"
 
-#: mod/admin.php:1378
+#: mod/settings.php:852
 msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr ""
-
-#: mod/admin.php:1379
-msgid "Register text"
-msgstr "Rekisteröitymisteksti"
+"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:1379
-msgid ""
-"Will be displayed prominently on the registration page. You can use BBCode "
-"here."
-msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia."
+#: mod/settings.php:855
+msgid "Repair OStatus subscriptions"
+msgstr "Korjaa OStatus tilaukset"
 
-#: mod/admin.php:1380
-msgid "Accounts abandoned after x days"
-msgstr ""
+#: mod/settings.php:859
+msgid "Email/Mailbox Setup"
+msgstr "Sähköpostin asennus"
 
-#: mod/admin.php:1380
+#: mod/settings.php:860
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/admin.php:1381
-msgid "Allowed friend domains"
-msgstr "Sallittuja kaveri-verkkotunnuksia"
+#: mod/settings.php:861
+msgid "Last successful email check:"
+msgstr "Viimeisin onnistunut sähköpostitarkistus:"
 
-#: mod/admin.php:1381
-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:863
+msgid "IMAP server name:"
+msgstr "IMAP-palvelimen nimi:"
 
-#: mod/admin.php:1382
-msgid "Allowed email domains"
-msgstr "Sallittuja sähköposti-verkkotunnuksia"
+#: mod/settings.php:864
+msgid "IMAP port:"
+msgstr "IMAP-porttti:"
 
-#: mod/admin.php:1382
-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:865
+msgid "Security:"
+msgstr "Turvallisuus:"
 
-#: mod/admin.php:1383
-msgid "No OEmbed rich content"
-msgstr ""
+#: mod/settings.php:865 mod/settings.php:870
+msgid "None"
+msgstr "Ei mitään"
 
-#: mod/admin.php:1383
-msgid ""
-"Don't show the rich content (e.g. embedded PDF), except from the domains "
-"listed below."
-msgstr ""
+#: mod/settings.php:866
+msgid "Email login name:"
+msgstr "Sähköpostitilin käyttäjätunnus:"
 
-#: mod/admin.php:1384
-msgid "Allowed OEmbed domains"
-msgstr "Sallittuja OEmbed -verkkotunnuksia"
+#: mod/settings.php:867
+msgid "Email password:"
+msgstr "Sähköpostin salasana:"
 
-#: mod/admin.php:1384
-msgid ""
-"Comma separated list of domains which oembed content is allowed to be "
-"displayed. Wildcards are accepted."
-msgstr ""
+#: mod/settings.php:868
+msgid "Reply-to address:"
+msgstr "Vastausosoite:"
 
-#: mod/admin.php:1385
-msgid "Block public"
-msgstr "Estä vierailijat"
+#: mod/settings.php:869
+msgid "Send public posts to all email contacts:"
+msgstr "Lähetä julkiset julkaisut kaikille kontakteille:"
 
-#: mod/admin.php:1385
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/settings.php:870
+msgid "Action after import:"
 msgstr ""
 
-#: mod/admin.php:1386
-msgid "Force publish"
-msgstr ""
+#: mod/settings.php:870
+msgid "Move to folder"
+msgstr "Siirrä kansioon"
 
-#: mod/admin.php:1386
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
+#: mod/settings.php:871
+msgid "Move to folder:"
+msgstr "Siirrä kansioon:"
 
-#: mod/admin.php:1387
-msgid "Global directory URL"
-msgstr "Maailmanlaajuisen hakemiston URL-osoite"
+#: mod/settings.php:905 mod/admin.php:1236
+msgid "No special theme for mobile devices"
+msgstr "Ei mobiiliteemaa"
 
-#: mod/admin.php:1387
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr ""
+#: mod/settings.php:914
+#, php-format
+msgid "%s - (Unsupported)"
+msgstr "%s - (Ei tueta)"
 
-#: mod/admin.php:1388
-msgid "Private posts by default for new users"
-msgstr ""
+#: mod/settings.php:916
+#, php-format
+msgid "%s - (Experimental)"
+msgstr "%s - (Kokeellinen)"
 
-#: mod/admin.php:1388
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
+#: mod/settings.php:959
+msgid "Display Settings"
+msgstr "Näyttöasetukset"
 
-#: mod/admin.php:1389
-msgid "Don't include post content in email notifications"
-msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
+#: mod/settings.php:965 mod/settings.php:989
+msgid "Display Theme:"
+msgstr "Käyttöliittymän teema:"
 
-#: mod/admin.php:1389
-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:966
+msgid "Mobile Theme:"
+msgstr "Mobiiliteema:"
 
-#: mod/admin.php:1390
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/settings.php:967
+msgid "Suppress warning of insecure networks"
 msgstr ""
 
-#: mod/admin.php:1390
+#: mod/settings.php:967
 msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
 msgstr ""
 
-#: mod/admin.php:1391
-msgid "Don't embed private images in posts"
-msgstr "Älä upota yksityisiä kuvia julkaisuissa"
+#: mod/settings.php:968
+msgid "Update browser every xx seconds"
+msgstr "Päivitä selain xx sekunnin välein"
 
-#: mod/admin.php:1391
-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/settings.php:968
+msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/admin.php:1392
-msgid "Allow Users to set remote_self"
+#: mod/settings.php:969
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/admin.php:1392
-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:969 mod/settings.php:970
+msgid "Maximum of 100 items"
+msgstr "Enintään 100 kohdetta"
 
-#: mod/admin.php:1393
-msgid "Block multiple registrations"
+#: mod/settings.php:970
+msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/admin.php:1393
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
+#: mod/settings.php:971
+msgid "Don't show emoticons"
+msgstr "Piilota hymiöt"
 
-#: mod/admin.php:1394
-msgid "OpenID support"
-msgstr "OpenID-tuki"
+#: mod/settings.php:972
+msgid "Calendar"
+msgstr "Kalenteri"
 
-#: mod/admin.php:1394
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
+#: mod/settings.php:973
+msgid "Beginning of week:"
+msgstr "Viikon alku:"
 
-#: mod/admin.php:1395
-msgid "Fullname check"
-msgstr "Koko nimi tarkistus"
+#: mod/settings.php:974
+msgid "Don't show notices"
+msgstr ""
 
-#: mod/admin.php:1395
+#: mod/settings.php:975
+msgid "Infinite scroll"
+msgstr "Loputon selaaminen"
+
+#: mod/settings.php:976
+msgid "Automatic updates only at the top of the network page"
+msgstr ""
+
+#: mod/settings.php:976
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+"When disabled, the network page is updated all the time, which could be "
+"confusing while reading."
 msgstr ""
 
-#: mod/admin.php:1396
-msgid "Community pages for visitors"
-msgstr "Yhteisösivu vieraille"
+#: mod/settings.php:977
+msgid "Bandwith Saver Mode"
+msgstr "Kaistanleveyssäästömoodi"
 
-#: mod/admin.php:1396
+#: mod/settings.php:977
 msgid ""
-"Which community pages should be available for visitors. Local users always "
-"see both pages."
+"When enabled, embedded content is not displayed on automatic updates, they "
+"only show on page reload."
 msgstr ""
 
-#: mod/admin.php:1397
-msgid "Posts per user on community page"
+#: mod/settings.php:978
+msgid "Smart Threading"
 msgstr ""
 
-#: mod/admin.php:1397
+#: mod/settings.php:978
 msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
+"When enabled, suppress extraneous thread indentation while keeping it where "
+"it matters. Only works if threading is available and enabled."
 msgstr ""
 
-#: mod/admin.php:1398
-msgid "Enable OStatus support"
-msgstr "Salli OStatus-tuki"
+#: mod/settings.php:980
+msgid "General Theme Settings"
+msgstr "Yleiset teeman asetukset"
 
-#: mod/admin.php:1398
-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:981
+msgid "Custom Theme Settings"
+msgstr "Mukautetut teema-asetukset"
 
-#: mod/admin.php:1399
-msgid "Only import OStatus threads from our contacts"
-msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
+#: mod/settings.php:982
+msgid "Content Settings"
+msgstr "Sisältöasetukset"
 
-#: mod/admin.php:1399
-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:983 view/theme/quattro/config.php:75
+#: view/theme/frio/config.php:115 view/theme/vier/config.php:121
+#: view/theme/duepuntozero/config.php:73
+msgid "Theme settings"
+msgstr "Teeman asetukset"
 
-#: mod/admin.php:1400
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön."
+#: mod/settings.php:1002
+msgid "Unable to find your profile. Please contact your admin."
+msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."
 
-#: mod/admin.php:1402
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon."
+#: mod/settings.php:1044
+msgid "Account Types"
+msgstr "Tilityypit"
 
-#: mod/admin.php:1403
-msgid "Enable Diaspora support"
-msgstr "Salli Diaspora-tuki"
+#: mod/settings.php:1045
+msgid "Personal Page Subtypes"
+msgstr "Henkilökohtaisen sivun alatyypit"
 
-#: mod/admin.php:1403
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Ota käyttöön Diaspora-yhteensopivuus"
+#: mod/settings.php:1046
+msgid "Community Forum Subtypes"
+msgstr "Yhteisöfoorumin alatyypit"
 
-#: mod/admin.php:1404
-msgid "Only allow Friendica contacts"
-msgstr "Salli ainoastaan Friendica -kontakteja"
+#: mod/settings.php:1053 mod/admin.php:1746
+msgid "Personal Page"
+msgstr "Henkilökohtainen sivu"
 
-#: mod/admin.php:1404
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä."
+#: mod/settings.php:1054
+msgid "Account for a personal profile."
+msgstr "Henkilökohtaisen profiilin käyttäjätili."
 
-#: mod/admin.php:1405
-msgid "Verify SSL"
-msgstr "Vahvista SSL"
+#: mod/settings.php:1057 mod/admin.php:1747
+msgid "Organisation Page"
+msgstr "Järjestön sivu"
 
-#: mod/admin.php:1405
+#: mod/settings.php:1058
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
+"Account for an organisation that automatically approves contact requests as "
+"\"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1406
-msgid "Proxy user"
-msgstr "Välityspalvelimen käyttäjä"
+#: mod/settings.php:1061 mod/admin.php:1748
+msgid "News Page"
+msgstr "Uutissivu"
 
-#: mod/admin.php:1407
-msgid "Proxy URL"
-msgstr "Välityspalvelimen osoite"
+#: mod/settings.php:1062
+msgid ""
+"Account for a news reflector that automatically approves contact requests as"
+" \"Followers\"."
+msgstr ""
 
-#: mod/admin.php:1408
-msgid "Network timeout"
-msgstr "Verkon aikakatkaisu"
+#: mod/settings.php:1065 mod/admin.php:1749
+msgid "Community Forum"
+msgstr "Yhteisöfoorumi"
 
-#: mod/admin.php:1408
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/settings.php:1066
+msgid "Account for community discussions."
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Maximum Load Average"
-msgstr ""
+#: mod/settings.php:1069 mod/admin.php:1739
+msgid "Normal Account Page"
+msgstr "Tavallinen käyttäjätili"
 
-#: mod/admin.php:1409
+#: mod/settings.php:1070
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"Account for a regular personal profile that requires manual approval of "
+"\"Friends\" and \"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Maximum Load Average (Frontend)"
-msgstr ""
+#: mod/settings.php:1073 mod/admin.php:1740
+msgid "Soapbox Page"
+msgstr "Saarnatuoli sivu"
 
-#: mod/admin.php:1410
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/settings.php:1074
+msgid ""
+"Account for a public profile that automatically approves contact requests as"
+" \"Followers\"."
 msgstr ""
 
-#: mod/admin.php:1411
-msgid "Minimal Memory"
-msgstr ""
+#: mod/settings.php:1077 mod/admin.php:1741
+msgid "Public Forum"
+msgstr "Julkinen foorumi"
 
-#: mod/admin.php:1411
-msgid ""
-"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
-"default 0 (deactivated)."
-msgstr ""
+#: mod/settings.php:1078
+msgid "Automatically approves all contact requests."
+msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
 
-#: mod/admin.php:1412
-msgid "Maximum table size for optimization"
+#: mod/settings.php:1081 mod/admin.php:1742
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/admin.php:1412
+#: mod/settings.php:1082
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+"Account for a popular profile that automatically approves contact requests "
+"as \"Friends\"."
 msgstr ""
 
-#: mod/admin.php:1413
-msgid "Minimum level of fragmentation"
-msgstr ""
+#: mod/settings.php:1085
+msgid "Private Forum [Experimental]"
+msgstr "Yksityisfoorumi [kokeellinen]"
 
-#: mod/admin.php:1413
-msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+#: mod/settings.php:1086
+msgid "Requires manual approval of contact requests."
 msgstr ""
 
-#: mod/admin.php:1415
-msgid "Periodical check of global contacts"
+#: mod/settings.php:1097
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: mod/settings.php:1097
+msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/admin.php:1415
+#: mod/settings.php:1105
+msgid "Publish your default profile in your local site directory?"
+msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
+
+#: mod/settings.php:1105
+#, php-format
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+"Your profile will be published in the global friendica directories (e.g. <a "
+"href=\"%s\">%s</a>). Your profile will be visible in public."
 msgstr ""
 
-#: mod/admin.php:1416
-msgid "Days between requery"
-msgstr ""
+#: mod/settings.php:1111
+msgid "Publish your default profile in the global social directory?"
+msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
 
-#: mod/admin.php:1416
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/settings.php:1111
+#, php-format
+msgid ""
+"Your profile will be published in this node's <a href=\"%s\">local "
+"directory</a>. Your profile details may be publicly visible depending on the"
+" system settings."
 msgstr ""
 
-#: mod/admin.php:1417
-msgid "Discover contacts from other servers"
+#: mod/settings.php:1118
+msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/admin.php:1417
+#: mod/settings.php:1118
 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'."
+"Your contact list won't be shown in your default profile page. You can "
+"decide to show your contact list separately for each additional profile you "
+"create"
 msgstr ""
 
-#: mod/admin.php:1418
-msgid "Timeframe for fetching global contacts"
+#: mod/settings.php:1122
+msgid "Hide your profile details from anonymous viewers?"
 msgstr ""
 
-#: mod/admin.php:1418
+#: mod/settings.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."
+"Anonymous visitors will only see your profile picture, your display name and"
+" the nickname you are using on your profile page. Disables posting public "
+"messages to Diaspora and other networks."
 msgstr ""
 
-#: mod/admin.php:1419
-msgid "Search the local directory"
-msgstr "Paikallisluettelohaku"
+#: mod/settings.php:1126
+msgid "Allow friends to post to your profile page?"
+msgstr "Anna kavereiden julkaista profiilisivullasi?"
 
-#: mod/admin.php:1419
+#: mod/settings.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."
+"Your contacts may write posts on your profile wall. These posts will be "
+"distributed to your contacts"
 msgstr ""
 
-#: mod/admin.php:1421
-msgid "Publish server information"
-msgstr "Julkaise palvelintiedot"
+#: mod/settings.php:1130
+msgid "Allow friends to tag your posts?"
+msgstr ""
 
-#: mod/admin.php:1421
-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/settings.php:1130
+msgid "Your contacts can add additional tags to your posts."
 msgstr ""
 
-#: mod/admin.php:1423
-msgid "Check upstream version"
+#: mod/settings.php:1134
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/admin.php:1423
+#: mod/settings.php:1134
 msgid ""
-"Enables checking for new Friendica versions at github. If there is a new "
-"version, you will be informed in the admin panel overview."
+"If you like, Friendica may suggest new members to add you as a contact."
 msgstr ""
 
-#: mod/admin.php:1424
-msgid "Suppress Tags"
-msgstr "Piilota tunnisteet"
+#: mod/settings.php:1138
+msgid "Permit unknown people to send you private mail?"
+msgstr "Salli yksityisviesit tuntemattomilta?"
 
-#: mod/admin.php:1424
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/settings.php:1138
+msgid ""
+"Friendica network users may send you private messages even if they are not "
+"in your contact list."
 msgstr ""
 
-#: mod/admin.php:1425
-msgid "Path to item cache"
-msgstr ""
+#: mod/settings.php:1142
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profiili <strong>ei ole julkaistu</strong>."
 
-#: mod/admin.php:1425
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/settings.php:1148
+#, php-format
+msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
+msgstr "Identiteettisi osoite on <strong>'%s'</strong> tai '%s'."
+
+#: mod/settings.php:1155
+msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/admin.php:1426
-msgid "Cache duration in seconds"
+#: mod/settings.php:1155
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."
+
+#: mod/settings.php:1156
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/admin.php:1426
-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/settings.php:1157
+msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/admin.php:1427
-msgid "Maximum numbers of comments per post"
-msgstr "Julkaisun kommentiraja"
+#: mod/settings.php:1158
+msgid "Expire posts:"
+msgstr "Julkaisujen vanheneminen:"
 
-#: mod/admin.php:1427
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/settings.php:1159
+msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/admin.php:1428
-msgid "Temp path"
-msgstr ""
+#: mod/settings.php:1160
+msgid "Expire starred posts:"
+msgstr "Tähtimerkityt julkaisut vanhenee:"
 
-#: mod/admin.php:1428
-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:1161
+msgid "Expire photos:"
+msgstr "Kuvat vanhenee:"
 
-#: mod/admin.php:1429
-msgid "Base path to installation"
+#: mod/settings.php:1162
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/admin.php:1429
-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:1192
+msgid "Account Settings"
+msgstr "Tiliasetukset"
 
-#: mod/admin.php:1430
-msgid "Disable picture proxy"
-msgstr ""
+#: mod/settings.php:1200
+msgid "Password Settings"
+msgstr "Salasana-asetukset"
 
-#: mod/admin.php:1430
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+#: mod/settings.php:1201 mod/register.php:273
+msgid "New Password:"
+msgstr "Uusi salasana:"
 
-#: mod/admin.php:1431
-msgid "Only search in tags"
-msgstr ""
+#: mod/settings.php:1202 mod/register.php:274
+msgid "Confirm:"
+msgstr "Vahvista:"
 
-#: mod/admin.php:1431
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: mod/settings.php:1202
+msgid "Leave password fields blank unless changing"
+msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
 
-#: mod/admin.php:1433
-msgid "New base url"
-msgstr ""
+#: mod/settings.php:1203
+msgid "Current Password:"
+msgstr "Nykyinen salasana:"
 
-#: mod/admin.php:1433
-msgid ""
-"Change base url for this server. Sends relocate message to all Friendica and"
-" Diaspora* contacts of all users."
+#: mod/settings.php:1203 mod/settings.php:1204
+msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/admin.php:1435
-msgid "RINO Encryption"
-msgstr "RINO-salaus"
-
-#: mod/admin.php:1435
-msgid "Encryption layer between nodes."
-msgstr "Salauskerros solmujen välillä."
+#: mod/settings.php:1204
+msgid "Password:"
+msgstr "Salasana:"
 
-#: mod/admin.php:1435
-msgid "Enabled"
-msgstr "Käytössä"
+#: mod/settings.php:1208
+msgid "Basic Settings"
+msgstr "Perusasetukset"
 
-#: mod/admin.php:1437
-msgid "Maximum number of parallel workers"
-msgstr ""
+#: mod/settings.php:1210
+msgid "Email Address:"
+msgstr "Sähköpostiosoite:"
 
-#: mod/admin.php:1437
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr ""
+#: mod/settings.php:1211
+msgid "Your Timezone:"
+msgstr "Aikavyöhyke:"
 
-#: mod/admin.php:1438
-msgid "Don't use 'proc_open' with the worker"
-msgstr ""
+#: mod/settings.php:1212
+msgid "Your Language:"
+msgstr "Kieli:"
 
-#: mod/admin.php:1438
+#: mod/settings.php:1212
 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 worker calls in your crontab."
+"Set the language we use to show you friendica interface and to send you "
+"emails"
 msgstr ""
 
-#: mod/admin.php:1439
-msgid "Enable fastlane"
-msgstr "Käytä fastlane"
+#: mod/settings.php:1213
+msgid "Default Post Location:"
+msgstr "Julkaisun oletussijainti:"
 
-#: mod/admin.php:1439
-msgid ""
-"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:1214
+msgid "Use Browser Location:"
+msgstr "Käytä selaimen sijainti:"
 
-#: mod/admin.php:1440
-msgid "Enable frontend worker"
-msgstr ""
+#: mod/settings.php:1217
+msgid "Security and Privacy Settings"
+msgstr "Turvallisuus ja tietosuoja-asetukset"
 
-#: mod/admin.php:1440
-#, php-format
-msgid ""
-"When enabled the Worker process is triggered when backend access is "
-"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
-"might want to call %s/worker on a regular basis via an external cron job. "
-"You should only enable this option if you cannot utilize cron/scheduled jobs"
-" on your server."
-msgstr ""
+#: mod/settings.php:1219
+msgid "Maximum Friend Requests/Day:"
+msgstr "Kaveripyyntöraja päivässä:"
 
-#: mod/admin.php:1442
-msgid "Subscribe to relay"
-msgstr ""
+#: mod/settings.php:1219 mod/settings.php:1248
+msgid "(to prevent spam abuse)"
+msgstr "(roskapostin estämiseksi)"
 
-#: mod/admin.php:1442
-msgid ""
-"Enables the receiving of public posts from the relay. They will be included "
-"in the search, subscribed tags and on the global community page."
-msgstr ""
+#: mod/settings.php:1220
+msgid "Default Post Permissions"
+msgstr "Julkaisun oletuskäyttöoikeudet:"
 
-#: mod/admin.php:1443
-msgid "Relay server"
-msgstr ""
+#: mod/settings.php:1221
+msgid "(click to open/close)"
+msgstr "(klikkaa auki/kiinni)"
 
-#: mod/admin.php:1443
-msgid ""
-"Address of the relay server where public posts should be send to. For "
-"example https://relay.diasp.org"
-msgstr ""
+#: mod/settings.php:1229 mod/photos.php:1106 mod/photos.php:1449
+msgid "Show to Groups"
+msgstr "Näytä ryhmille"
 
-#: mod/admin.php:1444
-msgid "Direct relay transfer"
-msgstr ""
+#: mod/settings.php:1230 mod/photos.php:1107 mod/photos.php:1450
+msgid "Show to Contacts"
+msgstr "Näytä kontakteille"
 
-#: mod/admin.php:1444
-msgid ""
-"Enables the direct transfer to other servers without using the relay servers"
+#: mod/settings.php:1231
+msgid "Default Private Post"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid "Relay scope"
+#: mod/settings.php:1232
+msgid "Default Public Post"
 msgstr ""
 
-#: mod/admin.php:1445
-msgid ""
-"Can be 'all' or 'tags'. 'all' means that every public post should be "
-"received. 'tags' means that only posts with selected tags should be "
-"received."
-msgstr ""
+#: mod/settings.php:1236
+msgid "Default Permissions for New Posts"
+msgstr "Uuden julkaisun oletuskäyttöoikeudet"
 
-#: mod/admin.php:1445
-msgid "all"
-msgstr "kaikki"
+#: mod/settings.php:1248
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:"
 
-#: mod/admin.php:1445
-msgid "tags"
-msgstr "tunnisteet"
+#: mod/settings.php:1251
+msgid "Notification Settings"
+msgstr "Huomautusasetukset"
 
-#: mod/admin.php:1446
-msgid "Server tags"
-msgstr "palvelintunnisteet"
+#: mod/settings.php:1252
+msgid "By default post a status message when:"
+msgstr "Oletuksena julkaise tilapäivitys kun:"
 
-#: mod/admin.php:1446
-msgid "Comma separated list of tags for the 'tags' subscription."
-msgstr ""
+#: mod/settings.php:1253
+msgid "accepting a friend request"
+msgstr "hyväksyt kaveripyynnön"
 
-#: mod/admin.php:1447
-msgid "Allow user tags"
-msgstr "Salli käyttäjien tunnisteet"
+#: mod/settings.php:1254
+msgid "joining a forum/community"
+msgstr "liityt foorumiin/yhteisöön"
 
-#: mod/admin.php:1447
-msgid ""
-"If enabled, the tags from the saved searches will used for the 'tags' "
-"subscription in addition to the 'relay_server_tags'."
-msgstr ""
+#: mod/settings.php:1255
+msgid "making an <em>interesting</em> profile change"
+msgstr "muokkaat <em>kiinnostavalla tavalla</em> profiiliasi"
 
-#: mod/admin.php:1475
-msgid "Update has been marked successful"
-msgstr ""
+#: mod/settings.php:1256
+msgid "Send a notification email when:"
+msgstr "Lähetä sähköposti-ilmoitus kun:"
 
-#: mod/admin.php:1482
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Tietokannan rakenteen %s-päivitys onnistui."
+#: mod/settings.php:1257
+msgid "You receive an introduction"
+msgstr "Vastaanotat kaverikutsun"
 
-#: mod/admin.php:1485
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s"
+#: mod/settings.php:1258
+msgid "Your introductions are confirmed"
+msgstr "Kaverikutsusi on hyväksytty"
 
-#: mod/admin.php:1498
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+#: mod/settings.php:1259
+msgid "Someone writes on your profile wall"
+msgstr "Joku kirjoittaa profiiliseinällesi"
 
-#: mod/admin.php:1500
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "%s-päivitys onnistui."
+#: mod/settings.php:1260
+msgid "Someone writes a followup comment"
+msgstr "Joku vastaa kommenttiin"
 
-#: mod/admin.php:1503
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr ""
+#: mod/settings.php:1261
+msgid "You receive a private message"
+msgstr "Vastaanotat yksityisviestin"
 
-#: mod/admin.php:1506
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: mod/settings.php:1262
+msgid "You receive a friend suggestion"
+msgstr "Vastaanotat kaveriehdotuksen"
 
-#: mod/admin.php:1526
-msgid "No failed updates."
-msgstr "Ei epäonnistuineita päivityksiä."
+#: mod/settings.php:1263
+msgid "You are tagged in a post"
+msgstr "Sinut on merkitty julkaisuun"
 
-#: mod/admin.php:1527
-msgid "Check database structure"
-msgstr "Tarkista tietokannan rakenne"
+#: mod/settings.php:1264
+msgid "You are poked/prodded/etc. in a post"
+msgstr "sinut on tökätty tms. julkaisussa"
 
-#: mod/admin.php:1532
-msgid "Failed Updates"
-msgstr "Epäonnistuineita päivityksiä"
+#: mod/settings.php:1266
+msgid "Activate desktop notifications"
+msgstr "Ota työpöytäilmoitukset käyttöön"
 
-#: mod/admin.php:1533
+#: mod/settings.php:1266
+msgid "Show desktop popup on new notifications"
+msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa"
+
+#: mod/settings.php:1268
+msgid "Text-only notification emails"
+msgstr "Ilmoitussähköposteissa vain tekstiä"
+
+#: mod/settings.php:1270
+msgid "Send text only notification emails, without the html part"
+msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"
+
+#: mod/settings.php:1272
+msgid "Show detailled notifications"
+msgstr "Näytä yksityiskohtaiset ilmoitukset"
+
+#: mod/settings.php:1274
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+"Per default, notifications are condensed to a single notification per item. "
+"When enabled every notification is displayed."
 msgstr ""
 
-#: mod/admin.php:1534
-msgid "Mark success (if update was manually applied)"
-msgstr ""
+#: mod/settings.php:1276
+msgid "Advanced Account/Page Type Settings"
+msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
 
-#: mod/admin.php:1535
-msgid "Attempt to execute this update step automatically"
+#: mod/settings.php:1277
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/admin.php:1574
-#, 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:1280
+msgid "Relocate"
+msgstr "Uudelleensijoitus"
 
-#: mod/admin.php:1577
-#, php-format
+#: mod/settings.php:1281
 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\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
+"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/admin.php:1611 src/Model/User.php:663
-#, php-format
-msgid "Registration details for %s"
+#: mod/settings.php:1282
+msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: mod/admin.php:1621
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s käyttäjä estetty / poistettu estolistalta"
-msgstr[1] "%s käyttäjää estetty / poistettu estolistalta"
+#: mod/regmod.php:68
+msgid "Account approved."
+msgstr "Tili hyväksytty."
 
-#: mod/admin.php:1627
+#: mod/regmod.php:93
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s käyttäjä poistettu"
-msgstr[1] "%s käyttäjää poistettu"
+msgid "Registration revoked for %s"
+msgstr ""
 
-#: mod/admin.php:1674
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Käyttäjä '%s' poistettu"
+#: mod/regmod.php:102
+msgid "Please login."
+msgstr "Ole hyvä ja kirjaudu."
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Käyttäjä '%s' poistettu estolistalta"
+#: mod/group.php:36
+msgid "Group created."
+msgstr "Ryhmä luotu."
 
-#: mod/admin.php:1682
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Käyttäjä '%s' estetty"
+#: mod/group.php:42
+msgid "Could not create group."
+msgstr "Ryhmää ei voitu luoda."
 
-#: mod/admin.php:1781 mod/admin.php:1793 mod/admin.php:1806 mod/admin.php:1824
-#: src/Content/ContactSelector.php:82
-msgid "Email"
-msgstr "Sähköposti"
+#: mod/group.php:56 mod/group.php:157
+msgid "Group not found."
+msgstr "Ryhmää ei löytynyt."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Register date"
-msgstr "Rekisteripäivämäärä"
+#: mod/group.php:70
+msgid "Group name changed."
+msgstr "Ryhmän nimi muutettu."
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last login"
-msgstr "Viimeisin kirjautuminen"
+#: mod/group.php:83 mod/profperm.php:28 index.php:443
+msgid "Permission denied"
+msgstr "Käyttöoikeus evätty"
 
-#: mod/admin.php:1781 mod/admin.php:1806
-msgid "Last item"
-msgstr "Viimeisin kohde"
+#: mod/group.php:97
+msgid "Save Group"
+msgstr "Tallenna ryhmä"
 
-#: mod/admin.php:1781 mod/settings.php:55
-msgid "Account"
-msgstr "Tili"
+#: mod/group.php:102
+msgid "Create a group of contacts/friends."
+msgstr "Luo kontakti/kaveriryhmä"
 
-#: mod/admin.php:1789
-msgid "Add User"
-msgstr "Lisää käyttäjä"
+#: mod/group.php:127
+msgid "Group removed."
+msgstr "Ryhmä poistettu."
 
-#: mod/admin.php:1791
-msgid "User registrations waiting for confirm"
-msgstr ""
+#: mod/group.php:129
+msgid "Unable to remove group."
+msgstr "Ryhmää ei voida poistaa."
 
-#: mod/admin.php:1792
-msgid "User waiting for permanent deletion"
-msgstr ""
+#: mod/group.php:192
+msgid "Delete Group"
+msgstr "Poista ryhmä"
 
-#: mod/admin.php:1793
-msgid "Request date"
-msgstr "Pyynnön päivämäärä"
+#: mod/group.php:198
+msgid "Group Editor"
+msgstr "Ryhmien muokkausta"
 
-#: mod/admin.php:1794
-msgid "No registrations."
-msgstr "Ei rekisteröintejä."
+#: mod/group.php:203
+msgid "Edit Group Name"
+msgstr "Muokkaa ryhmän nimeä"
 
-#: mod/admin.php:1795
-msgid "Note from the user"
-msgstr ""
+#: mod/group.php:213
+msgid "Members"
+msgstr "Jäsenet"
 
-#: mod/admin.php:1797
-msgid "Deny"
-msgstr "Kieltäydy"
+#: mod/group.php:215 mod/contacts.php:719
+msgid "All Contacts"
+msgstr "Kaikki yhteystiedot"
 
-#: mod/admin.php:1801
-msgid "Site admin"
-msgstr "Sivuston ylläpito"
+#: mod/group.php:229
+msgid "Remove Contact"
+msgstr "Poista kontakti"
 
-#: mod/admin.php:1802
-msgid "Account expired"
-msgstr "Tili vanhentunut"
+#: mod/group.php:253
+msgid "Add Contact"
+msgstr "Lisää kontakti"
 
-#: mod/admin.php:1805
-msgid "New User"
-msgstr "Uusi käyttäjä"
+#: mod/group.php:265 mod/profperm.php:115
+msgid "Click on a contact to add or remove."
+msgstr "Valitse kontakti, jota haluat poistaa tai lisätä."
 
-#: mod/admin.php:1806
-msgid "Deleted since"
-msgstr "Poistettu"
+#: mod/fbrowser.php:131
+msgid "Files"
+msgstr "Tiedostot"
 
-#: mod/admin.php:1811
-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/admin.php:106
+msgid "Theme settings updated."
+msgstr "Teeman asetukset päivitetty."
 
-#: mod/admin.php:1812
-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/admin.php:180
+msgid "Overview"
+msgstr "Yleiskatsaus"
 
-#: mod/admin.php:1822
-msgid "Name of the new user."
-msgstr "Uuden käyttäjän nimi."
+#: mod/admin.php:181 mod/admin.php:718
+msgid "Federation Statistics"
+msgstr "Liiton tilastotiedot"
 
-#: mod/admin.php:1823
-msgid "Nickname"
-msgstr "Lempinimi"
+#: mod/admin.php:182
+msgid "Configuration"
+msgstr "Kokoonpano"
 
-#: mod/admin.php:1823
-msgid "Nickname of the new user."
-msgstr "Uuden käyttäjän lempinimi"
+#: mod/admin.php:183 mod/admin.php:1345
+msgid "Site"
+msgstr "Sivusto"
 
-#: mod/admin.php:1824
-msgid "Email address of the new user."
-msgstr "Uuden käyttäjän sähköpostiosoite."
+#: mod/admin.php:184 mod/admin.php:1273 mod/admin.php:1802 mod/admin.php:1818
+msgid "Users"
+msgstr "Käyttäjät"
 
-#: mod/admin.php:1866
-#, php-format
-msgid "Addon %s disabled."
-msgstr "Lisäosa %s poistettu käytöstä."
+#: mod/admin.php:186 mod/admin.php:2187 mod/admin.php:2231
+msgid "Themes"
+msgstr "Teemat"
 
-#: mod/admin.php:1870
-#, php-format
-msgid "Addon %s enabled."
-msgstr "Lisäosa %s käytössä."
+#: mod/admin.php:189
+msgid "Database"
+msgstr "Tietokanta"
 
-#: mod/admin.php:1880 mod/admin.php:2129
-msgid "Disable"
-msgstr "Poista käytöstä"
+#: mod/admin.php:190
+msgid "DB updates"
+msgstr "Tietokannan päivitykset"
 
-#: mod/admin.php:1883 mod/admin.php:2132
-msgid "Enable"
-msgstr "Ota käyttöön"
+#: mod/admin.php:191 mod/admin.php:753
+msgid "Inspect Queue"
+msgstr "Tarkista jono"
 
-#: mod/admin.php:1905 mod/admin.php:2174
-msgid "Toggle"
-msgstr "Vaihda"
+#: mod/admin.php:192
+msgid "Tools"
+msgstr "Työkalut"
 
-#: mod/admin.php:1913 mod/admin.php:2183
-msgid "Author: "
-msgstr "Tekijä"
+#: mod/admin.php:193
+msgid "Contact Blocklist"
+msgstr "Kontaktien estolista"
 
-#: mod/admin.php:1914 mod/admin.php:2184
-msgid "Maintainer: "
-msgstr "Ylläpitäjä:"
+#: mod/admin.php:194 mod/admin.php:362
+msgid "Server Blocklist"
+msgstr "Palvelimien estolista"
 
-#: mod/admin.php:1966
-msgid "Reload active addons"
-msgstr ""
+#: mod/admin.php:195 mod/admin.php:521
+msgid "Delete Item"
+msgstr "Poista kohde"
 
-#: mod/admin.php:1971
-#, php-format
-msgid ""
-"There are currently no addons available on your node. You can find the "
-"official addon repository at %1$s and might find other interesting addons in"
-" the open addon registry at %2$s"
-msgstr ""
+#: mod/admin.php:196 mod/admin.php:197 mod/admin.php:2305
+msgid "Logs"
+msgstr "Lokit"
 
-#: mod/admin.php:2091
-msgid "No themes found."
-msgstr "Teemoja ei löytynyt."
+#: mod/admin.php:198 mod/admin.php:2372
+msgid "View Logs"
+msgstr "Katso lokit"
 
-#: mod/admin.php:2165
-msgid "Screenshot"
-msgstr "Kuvakaappaus"
+#: mod/admin.php:200
+msgid "Diagnostics"
+msgstr "Diagnostiikka"
 
-#: mod/admin.php:2219
-msgid "Reload active themes"
-msgstr "Lataa aktiiviset teemat uudelleen"
+#: mod/admin.php:201
+msgid "PHP Info"
+msgstr "PHP tietoja"
 
-#: mod/admin.php:2224
-#, php-format
-msgid "No themes found on the system. They should be placed in %1$s"
+#: mod/admin.php:202
+msgid "probe address"
 msgstr ""
 
-#: mod/admin.php:2225
-msgid "[Experimental]"
-msgstr "[Kokeellinen]"
-
-#: mod/admin.php:2226
-msgid "[Unsupported]"
-msgstr "[Ei tueta]"
-
-#: mod/admin.php:2250
-msgid "Log settings updated."
-msgstr "Lokiasetukset päivitetty."
-
-#: mod/admin.php:2282
-msgid "PHP log currently enabled."
-msgstr "PHP-loki käytössä"
+#: mod/admin.php:203
+msgid "check webfinger"
+msgstr "Tarkista webfinger"
 
-#: mod/admin.php:2284
-msgid "PHP log currently disabled."
-msgstr "PHP-loki pois käytöstä"
+#: mod/admin.php:223
+msgid "Addon Features"
+msgstr "Lisäosaominaisuudet"
 
-#: mod/admin.php:2293
-msgid "Clear"
-msgstr "Tyhjennä"
+#: mod/admin.php:224
+msgid "User registrations waiting for confirmation"
+msgstr "Käyttäjärekisteröinnit odottavat hyväksyntää"
 
-#: mod/admin.php:2297
-msgid "Enable Debugging"
-msgstr "Ota virheenkorjaustila käyttöön"
+#: mod/admin.php:301 mod/admin.php:361 mod/admin.php:478 mod/admin.php:520
+#: mod/admin.php:717 mod/admin.php:752 mod/admin.php:848 mod/admin.php:1344
+#: mod/admin.php:1801 mod/admin.php:1917 mod/admin.php:1977 mod/admin.php:2186
+#: mod/admin.php:2230 mod/admin.php:2304 mod/admin.php:2371
+msgid "Administration"
+msgstr "Ylläpito"
 
-#: mod/admin.php:2298
-msgid "Log file"
-msgstr "Lokitiedosto"
+#: mod/admin.php:303
+msgid "Display Terms of Service"
+msgstr "Näytä käyttöehdot"
 
-#: mod/admin.php:2298
+#: mod/admin.php:303
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+"Enable the Terms of Service page. If this is enabled a link to the terms "
+"will be added to the registration form and the general information page."
 msgstr ""
 
-#: mod/admin.php:2299
-msgid "Log level"
-msgstr "Lokitaso"
-
-#: mod/admin.php:2301
-msgid "PHP logging"
-msgstr "PHP-loki"
-
-#: mod/admin.php:2302
-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/admin.php:304
+msgid "Display Privacy Statement"
+msgstr "Näytä tietosuojalausunto"
 
-#: mod/admin.php:2333
+#: mod/admin.php:304
 #, php-format
 msgid ""
-"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
-"if file %1$s exist and is readable."
+"Show some informations regarding the needed information to operate the node "
+"according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."
 msgstr ""
 
-#: mod/admin.php:2337
-#, php-format
+#: mod/admin.php:305
+msgid "The Terms of Service"
+msgstr "Käyttöehdot"
+
+#: mod/admin.php:305
 msgid ""
-"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
-" %1$s is readable."
+"Enter the Terms of Service for your node here. You can use BBCode. Headers "
+"of sections should be [h2] and below."
 msgstr ""
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "Off"
-msgstr "Pois päältä"
+#: mod/admin.php:353
+msgid "The blocked domain"
+msgstr "Estetty verkkotunnus"
 
-#: mod/admin.php:2428 mod/admin.php:2429 mod/settings.php:775
-msgid "On"
-msgstr "Päällä"
+#: mod/admin.php:354 mod/admin.php:367
+msgid "The reason why you blocked this domain."
+msgstr "Verkkotunnuksen estosyy."
 
-#: mod/admin.php:2429
-#, php-format
-msgid "Lock feature %s"
-msgstr "Lukitse ominaisuus %s"
+#: mod/admin.php:355
+msgid "Delete domain"
+msgstr "Poista verkkotunnus"
 
-#: mod/admin.php:2437
-msgid "Manage Additional Features"
-msgstr "Hallitse lisäominaisuudet"
+#: mod/admin.php:355
+msgid "Check to delete this entry from the blocklist"
+msgstr "Laita rasti poistaaksesi kohde estolistalta"
 
-#: mod/babel.php:22
-msgid "Source input"
+#: mod/admin.php:363
+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/babel.php:28
-msgid "BBCode::convert (raw HTML)"
-msgstr "BBCode::convert (raaka HTML)"
+#: mod/admin.php:364
+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/babel.php:33
-msgid "BBCode::convert"
-msgstr "BBCode::convert"
+#: mod/admin.php:365
+msgid "Add new entry to block list"
+msgstr "Lisää uusi kohde estolistaan"
 
-#: mod/babel.php:39
-msgid "BBCode::convert => HTML::toBBCode"
-msgstr "BBCode::convert => HTML::toBBCode"
+#: mod/admin.php:366
+msgid "Server Domain"
+msgstr "Palvelimen verkkotunnus"
 
-#: mod/babel.php:45
-msgid "BBCode::toMarkdown"
-msgstr "BBCode::toMarkdown"
+#: mod/admin.php:366
+msgid ""
+"The domain of the new server to add to the block list. Do not include the "
+"protocol."
+msgstr ""
 
-#: mod/babel.php:51
-msgid "BBCode::toMarkdown => Markdown::convert"
-msgstr "BBCode::toMarkdown => Markdown::convert"
+#: mod/admin.php:367
+msgid "Block reason"
+msgstr "Estosyy"
 
-#: mod/babel.php:57
-msgid "BBCode::toMarkdown => Markdown::toBBCode"
-msgstr "BBCode::toMarkdown => Markdown::toBBCode"
+#: mod/admin.php:368
+msgid "Add Entry"
+msgstr "Lisää merkintä"
 
-#: mod/babel.php:63
-msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
-msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+#: mod/admin.php:369
+msgid "Save changes to the blocklist"
+msgstr "Tallenna muutoksia estolistaan"
 
-#: mod/babel.php:70
-msgid "Source input \\x28Diaspora format\\x29"
-msgstr ""
+#: mod/admin.php:370
+msgid "Current Entries in the Blocklist"
+msgstr "Nykyinen estolista"
 
-#: mod/babel.php:76
-msgid "Markdown::toBBCode"
-msgstr "Markdown::toBBCode"
+#: mod/admin.php:373
+msgid "Delete entry from blocklist"
+msgstr "Poista kohde estolistalta"
 
-#: mod/babel.php:83
-msgid "Raw HTML input"
-msgstr "Raaka HTML-syöte"
+#: mod/admin.php:376
+msgid "Delete entry from blocklist?"
+msgstr "Poista kohde estolistalta?"
 
-#: mod/babel.php:88
-msgid "HTML Input"
-msgstr "HTML-syöte"
+#: mod/admin.php:402
+msgid "Server added to blocklist."
+msgstr "Palvelin lisätty estolistalle"
 
-#: mod/babel.php:94
-msgid "HTML::toBBCode"
-msgstr "HTML::toBBCode"
+#: mod/admin.php:418
+msgid "Site blocklist updated."
+msgstr "Sivuston estolista päivitetty."
 
-#: mod/babel.php:100
-msgid "HTML::toPlaintext"
-msgstr "HTML::toPlaintext"
+#: mod/admin.php:450
+#, php-format
+msgid "%s contact unblocked"
+msgid_plural "%s contacts unblocked"
+msgstr[0] "%s kontakti poistettu estolistalta"
+msgstr[1] "%s kontaktia poistettu estolistalta"
 
-#: mod/babel.php:108
-msgid "Source text"
-msgstr "Lähdeteksti"
+#: mod/admin.php:479
+msgid "Remote Contact Blocklist"
+msgstr "Etäkontakti estolista"
 
-#: mod/babel.php:109
-msgid "BBCode"
-msgstr "BBCode"
+#: mod/admin.php:480
+msgid ""
+"This page allows you to prevent any message from a remote contact to reach "
+"your node."
+msgstr ""
 
-#: mod/babel.php:110
-msgid "Markdown"
-msgstr "Markdown"
+#: mod/admin.php:481
+msgid "Block Remote Contact"
+msgstr "Estä etäkontakti"
 
-#: mod/babel.php:111
-msgid "HTML"
-msgstr "HTML"
+#: mod/admin.php:482 mod/admin.php:1804
+msgid "select all"
+msgstr "valitse kaikki"
 
-#: mod/directory.php:152 src/Model/Profile.php:421 src/Model/Profile.php:771
-msgid "Status:"
-msgstr "Tila:"
+#: mod/admin.php:483
+msgid "select none"
+msgstr "älä valitse mitään"
 
-#: mod/directory.php:153 src/Model/Profile.php:422 src/Model/Profile.php:788
-msgid "Homepage:"
-msgstr "Kotisivu:"
+#: mod/admin.php:484 mod/admin.php:1813 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Block"
+msgstr "Estä"
 
-#: mod/directory.php:202 view/theme/vier/theme.php:201
-msgid "Global Directory"
-msgstr "Maailmanlaajuinen hakemisto"
+#: mod/admin.php:485 mod/admin.php:1814 mod/contacts.php:637
+#: mod/contacts.php:827 mod/contacts.php:1011
+msgid "Unblock"
+msgstr "Salli"
 
-#: mod/directory.php:204
-msgid "Find on this site"
+#: mod/admin.php:486
+msgid "No remote contact is blocked from this node."
 msgstr ""
 
-#: mod/directory.php:206
-msgid "Results for:"
-msgstr "Tulokset haulla:"
+#: mod/admin.php:488
+msgid "Blocked Remote Contacts"
+msgstr "Estetty etäkontaktit"
 
-#: mod/directory.php:208
-msgid "Site Directory"
-msgstr "Sivuston luettelo"
+#: mod/admin.php:489
+msgid "Block New Remote Contact"
+msgstr "Estä uusi etäkontakti"
 
-#: mod/directory.php:213
-msgid "No entries (some entries may be hidden)."
-msgstr ""
+#: mod/admin.php:490
+msgid "Photo"
+msgstr "Kuva"
 
-#: mod/dirfind.php:49
-#, php-format
-msgid "People Search - %s"
-msgstr ""
+#: mod/admin.php:490 mod/admin.php:500 mod/unfollow.php:122
+#: mod/notifications.php:258 mod/follow.php:166 mod/contacts.php:656
+msgid "Profile URL"
+msgstr "Profiilin URL"
 
-#: mod/dirfind.php:60
+#: mod/admin.php:498
 #, php-format
-msgid "Forum Search - %s"
-msgstr "Foorumihaku - %s"
+msgid "%s total blocked contact"
+msgid_plural "%s total blocked contacts"
+msgstr[0] "Yhteensä %s estetty kontakti"
+msgstr[1] "Yhteensä %s estettyjä kontakteja"
 
-#: mod/follow.php:45
-msgid "The contact could not be added."
-msgstr "Kontaktia ei voitu lisätä."
+#: mod/admin.php:500
+msgid "URL of the remote contact to block."
+msgstr "Estettävän etäkontaktin URL-osoite"
 
-#: mod/follow.php:73
-msgid "You already added this contact."
-msgstr "Olet jo lisännyt tämän kontaktin."
+#: mod/admin.php:522
+msgid "Delete this Item"
+msgstr "Poista tämä kohde"
 
-#: mod/follow.php:83
-msgid "Diaspora support isn't enabled. Contact can't be added."
-msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."
+#: mod/admin.php:523
+msgid ""
+"On this page you can delete an item from your node. If the item is a top "
+"level posting, the entire thread will be deleted."
+msgstr ""
 
-#: mod/follow.php:90
-msgid "OStatus support is disabled. Contact can't be added."
-msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."
+#: mod/admin.php:524
+msgid ""
+"You need to know the GUID of the item. You can find it e.g. by looking at "
+"the display URL. The last part of http://example.com/display/123456 is the "
+"GUID, here 123456."
+msgstr ""
 
-#: mod/follow.php:97
-msgid "The network type couldn't be detected. Contact can't be added."
-msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."
+#: mod/admin.php:525
+msgid "GUID"
+msgstr "GUID"
 
-#: mod/friendica.php:77
-msgid "This is Friendica, version"
-msgstr "Tämä on Friendica, versio"
+#: mod/admin.php:525
+msgid "The GUID of the item you want to delete."
+msgstr "Poistettavan kohteen GUID."
 
-#: mod/friendica.php:78
-msgid "running at web location"
-msgstr "käynnissä osoitteessa"
+#: mod/admin.php:564
+msgid "Item marked for deletion."
+msgstr "Kohde merkitty poistettavaksi."
 
-#: mod/friendica.php:82
+#: mod/admin.php:635
+msgid "unknown"
+msgstr "tuntematon"
+
+#: mod/admin.php:711
 msgid ""
-"Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more "
-"about the Friendica project."
-msgstr "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> saadaksesi lisätietoja Friendica- projektista."
+"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/friendica.php:86
-msgid "Bug reports and issues: please visit"
-msgstr "Bugiraportit ja kysymykset: vieraile osoitteessa"
+#: mod/admin.php:712
+msgid ""
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr ""
 
-#: mod/friendica.php:86
-msgid "the bugtracker at github"
-msgstr "githubin bugtrackeri"
+#: mod/admin.php:724
+#, php-format
+msgid ""
+"Currently this node is aware of %d nodes with %d registered users from the "
+"following platforms:"
+msgstr "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:"
 
-#: mod/friendica.php:89
-msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
-msgstr "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca"
+#: mod/admin.php:755
+msgid "ID"
+msgstr ""
 
-#: mod/friendica.php:103
-msgid "Installed addons/apps:"
-msgstr "Asennettu lisäosat/sovellukset:"
+#: mod/admin.php:756
+msgid "Recipient Name"
+msgstr "Vastaanottajan nimi"
 
-#: mod/friendica.php:117
-msgid "No installed addons/apps"
-msgstr "Ei asennettuja lisäosia/sovelluksia"
+#: mod/admin.php:757
+msgid "Recipient Profile"
+msgstr "Vastaanottajan profiili"
 
-#: mod/friendica.php:122
-#, php-format
-msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
-msgstr "Lue tämän solmun <a href=\"%1$s/tos\">käyttöehdot</a>."
+#: mod/admin.php:759
+msgid "Created"
+msgstr "Luotu"
 
-#: mod/friendica.php:127
-msgid "On this server the following remote servers are blocked."
-msgstr "Tällä palvelimella seuraavat etäpalvelimet ovat estetty."
+#: mod/admin.php:760
+msgid "Last Tried"
+msgstr "Viimeksi yritetty"
 
-#: mod/invite.php:33
-msgid "Total invitation limit exceeded."
-msgstr "Kutsuraja ylitetty."
+#: mod/admin.php:761
+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/invite.php:55
+#: mod/admin.php:785
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Virheellinen sähköpostiosoite."
-
-#: mod/invite.php:87
-msgid "Please join us on Friendica"
-msgstr "Tervetuloa Friendicaan"
-
-#: mod/invite.php:96
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään."
+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 "
+"bin/console.php dbstructure toinnodb</tt> of your Friendica installation for"
+" an automatic conversion.<br />"
+msgstr ""
 
-#: mod/invite.php:100
+#: mod/admin.php:792
 #, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Viestin toimitus epäonnistui."
+msgid ""
+"There is a new version of Friendica available for download. Your current "
+"version is %1$s, upstream version is %2$s"
+msgstr ""
 
-#: mod/invite.php:104
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d viesti lähetetty."
-msgstr[1] "%d viestiä lähetetty."
+#: mod/admin.php:802
+msgid ""
+"The database update failed. Please run \"php bin/console.php dbstructure "
+"update\" from the command line and have a look at the errors that might "
+"appear."
+msgstr "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit."
 
-#: mod/invite.php:122
-msgid "You have no more invitations available"
-msgstr "Sinulla ei ole kutsuja jäljellä"
+#: mod/admin.php:808
+msgid "The worker was never executed. Please check your database structure!"
+msgstr "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!"
 
-#: mod/invite.php:130
+#: mod/admin.php:811
 #, php-format
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr ""
+"The last worker execution was on %s UTC. This is older than one hour. Please"
+" check your crontab settings."
+msgstr "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset."
 
-#: mod/invite.php:132
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr ""
+#: mod/admin.php:816
+msgid "Normal Account"
+msgstr "Perustili"
 
-#: mod/invite.php:133
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr ""
+#: mod/admin.php:817
+msgid "Automatic Follower Account"
+msgstr "Automaattinen seuraajatili"
 
-#: mod/invite.php:137
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr ""
+#: mod/admin.php:818
+msgid "Public Forum Account"
+msgstr "Julkinen foorumitili"
 
-#: mod/invite.php:141
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks."
-msgstr ""
+#: mod/admin.php:819
+msgid "Automatic Friend Account"
+msgstr "Automaattinen kaveritili"
 
-#: mod/invite.php:140
-#, php-format
-msgid "To accept this invitation, please visit and register at %s."
-msgstr ""
+#: mod/admin.php:820
+msgid "Blog Account"
+msgstr "Blogitili"
 
-#: mod/invite.php:147
-msgid "Send invitations"
-msgstr "Lähetä kutsut"
+#: mod/admin.php:821
+msgid "Private Forum Account"
+msgstr "Yksityinen foorumitili"
 
-#: mod/invite.php:148
-msgid "Enter email addresses, one per line:"
-msgstr "Syötä sähköpostiosoitteet, yksi riviä kohden:"
+#: mod/admin.php:843
+msgid "Message queues"
+msgstr "Viestijonot"
 
-#: mod/invite.php:150
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr ""
+#: mod/admin.php:849
+msgid "Summary"
+msgstr "Yhteenveto"
 
-#: mod/invite.php:152
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr ""
+#: mod/admin.php:851
+msgid "Registered users"
+msgstr "Rekisteröityneet käyttäjät"
 
-#: mod/invite.php:152
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:"
+#: mod/admin.php:853
+msgid "Pending registrations"
+msgstr "Vireillä olevat rekisteröinnit"
 
-#: mod/invite.php:154
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendi.ca"
-msgstr ""
+#: mod/admin.php:854
+msgid "Version"
+msgstr "Versio"
 
-#: mod/lostpass.php:27
-msgid "No valid account found."
-msgstr "Voimassa olevaa tiliä ei löytynyt."
+#: mod/admin.php:859
+msgid "Active addons"
+msgstr "Käytössäolevat lisäosat"
 
-#: mod/lostpass.php:39
-msgid "Password reset request issued. Check your email."
-msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
+#: mod/admin.php:890
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>"
 
-#: mod/lostpass.php:45
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr ""
+#: mod/admin.php:1209
+msgid "Site settings updated."
+msgstr "Sivuston asetukset päivitettiin."
 
-#: mod/lostpass.php:56
-#, php-format
-msgid ""
-"\n"
-"\t\tFollow this link soon to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr ""
+#: mod/admin.php:1265
+msgid "No community page"
+msgstr "Ei yhteisösivua"
 
-#: mod/lostpass.php:73
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Salasanan nollauspyyntö kohteessa %s"
+#: mod/admin.php:1266
+msgid "Public postings from users of this site"
+msgstr "Julkiset julkaisut tämän sivuston käyttäjiltä"
 
-#: mod/lostpass.php:89
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."
+#: mod/admin.php:1267
+msgid "Public postings from the federated network"
+msgstr "Julkiset julkaisut liittoutuneelta verkolta"
 
-#: mod/lostpass.php:102
-msgid "Request has expired, please make a new one."
-msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö."
+#: mod/admin.php:1268
+msgid "Public postings from local users and the federated network"
+msgstr "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta"
 
-#: mod/lostpass.php:117
-msgid "Forgot your Password?"
-msgstr "Unohditko salasanasi?"
+#: mod/admin.php:1272 mod/admin.php:1435 mod/admin.php:1445
+#: mod/contacts.php:572
+msgid "Disabled"
+msgstr "Pois käytöstä"
 
-#: mod/lostpass.php:118
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+#: mod/admin.php:1274
+msgid "Users, Global Contacts"
+msgstr "Käyttäjät, maailmanlaajuiset kontaktit"
+
+#: mod/admin.php:1275
+msgid "Users, Global Contacts/fallback"
 msgstr ""
 
-#: mod/lostpass.php:119 src/Module/Login.php:314
-msgid "Nickname or Email: "
-msgstr "Lempinimi tai sähköposti:"
+#: mod/admin.php:1279
+msgid "One month"
+msgstr "Yksi kuukausi"
 
-#: mod/lostpass.php:120
-msgid "Reset"
-msgstr "Nollaus"
+#: mod/admin.php:1280
+msgid "Three months"
+msgstr "Kolme kuukautta"
 
-#: mod/lostpass.php:136 src/Module/Login.php:326
-msgid "Password Reset"
-msgstr "Salasanan nollaus"
+#: mod/admin.php:1281
+msgid "Half a year"
+msgstr "Puoli vuotta"
 
-#: mod/lostpass.php:137
-msgid "Your password has been reset as requested."
-msgstr "Salasanasi on nollattu pyynnöstäsi."
+#: mod/admin.php:1282
+msgid "One year"
+msgstr "Yksi vuosi"
 
-#: mod/lostpass.php:138
-msgid "Your new password is"
-msgstr "Uusi salasanasi on"
+#: mod/admin.php:1287
+msgid "Multi user instance"
+msgstr "Monen käyttäjän instanssi"
 
-#: mod/lostpass.php:139
-msgid "Save or copy your new password - and then"
-msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten"
+#: mod/admin.php:1310
+msgid "Closed"
+msgstr "Suljettu"
 
-#: mod/lostpass.php:140
-msgid "click here to login"
-msgstr "kirjaudu klikkaamalla tästä"
+#: mod/admin.php:1311
+msgid "Requires approval"
+msgstr "Edellyttää hyväksyntää"
 
-#: mod/lostpass.php:141
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen."
+#: mod/admin.php:1312
+msgid "Open"
+msgstr "Avoin"
 
-#: mod/lostpass.php:149
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\tsomething that you will remember).\n"
-"\t\t"
+#: mod/admin.php:1316
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/lostpass.php:155
-#, php-format
-msgid ""
-"\n"
-"\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t%2$s\n"
-"\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t"
-msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"
-
-#: mod/lostpass.php:169
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Salasanasi on vaihdettu sivustolla %s"
-
-#: mod/network.php:202 src/Model/Group.php:413
-msgid "add"
-msgstr "lisää"
-
-#: mod/network.php:547
-#, php-format
-msgid ""
-"Warning: This group contains %s member from a network that doesn't allow non"
-" public messages."
-msgid_plural ""
-"Warning: This group contains %s members from a network that doesn't allow "
-"non public messages."
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:1317
+msgid "Force all links to use SSL"
+msgstr "Pakota kaikki linkit käyttämään SSL-yhteyttä"
 
-#: mod/network.php:550
-msgid "Messages in this group won't be send to these receivers."
+#: mod/admin.php:1318
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/network.php:618
-msgid "No such group"
-msgstr "Ryhmä ei ole olemassa"
-
-#: mod/network.php:643
-#, php-format
-msgid "Group: %s"
-msgstr "Ryhmä: %s"
-
-#: mod/network.php:669
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin."
-
-#: mod/network.php:672
-msgid "Invalid contact."
-msgstr "Virheellinen kontakti."
-
-#: mod/network.php:936
-msgid "Commented Order"
-msgstr "Järjestä viimeisimpien kommenttien mukaan"
+#: mod/admin.php:1322
+msgid "Don't check"
+msgstr "Älä tarkista"
 
-#: mod/network.php:939
-msgid "Sort by Comment Date"
-msgstr "Kommentit päivämäärän mukaan"
+#: mod/admin.php:1323
+msgid "check the stable version"
+msgstr ""
 
-#: mod/network.php:944
-msgid "Posted Order"
-msgstr "Järjestä julkaisupäivämäärän mukaan"
+#: mod/admin.php:1324
+msgid "check the development version"
+msgstr ""
 
-#: mod/network.php:947
-msgid "Sort by Post Date"
-msgstr "Julkaisut päivämäärän mukaan"
+#: mod/admin.php:1347
+msgid "Republish users to directory"
+msgstr ""
 
-#: mod/network.php:955 mod/profiles.php:687
-#: src/Core/NotificationsManager.php:185
-msgid "Personal"
-msgstr "Henkilökohtainen"
+#: mod/admin.php:1348 mod/register.php:264
+msgid "Registration"
+msgstr "Rekisteröityminen"
 
-#: mod/network.php:958
-msgid "Posts that mention or involve you"
-msgstr "Julkaisut jotka liittyvät sinuun"
+#: mod/admin.php:1349
+msgid "File upload"
+msgstr "Tiedoston lataus"
 
-#: mod/network.php:966
-msgid "New"
-msgstr "Uusi"
+#: mod/admin.php:1350
+msgid "Policies"
+msgstr "Käytännöt"
 
-#: mod/network.php:969
-msgid "Activity Stream - by date"
+#: mod/admin.php:1352
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/network.php:977
-msgid "Shared Links"
-msgstr "Jaetut linkit"
+#: mod/admin.php:1353
+msgid "Performance"
+msgstr "Suoritus"
 
-#: mod/network.php:980
-msgid "Interesting Links"
-msgstr "Kiinnostavat linkit"
+#: mod/admin.php:1354
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/network.php:988
-msgid "Starred"
-msgstr "Tähtimerkitty"
+#: mod/admin.php:1355
+msgid "Message Relay"
+msgstr ""
 
-#: mod/network.php:991
-msgid "Favourite Posts"
-msgstr "Lempijulkaisut"
+#: mod/admin.php:1356
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr ""
 
-#: mod/profiles.php:58
-msgid "Profile deleted."
-msgstr "Profiili poistettiin."
+#: mod/admin.php:1359
+msgid "Site name"
+msgstr "Sivuston nimi"
 
-#: mod/profiles.php:74 mod/profiles.php:110
-msgid "Profile-"
-msgstr "Profiili-"
+#: mod/admin.php:1360
+msgid "Host name"
+msgstr "Palvelimen nimi"
 
-#: mod/profiles.php:93 mod/profiles.php:132
-msgid "New profile created."
-msgstr "Uusi profiili luotu."
+#: mod/admin.php:1361
+msgid "Sender Email"
+msgstr "Lähettäjän sähköposti"
 
-#: mod/profiles.php:116
-msgid "Profile unavailable to clone."
-msgstr "Profiili ei saatavilla kloonattavaksi."
+#: mod/admin.php:1361
+msgid ""
+"The email address your server shall use to send notification emails from."
+msgstr "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa."
 
-#: mod/profiles.php:206
-msgid "Profile Name is required."
-msgstr "Profiilinimi on pakollinen."
+#: mod/admin.php:1362
+msgid "Banner/Logo"
+msgstr "Banneri/logo"
 
-#: mod/profiles.php:347
-msgid "Marital Status"
-msgstr "Siviilisääty"
+#: mod/admin.php:1363
+msgid "Shortcut icon"
+msgstr "Pikakuvake"
 
-#: mod/profiles.php:351
-msgid "Romantic Partner"
-msgstr "Romanttinen kumppani"
+#: mod/admin.php:1363
+msgid "Link to an icon that will be used for browsers."
+msgstr "Linkki kuvakkeeseen jota selaimet saa käyttää."
 
-#: mod/profiles.php:363
-msgid "Work/Employment"
-msgstr "Työ"
+#: mod/admin.php:1364
+msgid "Touch icon"
+msgstr "Kosketusnäyttökuvake"
 
-#: mod/profiles.php:366
-msgid "Religion"
-msgstr "Uskonto"
+#: mod/admin.php:1364
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää."
 
-#: mod/profiles.php:370
-msgid "Political Views"
-msgstr "Poliittiset näkemykset"
+#: mod/admin.php:1365
+msgid "Additional Info"
+msgstr "Lisätietoja"
 
-#: mod/profiles.php:374
-msgid "Gender"
-msgstr "Sukupuoli"
+#: mod/admin.php:1365
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/servers."
+msgstr ""
 
-#: mod/profiles.php:378
-msgid "Sexual Preference"
-msgstr "Seksuaalinen suuntautuminen"
+#: mod/admin.php:1366
+msgid "System language"
+msgstr "Järjestelmän kieli"
 
-#: mod/profiles.php:382
-msgid "XMPP"
-msgstr "XMPP"
+#: mod/admin.php:1367
+msgid "System theme"
+msgstr "Järjestelmäteema"
 
-#: mod/profiles.php:386
-msgid "Homepage"
-msgstr "Kotisivu"
+#: mod/admin.php:1367
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr ""
 
-#: mod/profiles.php:390 mod/profiles.php:686
-msgid "Interests"
-msgstr "Kiinnostukset"
+#: mod/admin.php:1368
+msgid "Mobile system theme"
+msgstr "Mobiili järjestelmäteema"
 
-#: mod/profiles.php:401 mod/profiles.php:682
-msgid "Location"
-msgstr "Sijainti"
+#: mod/admin.php:1368
+msgid "Theme for mobile devices"
+msgstr "Mobiiliteema"
 
-#: mod/profiles.php:486
-msgid "Profile updated."
-msgstr "Profiili päivitettiin."
+#: mod/admin.php:1369
+msgid "SSL link policy"
+msgstr "SSL-linkkikäytäntö"
 
-#: mod/profiles.php:564
-msgid " and "
-msgstr "ja"
+#: mod/admin.php:1369
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä."
 
-#: mod/profiles.php:573
-msgid "public profile"
-msgstr "julkinen profiili"
+#: mod/admin.php:1370
+msgid "Force SSL"
+msgstr "Pakoita SSL-yhteyden käyttöä"
 
-#: mod/profiles.php:576
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: mod/admin.php:1370
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
 msgstr ""
 
-#: mod/profiles.php:577
-#, php-format
-msgid " - Visit %1$s's %2$s"
+#: mod/admin.php:1371
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/profiles.php:579
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+#: mod/admin.php:1371
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: mod/profiles.php:633
-msgid "Hide contacts and friends:"
-msgstr "Piilota kontaktit ja kaverit:"
-
-#: mod/profiles.php:638
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Piilota tämän profiilin kontakti/kaverilista?"
-
-#: mod/profiles.php:658
-msgid "Show more profile fields:"
-msgstr "Näytä lisää profiilikenttiä:"
+#: mod/admin.php:1372
+msgid "Single user instance"
+msgstr "Yksittäisen käyttäjän instanssi"
 
-#: mod/profiles.php:670
-msgid "Profile Actions"
+#: mod/admin.php:1372
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/profiles.php:671
-msgid "Edit Profile Details"
-msgstr "Muokkaa profiilin yksityiskohdat"
-
-#: mod/profiles.php:673
-msgid "Change Profile Photo"
-msgstr "Vaihda profiilikuva"
+#: mod/admin.php:1373
+msgid "Maximum image size"
+msgstr "Suurin kuvakoko"
 
-#: mod/profiles.php:674
-msgid "View this profile"
-msgstr "Näytä profiilia"
+#: mod/admin.php:1373
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa."
 
-#: mod/profiles.php:675 mod/profiles.php:770 src/Model/Profile.php:393
-msgid "Edit visibility"
-msgstr "Muokkaa näkyvyyttä"
+#: mod/admin.php:1374
+msgid "Maximum image length"
+msgstr "Suurin kuvapituus"
 
-#: mod/profiles.php:676
-msgid "Create a new profile using these settings"
-msgstr "Luo uusi profiili näillä asetuksilla"
+#: mod/admin.php:1374
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta."
 
-#: mod/profiles.php:677
-msgid "Clone this profile"
-msgstr "Kloonaa tämä profiili"
+#: mod/admin.php:1375
+msgid "JPEG image quality"
+msgstr "JPEG-kuvanlaatu"
 
-#: mod/profiles.php:678
-msgid "Delete this profile"
-msgstr "Poista tämä profiili"
+#: mod/admin.php:1375
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr ""
 
-#: mod/profiles.php:680
-msgid "Basic information"
-msgstr "Perustiedot"
+#: mod/admin.php:1377
+msgid "Register policy"
+msgstr "Rekisteröintipolitiikka"
 
-#: mod/profiles.php:681
-msgid "Profile picture"
-msgstr "Profiilikuva"
+#: mod/admin.php:1378
+msgid "Maximum Daily Registrations"
+msgstr "Päivittäinen rekisteröitymisraja"
 
-#: mod/profiles.php:683
-msgid "Preferences"
-msgstr "Mieltymykset"
+#: mod/admin.php:1378
+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 "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta."
 
-#: mod/profiles.php:684
-msgid "Status information"
-msgstr "Tilatiedot"
+#: mod/admin.php:1379
+msgid "Register text"
+msgstr "Rekisteröitymisteksti"
 
-#: mod/profiles.php:685
-msgid "Additional information"
-msgstr "Lisätietoja"
+#: mod/admin.php:1379
+msgid ""
+"Will be displayed prominently on the registration page. You can use BBCode "
+"here."
+msgstr "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia."
 
-#: mod/profiles.php:688
-msgid "Relation"
-msgstr "Suhde"
+#: mod/admin.php:1380
+msgid "Accounts abandoned after x days"
+msgstr ""
 
-#: mod/profiles.php:689 src/Util/Temporal.php:81 src/Util/Temporal.php:83
-msgid "Miscellaneous"
-msgstr "Sekalaista"
+#: mod/admin.php:1380
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
 
-#: mod/profiles.php:692
-msgid "Your Gender:"
-msgstr "Sukupuoli:"
+#: mod/admin.php:1381
+msgid "Allowed friend domains"
+msgstr "Sallittuja kaveri-verkkotunnuksia"
 
-#: mod/profiles.php:693
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Siviilisääty:"
+#: mod/admin.php:1381
+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/profiles.php:694 src/Model/Profile.php:784
-msgid "Sexual Preference:"
-msgstr "Seksuaalinen suuntautuminen:"
+#: mod/admin.php:1382
+msgid "Allowed email domains"
+msgstr "Sallittuja sähköposti-verkkotunnuksia"
 
-#: mod/profiles.php:695
-msgid "Example: fishing photography software"
-msgstr "Esimerkki: kalastus valokuvaus ohjelmistot"
+#: mod/admin.php:1382
+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/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profiilinimi:"
+#: mod/admin.php:1383
+msgid "No OEmbed rich content"
+msgstr ""
 
-#: mod/profiles.php:702
+#: mod/admin.php:1383
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+"Don't show the rich content (e.g. embedded PDF), except from the domains "
+"listed below."
 msgstr ""
 
-#: mod/profiles.php:703
-msgid "Your Full Name:"
-msgstr "Koko nimi:"
+#: mod/admin.php:1384
+msgid "Allowed OEmbed domains"
+msgstr "Sallittuja OEmbed -verkkotunnuksia"
 
-#: mod/profiles.php:704
-msgid "Title/Description:"
-msgstr "Otsikko/kuvaus:"
+#: mod/admin.php:1384
+msgid ""
+"Comma separated list of domains which oembed content is allowed to be "
+"displayed. Wildcards are accepted."
+msgstr ""
 
-#: mod/profiles.php:707
-msgid "Street Address:"
-msgstr "Katuosoite:"
+#: mod/admin.php:1385
+msgid "Block public"
+msgstr "Estä vierailijat"
 
-#: mod/profiles.php:708
-msgid "Locality/City:"
-msgstr "Kaupunki:"
+#: mod/admin.php:1385
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr ""
 
-#: mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Alue/osavaltio:"
+#: mod/admin.php:1386
+msgid "Force publish"
+msgstr ""
 
-#: mod/profiles.php:710
-msgid "Postal/Zip Code:"
-msgstr "Postinumero:"
+#: mod/admin.php:1386
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
 
-#: mod/profiles.php:711
-msgid "Country:"
-msgstr "Maa:"
+#: mod/admin.php:1387
+msgid "Global directory URL"
+msgstr "Maailmanlaajuisen hakemiston URL-osoite"
 
-#: mod/profiles.php:712 src/Util/Temporal.php:149
-msgid "Age: "
-msgstr "Ikä:"
+#: mod/admin.php:1387
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr ""
 
-#: mod/profiles.php:715
-msgid "Who: (if applicable)"
-msgstr "Kuka: (tarvittaessa)"
+#: mod/admin.php:1388
+msgid "Private posts by default for new users"
+msgstr ""
 
-#: mod/profiles.php:715
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com"
+#: mod/admin.php:1388
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr ""
 
-#: mod/profiles.php:716
-msgid "Since [date]:"
-msgstr "Lähtien [päivämäärä]:"
+#: mod/admin.php:1389
+msgid "Don't include post content in email notifications"
+msgstr "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen"
 
-#: mod/profiles.php:718
-msgid "Tell us about yourself..."
-msgstr "Kerro vähän itsestäsi..."
+#: mod/admin.php:1389
+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/profiles.php:719
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) osoite:"
+#: mod/admin.php:1390
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr ""
 
-#: mod/profiles.php:719
+#: mod/admin.php:1390
 msgid ""
-"The XMPP address will be propagated to your contacts so that they can follow"
-" you."
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/profiles.php:720
-msgid "Homepage URL:"
-msgstr "Kotisivun URL-osoite:"
-
-#: mod/profiles.php:721 src/Model/Profile.php:792
-msgid "Hometown:"
-msgstr "Kotikaupunki:"
+#: mod/admin.php:1391
+msgid "Don't embed private images in posts"
+msgstr "Älä upota yksityisiä kuvia julkaisuissa"
 
-#: mod/profiles.php:722 src/Model/Profile.php:800
-msgid "Political Views:"
-msgstr "Politiikka:"
+#: mod/admin.php:1391
+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/profiles.php:723
-msgid "Religious Views:"
-msgstr "Uskonto:"
+#: mod/admin.php:1392
+msgid "Allow Users to set remote_self"
+msgstr ""
 
-#: mod/profiles.php:724
-msgid "Public Keywords:"
-msgstr "Julkiset avainsanat:"
+#: mod/admin.php:1392
+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/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Käytetään kaveriehdotuksia varten, näkyy muille)"
+#: mod/admin.php:1393
+msgid "Block multiple registrations"
+msgstr ""
 
-#: mod/profiles.php:725
-msgid "Private Keywords:"
-msgstr "Yksityiset avainsanat:"
+#: mod/admin.php:1393
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
 
-#: mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Käytetään profiilihakua varten, ei näy muille)"
+#: mod/admin.php:1394
+msgid "OpenID support"
+msgstr "OpenID-tuki"
 
-#: mod/profiles.php:726 src/Model/Profile.php:816
-msgid "Likes:"
-msgstr "Tykkäykset:"
+#: mod/admin.php:1394
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-tuki rekisteröitymiseen ja kirjautumiseen"
 
-#: mod/profiles.php:727 src/Model/Profile.php:820
-msgid "Dislikes:"
-msgstr "Ei tykkää:"
+#: mod/admin.php:1395
+msgid "Fullname check"
+msgstr "Koko nimi tarkistus"
 
-#: mod/profiles.php:728
-msgid "Musical interests"
-msgstr "Musiikki"
+#: mod/admin.php:1395
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
 
-#: mod/profiles.php:729
-msgid "Books, literature"
-msgstr "Kirjat, kirjallisuus"
+#: mod/admin.php:1396
+msgid "Community pages for visitors"
+msgstr "Yhteisösivu vieraille"
 
-#: mod/profiles.php:730
-msgid "Television"
-msgstr "Televisio"
+#: mod/admin.php:1396
+msgid ""
+"Which community pages should be available for visitors. Local users always "
+"see both pages."
+msgstr ""
 
-#: mod/profiles.php:731
-msgid "Film/dance/culture/entertainment"
-msgstr "Elokuvat/tanssi/kulttuuri/viihde"
+#: mod/admin.php:1397
+msgid "Posts per user on community page"
+msgstr ""
 
-#: mod/profiles.php:732
-msgid "Hobbies/Interests"
-msgstr "Harrastukset"
+#: mod/admin.php:1397
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)"
 
-#: mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Rakkaus/romanssi"
+#: mod/admin.php:1398
+msgid "Enable OStatus support"
+msgstr "Salli OStatus-tuki"
 
-#: mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Työ:"
+#: mod/admin.php:1398
+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/profiles.php:735
-msgid "School/education"
-msgstr "Koulutus:"
+#: mod/admin.php:1399
+msgid "Only import OStatus threads from our contacts"
+msgstr "Ainoastaan tuo OStatus -ketjuja kontakteiltamme"
 
-#: mod/profiles.php:736
-msgid "Contact information and Social Networks"
-msgstr "Yhteystiedot ja sosiaalinen media"
+#: mod/admin.php:1399
+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/profiles.php:767 src/Model/Profile.php:389
-msgid "Profile Image"
-msgstr "Profiilikuva"
+#: mod/admin.php:1400
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön."
 
-#: mod/profiles.php:769 src/Model/Profile.php:392
-msgid "visible to everybody"
-msgstr "näkyvissä kaikille"
+#: mod/admin.php:1402
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon."
 
-#: mod/profiles.php:776
-msgid "Edit/Manage Profiles"
-msgstr "Muokkaa/hallitse profiilit"
+#: mod/admin.php:1403
+msgid "Enable Diaspora support"
+msgstr "Salli Diaspora-tuki"
 
-#: mod/profiles.php:777 src/Model/Profile.php:379 src/Model/Profile.php:401
-msgid "Change profile photo"
-msgstr "Vaihda profiilikuva"
+#: mod/admin.php:1403
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Ota käyttöön Diaspora-yhteensopivuus"
 
-#: mod/profiles.php:778 src/Model/Profile.php:380
-msgid "Create New Profile"
-msgstr "Luo uusi profiili"
+#: mod/admin.php:1404
+msgid "Only allow Friendica contacts"
+msgstr "Salli ainoastaan Friendica -kontakteja"
 
-#: mod/register.php:99
+#: mod/admin.php:1404
 msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse."
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä."
 
-#: mod/register.php:103
-#, php-format
+#: mod/admin.php:1405
+msgid "Verify SSL"
+msgstr "Vahvista SSL"
+
+#: mod/admin.php:1405
 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."
+"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/register.php:110
-msgid "Registration successful."
-msgstr "Rekisteröityminen onnistui."
+#: mod/admin.php:1406
+msgid "Proxy user"
+msgstr "Välityspalvelimen käyttäjä"
 
-#: mod/register.php:115
-msgid "Your registration can not be processed."
-msgstr "Rekisteröintisi ei voida käsitellä."
+#: mod/admin.php:1407
+msgid "Proxy URL"
+msgstr "Välityspalvelimen osoite"
 
-#: mod/register.php:162
-msgid "Your registration is pending approval by the site owner."
-msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää."
+#: mod/admin.php:1408
+msgid "Network timeout"
+msgstr "Verkon aikakatkaisu"
 
-#: mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: mod/admin.php:1408
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/register.php:221
+#: mod/admin.php:1409
+msgid "Maximum Load Average"
+msgstr "Kuorman enimmäiskeksiarvo"
+
+#: mod/admin.php:1409
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi."
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50)."
 
-#: mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "OpenID -tunnus (valinnainen):"
+#: mod/admin.php:1410
+msgid "Maximum Load Average (Frontend)"
+msgstr "Kuorman enimmäiskeskiarvo (Frontend)"
 
-#: mod/register.php:234
-msgid "Include your profile in member directory?"
-msgstr "Lisää profiilisi jäsenluetteloon?"
+#: mod/admin.php:1410
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50)."
 
-#: mod/register.php:259
-msgid "Note for the admin"
-msgstr "Viesti ylläpidolle"
+#: mod/admin.php:1411
+msgid "Minimal Memory"
+msgstr ""
 
-#: mod/register.php:259
-msgid "Leave a message for the admin, why you want to join this node"
-msgstr "Kerro yllÃ¥pitäjälle miksi haluat liittyä tähän Friendica -sivustoon"
+#: mod/admin.php:1411
+msgid ""
+"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
+"default 0 (deactivated)."
+msgstr ""
 
-#: mod/register.php:260
-msgid "Membership on this site is by invitation only."
-msgstr "Tähän sivustoon voi liittyä vain kutsusta."
+#: mod/admin.php:1412
+msgid "Maximum table size for optimization"
+msgstr "Taulukon enimmäiskoko optimointia varten"
 
-#: mod/register.php:261
-msgid "Your invitation code: "
-msgstr "Kutsukoodisi:"
+#: mod/admin.php:1412
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä."
 
-#: mod/register.php:270
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):"
+#: mod/admin.php:1413
+msgid "Minimum level of fragmentation"
+msgstr ""
 
-#: mod/register.php:271
+#: mod/admin.php:1413
 msgid ""
-"Your Email Address: (Initial information will be send there, so this has to "
-"be an existing address.)"
-msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)"
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr ""
 
-#: mod/register.php:273 mod/settings.php:1201
-msgid "New Password:"
-msgstr "Uusi salasana:"
+#: mod/admin.php:1415
+msgid "Periodical check of global contacts"
+msgstr ""
 
-#: mod/register.php:273
-msgid "Leave empty for an auto generated password."
-msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."
+#: mod/admin.php:1415
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr ""
 
-#: mod/register.php:274 mod/settings.php:1202
-msgid "Confirm:"
-msgstr "Vahvista:"
+#: mod/admin.php:1416
+msgid "Days between requery"
+msgstr ""
 
-#: mod/register.php:275
-#, 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@%s</strong>'."
+#: mod/admin.php:1416
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/register.php:276
-msgid "Choose a nickname: "
-msgstr "Valitse lempinimi:"
-
-#: mod/register.php:279 src/Content/Nav.php:128 src/Module/Login.php:283
-msgid "Register"
-msgstr "Rekisteröidy"
-
-#: mod/register.php:286
-msgid "Import your profile to this friendica instance"
-msgstr "Tuo profiilisi tähän Friendica -instanssiin."
-
-#: mod/removeme.php:43
-msgid "User deleted their account"
-msgstr "Käyttäjä poisti tilinsä"
+#: mod/admin.php:1417
+msgid "Discover contacts from other servers"
+msgstr ""
 
-#: mod/removeme.php:44
+#: mod/admin.php:1417
 msgid ""
-"On your Friendica node an user deleted their account. Please ensure that "
-"their data is removed from the backups."
-msgstr "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista."
-
-#: mod/removeme.php:45
-#, php-format
-msgid "The user id is %d"
+"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/removeme.php:76 mod/removeme.php:79
-msgid "Remove My Account"
-msgstr "Poista tilini"
+#: mod/admin.php:1418
+msgid "Timeframe for fetching global contacts"
+msgstr ""
 
-#: mod/removeme.php:77
+#: mod/admin.php:1418
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin."
-
-#: mod/removeme.php:78
-msgid "Please enter your password for verification:"
-msgstr "Syötä salasanasi varmistusta varten:"
-
-#: mod/settings.php:72
-msgid "Display"
-msgstr "Ulkonäkö"
+"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:79 mod/settings.php:842
-msgid "Social Networks"
-msgstr "Sosiaalinen media"
+#: mod/admin.php:1419
+msgid "Search the local directory"
+msgstr "Paikallisluettelohaku"
 
-#: mod/settings.php:93 src/Content/Nav.php:204
-msgid "Delegations"
+#: mod/admin.php:1419
+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:100
-msgid "Connected apps"
-msgstr "Yhdistetyt sovellukset"
+#: mod/admin.php:1421
+msgid "Publish server information"
+msgstr "Julkaise palvelintiedot"
 
-#: mod/settings.php:114
-msgid "Remove account"
-msgstr "Poista tili"
+#: mod/admin.php:1421
+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:168
-msgid "Missing some important data!"
-msgstr "Tärkeää dataa puuttuu!"
+#: mod/admin.php:1423
+msgid "Check upstream version"
+msgstr ""
 
-#: mod/settings.php:279
-msgid "Failed to connect with email account using the settings provided."
+#: mod/admin.php:1423
+msgid ""
+"Enables checking for new Friendica versions at github. If there is a new "
+"version, you will be informed in the admin panel overview."
 msgstr ""
 
-#: mod/settings.php:284
-msgid "Email settings updated."
-msgstr "Sähköpostin asetukset päivitettiin."
+#: mod/admin.php:1424
+msgid "Suppress Tags"
+msgstr "Piilota tunnisteet"
 
-#: mod/settings.php:300
-msgid "Features updated"
-msgstr "Ominaisuudet päivitetty"
+#: mod/admin.php:1424
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: mod/settings.php:372
-msgid "Relocate message has been send to your contacts"
+#: mod/admin.php:1425
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/settings.php:384 src/Model/User.php:339
-msgid "Passwords do not match. Password unchanged."
-msgstr "Salasanat eivät täsmää. Salasana ennallaan."
+#: mod/admin.php:1425
+msgid "The item caches buffers generated bbcode and external images."
+msgstr ""
 
-#: mod/settings.php:389
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan."
+#: mod/admin.php:1426
+msgid "Cache duration in seconds"
+msgstr ""
 
-#: mod/settings.php:394 src/Core/Console/NewPassword.php:87
+#: mod/admin.php:1426
 msgid ""
-"The new password has been exposed in a public data dump, please choose "
-"another."
+"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:400
-msgid "Wrong password."
-msgstr "Väärä salasana."
+#: mod/admin.php:1427
+msgid "Maximum numbers of comments per post"
+msgstr "Julkaisun kommentiraja"
 
-#: mod/settings.php:407 src/Core/Console/NewPassword.php:94
-msgid "Password changed."
-msgstr "Salasana vaihdettu."
+#: mod/admin.php:1427
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr ""
 
-#: mod/settings.php:409 src/Core/Console/NewPassword.php:91
-msgid "Password update failed. Please try again."
-msgstr "Salasanan vaihto epäonnistui. Yritä uudelleen."
+#: mod/admin.php:1428
+msgid "Temp path"
+msgstr ""
 
-#: mod/settings.php:496
-msgid " Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
+#: mod/admin.php:1428
+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:499
-msgid " Name too short."
-msgstr "Nimi on liian lyhyt."
+#: mod/admin.php:1429
+msgid "Base path to installation"
+msgstr "Asennuksen peruspolku"
 
-#: mod/settings.php:507
-msgid "Wrong Password"
-msgstr "Väärä salasana"
+#: mod/admin.php:1429
+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:512
-msgid "Invalid email."
-msgstr "Virheellinen sähköposti."
+#: mod/admin.php:1430
+msgid "Disable picture proxy"
+msgstr ""
 
-#: mod/settings.php:519
-msgid "Cannot change to that email."
+#: mod/admin.php:1430
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
 msgstr ""
 
-#: mod/settings.php:572
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: mod/admin.php:1431
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/settings.php:575
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: mod/admin.php:1431
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/settings.php:615
-msgid "Settings updated."
-msgstr "Asetukset päivitetty."
+#: mod/admin.php:1433
+msgid "New base url"
+msgstr "Uusi perusosoite"
 
-#: mod/settings.php:674 mod/settings.php:700 mod/settings.php:736
-msgid "Add application"
-msgstr "Lisää sovellus"
+#: mod/admin.php:1433
+msgid ""
+"Change base url for this server. Sends relocate message to all Friendica and"
+" Diaspora* contacts of all users."
+msgstr "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*."
 
-#: mod/settings.php:678 mod/settings.php:704
-msgid "Consumer Key"
-msgstr "Kuluttajan avain"
+#: mod/admin.php:1435
+msgid "RINO Encryption"
+msgstr "RINO-salaus"
 
-#: mod/settings.php:679 mod/settings.php:705
-msgid "Consumer Secret"
-msgstr "Kuluttajasalaisuus"
+#: mod/admin.php:1435
+msgid "Encryption layer between nodes."
+msgstr "Salauskerros solmujen välillä."
 
-#: mod/settings.php:680 mod/settings.php:706
-msgid "Redirect"
-msgstr "Uudelleenohjaus"
+#: mod/admin.php:1435
+msgid "Enabled"
+msgstr "Käytössä"
 
-#: mod/settings.php:681 mod/settings.php:707
-msgid "Icon url"
-msgstr "Kuvakkeen URL-osoite"
+#: mod/admin.php:1437
+msgid "Maximum number of parallel workers"
+msgstr "Enimmäismäärä rinnakkaisia workereitä"
 
-#: mod/settings.php:692
-msgid "You can't edit this application."
-msgstr "Et voi muokata tätä sovellusta."
+#: mod/admin.php:1437
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr ""
 
-#: mod/settings.php:735
-msgid "Connected Apps"
-msgstr "Yhdistetyt sovellukset"
+#: mod/admin.php:1438
+msgid "Don't use 'proc_open' with the worker"
+msgstr ""
 
-#: mod/settings.php:737 src/Object/Post.php:155 src/Object/Post.php:157
-msgid "Edit"
-msgstr "Muokkaa"
+#: mod/admin.php:1438
+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 worker calls in your crontab."
+msgstr ""
 
-#: mod/settings.php:739
-msgid "Client key starts with"
-msgstr "Asiakasavain alkaa"
+#: mod/admin.php:1439
+msgid "Enable fastlane"
+msgstr "Käytä fastlane"
 
-#: mod/settings.php:740
-msgid "No name"
-msgstr "Ei nimeä"
-
-#: mod/settings.php:741
-msgid "Remove authorization"
-msgstr "Poista lupa"
-
-#: mod/settings.php:752
-msgid "No Addon settings configured"
-msgstr "Lisäosa-asetukset puuttuvat"
-
-#: mod/settings.php:761
-msgid "Addon Settings"
-msgstr "Lisäosa-asetukset"
-
-#: mod/settings.php:782
-msgid "Additional Features"
-msgstr "Lisäominaisuuksia"
-
-#: mod/settings.php:805 src/Content/ContactSelector.php:83
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "enabled"
-msgstr "käytössä"
-
-#: mod/settings.php:805 mod/settings.php:806
-msgid "disabled"
-msgstr "pois käytöstä"
-
-#: mod/settings.php:805 mod/settings.php:806
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: mod/admin.php:1439
+msgid ""
+"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:806
-msgid "GNU Social (OStatus)"
-msgstr "GNU Social (OStatus)"
-
-#: mod/settings.php:837
-msgid "Email access is disabled on this site."
+#: mod/admin.php:1440
+msgid "Enable frontend worker"
 msgstr ""
 
-#: mod/settings.php:847
-msgid "General Social Media Settings"
-msgstr "Yleiset some asetukset"
-
-#: mod/settings.php:848
-msgid "Disable Content Warning"
-msgstr "Poista sisältövaroitus käytöstä"
-
-#: mod/settings.php:848
+#: mod/admin.php:1440
+#, php-format
 msgid ""
-"Users on networks like Mastodon or Pleroma are able to set a content warning"
-" field which collapse their post by default. This disables the automatic "
-"collapsing and sets the content warning as the post title. Doesn't affect "
-"any other content filtering you eventually set up."
+"When enabled the Worker process is triggered when backend access is "
+"performed \\x28e.g. messages being delivered\\x29. On smaller sites you "
+"might want to call %s/worker on a regular basis via an external cron job. "
+"You should only enable this option if you cannot utilize cron/scheduled jobs"
+" on your server."
 msgstr ""
 
-#: mod/settings.php:849
-msgid "Disable intelligent shortening"
+#: mod/admin.php:1442
+msgid "Subscribe to relay"
 msgstr ""
 
-#: mod/settings.php:849
+#: mod/admin.php:1442
 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."
+"Enables the receiving of public posts from the relay. They will be included "
+"in the search, subscribed tags and on the global community page."
 msgstr ""
 
-#: mod/settings.php:850
-msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
-msgstr "Automaattisesti seuraa GNU social (OStatus) seuraajat/mainitsijat"
+#: mod/admin.php:1443
+msgid "Relay server"
+msgstr ""
 
-#: mod/settings.php:850
+#: mod/admin.php:1443
 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."
+"Address of the relay server where public posts should be send to. For "
+"example https://relay.diasp.org"
 msgstr ""
 
-#: mod/settings.php:851
-msgid "Default group for OStatus contacts"
-msgstr "Oletusryhmä OStatus kontakteille"
-
-#: mod/settings.php:852
-msgid "Your legacy GNU Social account"
-msgstr "Vanha GNU social käyttäjätilisi"
+#: mod/admin.php:1444
+msgid "Direct relay transfer"
+msgstr ""
 
-#: mod/settings.php:852
+#: mod/admin.php:1444
 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."
+"Enables the direct transfer to other servers without using the relay servers"
 msgstr ""
 
-#: mod/settings.php:855
-msgid "Repair OStatus subscriptions"
-msgstr "Korjaa OStatus tilaukset"
-
-#: mod/settings.php:859
-msgid "Email/Mailbox Setup"
-msgstr "Sähköpostin asennus"
+#: mod/admin.php:1445
+msgid "Relay scope"
+msgstr ""
 
-#: mod/settings.php:860
+#: mod/admin.php:1445
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
+"Can be 'all' or 'tags'. 'all' means that every public post should be "
+"received. 'tags' means that only posts with selected tags should be "
+"received."
 msgstr ""
 
-#: mod/settings.php:861
-msgid "Last successful email check:"
-msgstr "Viimeisin onnistunut sähköpostitarkistus:"
-
-#: mod/settings.php:863
-msgid "IMAP server name:"
-msgstr "IMAP-palvelimen nimi:"
-
-#: mod/settings.php:864
-msgid "IMAP port:"
-msgstr "IMAP-porttti:"
-
-#: mod/settings.php:865
-msgid "Security:"
-msgstr "Turvallisuus:"
+#: mod/admin.php:1445
+msgid "all"
+msgstr "kaikki"
 
-#: mod/settings.php:865 mod/settings.php:870
-msgid "None"
-msgstr "Ei mitään"
+#: mod/admin.php:1445
+msgid "tags"
+msgstr "tunnisteet"
 
-#: mod/settings.php:866
-msgid "Email login name:"
-msgstr "Sähköpostitilin käyttäjätunnus:"
+#: mod/admin.php:1446
+msgid "Server tags"
+msgstr "palvelintunnisteet"
 
-#: mod/settings.php:867
-msgid "Email password:"
-msgstr "Sähköpostin salasana:"
+#: mod/admin.php:1446
+msgid "Comma separated list of tags for the 'tags' subscription."
+msgstr ""
 
-#: mod/settings.php:868
-msgid "Reply-to address:"
-msgstr "Vastausosoite:"
+#: mod/admin.php:1447
+msgid "Allow user tags"
+msgstr "Salli käyttäjien tunnisteet"
 
-#: mod/settings.php:869
-msgid "Send public posts to all email contacts:"
-msgstr "Lähetä julkiset julkaisut kaikille kontakteille:"
+#: mod/admin.php:1447
+msgid ""
+"If enabled, the tags from the saved searches will used for the 'tags' "
+"subscription in addition to the 'relay_server_tags'."
+msgstr ""
 
-#: mod/settings.php:870
-msgid "Action after import:"
+#: mod/admin.php:1475
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/settings.php:870 src/Content/Nav.php:191
-msgid "Mark as seen"
-msgstr "Merkitse luetuksi"
+#: mod/admin.php:1482
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Tietokannan rakenteen %s-päivitys onnistui."
 
-#: mod/settings.php:870
-msgid "Move to folder"
-msgstr "Siirrä kansioon"
+#: mod/admin.php:1485
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s"
 
-#: mod/settings.php:871
-msgid "Move to folder:"
-msgstr "Siirrä kansioon:"
+#: mod/admin.php:1498
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr ""
 
-#: mod/settings.php:914
+#: mod/admin.php:1500
 #, php-format
-msgid "%s - (Unsupported)"
-msgstr "%s - (Ei tueta)"
+msgid "Update %s was successfully applied."
+msgstr "%s-päivitys onnistui."
 
-#: mod/settings.php:916
+#: mod/admin.php:1503
 #, php-format
-msgid "%s - (Experimental)"
-msgstr "%s - (Kokeellinen)"
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr ""
 
-#: mod/settings.php:959
-msgid "Display Settings"
-msgstr "Näyttöasetukset"
+#: mod/admin.php:1506
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr ""
 
-#: mod/settings.php:965 mod/settings.php:989
-msgid "Display Theme:"
-msgstr "Käyttöliittymän teema:"
+#: mod/admin.php:1526
+msgid "No failed updates."
+msgstr "Ei epäonnistuineita päivityksiä."
 
-#: mod/settings.php:966
-msgid "Mobile Theme:"
-msgstr "Mobiiliteema:"
+#: mod/admin.php:1527
+msgid "Check database structure"
+msgstr "Tarkista tietokannan rakenne"
 
-#: mod/settings.php:967
-msgid "Suppress warning of insecure networks"
-msgstr ""
+#: mod/admin.php:1532
+msgid "Failed Updates"
+msgstr "Epäonnistuineita päivityksiä"
 
-#: mod/settings.php:967
+#: mod/admin.php:1533
 msgid ""
-"Should the system suppress the warning that the current group contains "
-"members of networks that can't receive non public postings."
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/settings.php:968
-msgid "Update browser every xx seconds"
-msgstr "Päivitä selain xx sekunnin välein"
+#: mod/admin.php:1534
+msgid "Mark success (if update was manually applied)"
+msgstr ""
 
-#: mod/settings.php:968
-msgid "Minimum of 10 seconds. Enter -1 to disable it."
+#: mod/admin.php:1535
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/settings.php:969
-msgid "Number of items to display per page:"
+#: mod/admin.php:1574
+#, 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:969 mod/settings.php:970
-msgid "Maximum of 100 items"
-msgstr "Enintään 100 kohdetta"
-
-#: mod/settings.php:970
-msgid "Number of items to display per page when viewed from mobile device:"
+#: mod/admin.php:1577
+#, 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\tIf you ever want to delete your account, you can do so at %1$s/removeme\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: mod/settings.php:971
-msgid "Don't show emoticons"
-msgstr "Piilota hymiöt"
+#: mod/admin.php:1621
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s käyttäjä estetty / poistettu estolistalta"
+msgstr[1] "%s käyttäjää estetty / poistettu estolistalta"
 
-#: mod/settings.php:972
-msgid "Calendar"
-msgstr "Kalenteri"
+#: mod/admin.php:1627
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s käyttäjä poistettu"
+msgstr[1] "%s käyttäjää poistettu"
 
-#: mod/settings.php:973
-msgid "Beginning of week:"
-msgstr "Viikon alku:"
+#: mod/admin.php:1674
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Käyttäjä '%s' poistettu"
 
-#: mod/settings.php:974
-msgid "Don't show notices"
-msgstr ""
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Käyttäjä '%s' poistettu estolistalta"
 
-#: mod/settings.php:975
-msgid "Infinite scroll"
-msgstr "Loputon selaaminen"
+#: mod/admin.php:1682
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Käyttäjä '%s' estetty"
 
-#: mod/settings.php:976
-msgid "Automatic updates only at the top of the network page"
+#: mod/admin.php:1743
+msgid "Private Forum"
 msgstr ""
 
-#: mod/settings.php:976
-msgid ""
-"When disabled, the network page is updated all the time, which could be "
-"confusing while reading."
-msgstr ""
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Register date"
+msgstr "Rekisteripäivämäärä"
 
-#: mod/settings.php:977
-msgid "Bandwith Saver Mode"
-msgstr "Kaistanleveyssäästömoodi"
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last login"
+msgstr "Viimeisin kirjautuminen"
 
-#: mod/settings.php:977
-msgid ""
-"When enabled, embedded content is not displayed on automatic updates, they "
-"only show on page reload."
-msgstr ""
+#: mod/admin.php:1796 mod/admin.php:1820
+msgid "Last item"
+msgstr "Viimeisin kohde"
 
-#: mod/settings.php:978
-msgid "Smart Threading"
+#: mod/admin.php:1796
+msgid "Type"
 msgstr ""
 
-#: mod/settings.php:978
-msgid ""
-"When enabled, suppress extraneous thread indentation while keeping it where "
-"it matters. Only works if threading is available and enabled."
-msgstr ""
+#: mod/admin.php:1803
+msgid "Add User"
+msgstr "Lisää käyttäjä"
 
-#: mod/settings.php:980
-msgid "General Theme Settings"
-msgstr "Yleiset teeman asetukset"
+#: mod/admin.php:1805
+msgid "User registrations waiting for confirm"
+msgstr ""
 
-#: mod/settings.php:981
-msgid "Custom Theme Settings"
-msgstr "Mukautetut teema-asetukset"
+#: mod/admin.php:1806
+msgid "User waiting for permanent deletion"
+msgstr ""
 
-#: mod/settings.php:982
-msgid "Content Settings"
-msgstr "Sisältöasetukset"
+#: mod/admin.php:1807
+msgid "Request date"
+msgstr "Pyynnön päivämäärä"
 
-#: mod/settings.php:983 view/theme/duepuntozero/config.php:73
-#: view/theme/frio/config.php:115 view/theme/quattro/config.php:75
-#: view/theme/vier/config.php:121
-msgid "Theme settings"
-msgstr "Teeman asetukset"
+#: mod/admin.php:1808
+msgid "No registrations."
+msgstr "Ei rekisteröintejä."
 
-#: mod/settings.php:1002
-msgid "Unable to find your profile. Please contact your admin."
-msgstr "Profiilisi ei löytynyt. Ota yhteyttä ylläpitäjään."
+#: mod/admin.php:1809
+msgid "Note from the user"
+msgstr ""
 
-#: mod/settings.php:1044
-msgid "Account Types"
-msgstr "Tilityypit"
+#: mod/admin.php:1810 mod/notifications.php:179 mod/notifications.php:264
+msgid "Approve"
+msgstr "Hyväksy"
 
-#: mod/settings.php:1045
-msgid "Personal Page Subtypes"
-msgstr "Henkilökohtaisen sivun alatyypit"
+#: mod/admin.php:1811
+msgid "Deny"
+msgstr "Kieltäydy"
 
-#: mod/settings.php:1046
-msgid "Community Forum Subtypes"
-msgstr "Yhteisöfoorumin alatyypit"
+#: mod/admin.php:1815
+msgid "Site admin"
+msgstr "Sivuston ylläpito"
 
-#: mod/settings.php:1053
-msgid "Personal Page"
-msgstr "Henkilökohtainen sivu"
+#: mod/admin.php:1816
+msgid "Account expired"
+msgstr "Tili vanhentunut"
 
-#: mod/settings.php:1054
-msgid "Account for a personal profile."
-msgstr "Henkilökohtaisen profiilin käyttäjätili."
+#: mod/admin.php:1819
+msgid "New User"
+msgstr "Uusi käyttäjä"
 
-#: mod/settings.php:1057
-msgid "Organisation Page"
-msgstr "Järjestön sivu"
+#: mod/admin.php:1820
+msgid "Deleted since"
+msgstr "Poistettu"
 
-#: mod/settings.php:1058
+#: mod/admin.php:1825
 msgid ""
-"Account for an organisation that automatically approves contact requests as "
-"\"Followers\"."
+"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:1061
-msgid "News Page"
-msgstr "Uutissivu"
-
-#: mod/settings.php:1062
+#: mod/admin.php:1826
 msgid ""
-"Account for a news reflector that automatically approves contact requests as"
-" \"Followers\"."
+"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:1065
-msgid "Community Forum"
-msgstr "Yhteisöfoorumi"
+#: mod/admin.php:1836
+msgid "Name of the new user."
+msgstr "Uuden käyttäjän nimi."
 
-#: mod/settings.php:1066
-msgid "Account for community discussions."
-msgstr ""
+#: mod/admin.php:1837
+msgid "Nickname"
+msgstr "Lempinimi"
 
-#: mod/settings.php:1069
-msgid "Normal Account Page"
-msgstr "Tavallinen käyttäjätili"
+#: mod/admin.php:1837
+msgid "Nickname of the new user."
+msgstr "Uuden käyttäjän lempinimi"
 
-#: mod/settings.php:1070
-msgid ""
-"Account for a regular personal profile that requires manual approval of "
-"\"Friends\" and \"Followers\"."
-msgstr ""
+#: mod/admin.php:1838
+msgid "Email address of the new user."
+msgstr "Uuden käyttäjän sähköpostiosoite."
 
-#: mod/settings.php:1073
-msgid "Soapbox Page"
-msgstr "Saarnatuoli sivu"
+#: mod/admin.php:1880
+#, php-format
+msgid "Addon %s disabled."
+msgstr "Lisäosa %s poistettu käytöstä."
 
-#: mod/settings.php:1074
-msgid ""
-"Account for a public profile that automatically approves contact requests as"
-" \"Followers\"."
-msgstr ""
+#: mod/admin.php:1884
+#, php-format
+msgid "Addon %s enabled."
+msgstr "Lisäosa %s käytössä."
 
-#: mod/settings.php:1077
-msgid "Public Forum"
-msgstr "Julkinen foorumi"
+#: mod/admin.php:1894 mod/admin.php:2143
+msgid "Disable"
+msgstr "Poista käytöstä"
 
-#: mod/settings.php:1078
-msgid "Automatically approves all contact requests."
-msgstr "Automaattisesti hyväksyy kaikki kontaktipyynnöt"
+#: mod/admin.php:1897 mod/admin.php:2146
+msgid "Enable"
+msgstr "Ota käyttöön"
 
-#: mod/settings.php:1081
-msgid "Automatic Friend Page"
+#: mod/admin.php:1919 mod/admin.php:2188
+msgid "Toggle"
+msgstr "Vaihda"
+
+#: mod/admin.php:1927 mod/admin.php:2197
+msgid "Author: "
+msgstr "Tekijä"
+
+#: mod/admin.php:1928 mod/admin.php:2198
+msgid "Maintainer: "
+msgstr "Ylläpitäjä:"
+
+#: mod/admin.php:1980
+msgid "Reload active addons"
 msgstr ""
 
-#: mod/settings.php:1082
+#: mod/admin.php:1985
+#, php-format
 msgid ""
-"Account for a popular profile that automatically approves contact requests "
-"as \"Friends\"."
+"There are currently no addons available on your node. You can find the "
+"official addon repository at %1$s and might find other interesting addons in"
+" the open addon registry at %2$s"
 msgstr ""
 
-#: mod/settings.php:1085
-msgid "Private Forum [Experimental]"
-msgstr "Yksityisfoorumi [kokeellinen]"
+#: mod/admin.php:2105
+msgid "No themes found."
+msgstr "Teemoja ei löytynyt."
 
-#: mod/settings.php:1086
-msgid "Requires manual approval of contact requests."
-msgstr ""
+#: mod/admin.php:2179
+msgid "Screenshot"
+msgstr "Kuvakaappaus"
 
-#: mod/settings.php:1097
-msgid "OpenID:"
-msgstr "OpenID:"
+#: mod/admin.php:2233
+msgid "Reload active themes"
+msgstr "Lataa aktiiviset teemat uudelleen"
 
-#: mod/settings.php:1097
-msgid "(Optional) Allow this OpenID to login to this account."
+#: mod/admin.php:2238
+#, php-format
+msgid "No themes found on the system. They should be placed in %1$s"
 msgstr ""
 
-#: mod/settings.php:1105
-msgid "Publish your default profile in your local site directory?"
-msgstr "Julkaise oletusprofiilisi tämän sivuston paikallisluettelossa?"
+#: mod/admin.php:2239
+msgid "[Experimental]"
+msgstr "[Kokeellinen]"
 
-#: mod/settings.php:1105
-#, php-format
-msgid ""
-"Your profile will be published in the global friendica directories (e.g. <a "
-"href=\"%s\">%s</a>). Your profile will be visible in public."
-msgstr ""
+#: mod/admin.php:2240
+msgid "[Unsupported]"
+msgstr "[Ei tueta]"
 
-#: mod/settings.php:1111
-msgid "Publish your default profile in the global social directory?"
-msgstr "Julkaise oletusprofiilisi maailmanlaajuisessa sosiaaliluettelossa?"
+#: mod/admin.php:2264
+msgid "Log settings updated."
+msgstr "Lokiasetukset päivitetty."
 
-#: mod/settings.php:1111
-#, php-format
+#: mod/admin.php:2296
+msgid "PHP log currently enabled."
+msgstr "PHP-loki käytössä"
+
+#: mod/admin.php:2298
+msgid "PHP log currently disabled."
+msgstr "PHP-loki pois käytöstä"
+
+#: mod/admin.php:2307
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: mod/admin.php:2311
+msgid "Enable Debugging"
+msgstr "Ota virheenkorjaustila käyttöön"
+
+#: mod/admin.php:2312
+msgid "Log file"
+msgstr "Lokitiedosto"
+
+#: mod/admin.php:2312
 msgid ""
-"Your profile will be published in this node's <a href=\"%s\">local "
-"directory</a>. Your profile details may be publicly visible depending on the"
-" system settings."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/settings.php:1118
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr ""
+#: mod/admin.php:2313
+msgid "Log level"
+msgstr "Lokitaso"
 
-#: mod/settings.php:1118
+#: mod/admin.php:2315
+msgid "PHP logging"
+msgstr "PHP-loki"
+
+#: mod/admin.php:2316
 msgid ""
-"Your contact list won't be shown in your default profile page. You can "
-"decide to show your contact list separately for each additional profile you "
-"create"
+"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/settings.php:1122
-msgid "Hide your profile details from anonymous viewers?"
+#: mod/admin.php:2347
+#, php-format
+msgid ""
+"Error trying to open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see "
+"if file %1$s exist and is readable."
 msgstr ""
 
-#: mod/settings.php:1122
+#: mod/admin.php:2351
+#, php-format
 msgid ""
-"Anonymous visitors will only see your profile picture, your display name and"
-" the nickname you are using on your profile page. Disables posting public "
-"messages to Diaspora and other networks."
+"Couldn't open <strong>%1$s</strong> log file.\\r\\n<br/>Check to see if file"
+" %1$s is readable."
 msgstr ""
 
-#: mod/settings.php:1126
-msgid "Allow friends to post to your profile page?"
-msgstr "Anna kavereiden julkaista profiilisivullasi?"
+#: mod/admin.php:2443
+#, php-format
+msgid "Lock feature %s"
+msgstr "Lukitse ominaisuus %s"
 
-#: mod/settings.php:1126
-msgid ""
-"Your contacts may write posts on your profile wall. These posts will be "
-"distributed to your contacts"
-msgstr ""
+#: mod/admin.php:2451
+msgid "Manage Additional Features"
+msgstr "Hallitse lisäominaisuudet"
 
-#: mod/settings.php:1130
-msgid "Allow friends to tag your posts?"
+#: mod/delegate.php:37
+msgid "Parent user not found."
 msgstr ""
 
-#: mod/settings.php:1130
-msgid "Your contacts can add additional tags to your posts."
+#: mod/delegate.php:144
+msgid "No parent user"
 msgstr ""
 
-#: mod/settings.php:1134
-msgid "Allow us to suggest you as a potential friend to new members?"
+#: mod/delegate.php:159
+msgid "Parent Password:"
 msgstr ""
 
-#: mod/settings.php:1134
+#: mod/delegate.php:159
 msgid ""
-"If you like, Friendica may suggest new members to add you as a contact."
+"Please enter the password of the parent account to legitimize your request."
 msgstr ""
 
-#: mod/settings.php:1138
-msgid "Permit unknown people to send you private mail?"
-msgstr "Salli yksityisviesit tuntemattomilta?"
+#: mod/delegate.php:164
+msgid "Parent User"
+msgstr ""
 
-#: mod/settings.php:1138
+#: mod/delegate.php:167
 msgid ""
-"Friendica network users may send you private messages even if they are not "
-"in your contact list."
+"Parent users have total control about this account, including the account "
+"settings. Please double check whom you give this access."
 msgstr ""
 
-#: mod/settings.php:1142
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profiili <strong>ei ole julkaistu</strong>."
-
-#: mod/settings.php:1148
-#, php-format
-msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
-msgstr "Identiteettisi osoite on <strong>'%s'</strong> tai '%s'."
-
-#: mod/settings.php:1155
-msgid "Automatically expire posts after this many days:"
+#: mod/delegate.php:170
+msgid "Delegates"
 msgstr ""
 
-#: mod/settings.php:1155
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Jos kenttä jää tyhjäksi, julkaisut eivät vanhene. Vanhentuneet julkaisut poistetaan."
-
-#: mod/settings.php:1156
-msgid "Advanced expiration settings"
+#: mod/delegate.php:172
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: mod/settings.php:1157
-msgid "Advanced Expiration"
+#: mod/delegate.php:173
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: mod/settings.php:1158
-msgid "Expire posts:"
-msgstr "Julkaisujen vanheneminen:"
-
-#: mod/settings.php:1159
-msgid "Expire personal notes:"
+#: mod/delegate.php:175
+msgid "Potential Delegates"
 msgstr ""
 
-#: mod/settings.php:1160
-msgid "Expire starred posts:"
-msgstr "Tähtimerkityt julkaisut vanhenee:"
+#: mod/delegate.php:177 mod/tagrm.php:98
+msgid "Remove"
+msgstr "Poista"
 
-#: mod/settings.php:1161
-msgid "Expire photos:"
-msgstr "Kuvat vanhenee:"
+#: mod/delegate.php:178
+msgid "Add"
+msgstr "Lisää"
 
-#: mod/settings.php:1162
-msgid "Only expire posts by others:"
+#: mod/delegate.php:179
+msgid "No entries."
 msgstr ""
 
-#: mod/settings.php:1192
-msgid "Account Settings"
-msgstr "Tiliasetukset"
+#: mod/photos.php:109 mod/photos.php:1713
+msgid "Recent Photos"
+msgstr "Viimeaikaisia kuvia"
 
-#: mod/settings.php:1200
-msgid "Password Settings"
-msgstr "Salasana-asetukset"
+#: mod/photos.php:112 mod/photos.php:1210 mod/photos.php:1715
+msgid "Upload New Photos"
+msgstr "Lähetä uusia kuvia"
 
-#: mod/settings.php:1202
-msgid "Leave password fields blank unless changing"
-msgstr "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa"
+#: mod/photos.php:184
+msgid "Contact information unavailable"
+msgstr "Kontaktin tietoja ei saatavilla"
 
-#: mod/settings.php:1203
-msgid "Current Password:"
-msgstr "Nykyinen salasana:"
+#: mod/photos.php:204
+msgid "Album not found."
+msgstr "Albumia ei ole."
 
-#: mod/settings.php:1203 mod/settings.php:1204
-msgid "Your current password to confirm the changes"
-msgstr ""
+#: mod/photos.php:234 mod/photos.php:245 mod/photos.php:1161
+msgid "Delete Album"
+msgstr "Poista albumi"
 
-#: mod/settings.php:1204
-msgid "Password:"
-msgstr "Salasana:"
+#: mod/photos.php:243
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?"
 
-#: mod/settings.php:1208
-msgid "Basic Settings"
-msgstr "Perusasetukset"
+#: mod/photos.php:310 mod/photos.php:321 mod/photos.php:1446
+msgid "Delete Photo"
+msgstr "Poista valokuva"
 
-#: mod/settings.php:1209 src/Model/Profile.php:740
-msgid "Full Name:"
-msgstr "Koko nimi:"
+#: mod/photos.php:319
+msgid "Do you really want to delete this photo?"
+msgstr "Haluatko varmasti poistaa kuvan?"
 
-#: mod/settings.php:1210
-msgid "Email Address:"
-msgstr "Sähköpostiosoite:"
+#: mod/photos.php:667
+msgid "a photo"
+msgstr "valokuva"
 
-#: mod/settings.php:1211
-msgid "Your Timezone:"
-msgstr "Aikavyöhyke:"
+#: mod/photos.php:667
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s merkattiin kuvaan %2$s ystävän %3$s toimesta"
 
-#: mod/settings.php:1212
-msgid "Your Language:"
-msgstr "Kieli:"
+#: mod/photos.php:769
+msgid "Image upload didn't complete, please try again"
+msgstr "Kuvan lataus ei onnistunut, yritä uudelleen"
 
-#: mod/settings.php:1212
+#: mod/photos.php:772
+msgid "Image file is missing"
+msgstr "Kuvatiedosto puuttuu"
+
+#: mod/photos.php:777
 msgid ""
-"Set the language we use to show you friendica interface and to send you "
-"emails"
+"Server can't accept new file upload at this time, please contact your "
+"administrator"
 msgstr ""
 
-#: mod/settings.php:1213
-msgid "Default Post Location:"
-msgstr "Julkaisun oletussijainti:"
-
-#: mod/settings.php:1214
-msgid "Use Browser Location:"
-msgstr "Käytä selaimen sijainti:"
+#: mod/photos.php:803
+msgid "Image file is empty."
+msgstr "Kuvatiedosto on tyhjä."
 
-#: mod/settings.php:1217
-msgid "Security and Privacy Settings"
-msgstr "Turvallisuus ja tietosuoja-asetukset"
+#: mod/photos.php:940
+msgid "No photos selected"
+msgstr "Ei valittuja kuvia"
 
-#: mod/settings.php:1219
-msgid "Maximum Friend Requests/Day:"
-msgstr "Kaveripyyntöraja päivässä:"
+#: mod/photos.php:1036 mod/videos.php:309
+msgid "Access to this item is restricted."
+msgstr "Pääsy kohteeseen on rajoitettu."
 
-#: mod/settings.php:1219 mod/settings.php:1248
-msgid "(to prevent spam abuse)"
-msgstr "(roskapostin estämiseksi)"
+#: mod/photos.php:1090
+msgid "Upload Photos"
+msgstr "Lähetä kuvia"
 
-#: mod/settings.php:1220
-msgid "Default Post Permissions"
-msgstr "Julkaisun oletuskäyttöoikeudet:"
+#: mod/photos.php:1094 mod/photos.php:1156
+msgid "New album name: "
+msgstr "Albumin uusi nimi: "
 
-#: mod/settings.php:1221
-msgid "(click to open/close)"
-msgstr "(klikkaa auki/kiinni)"
+#: mod/photos.php:1095
+msgid "or existing album name: "
+msgstr "tai olemassaolevan albumin nimi: "
 
-#: mod/settings.php:1231
-msgid "Default Private Post"
-msgstr ""
+#: mod/photos.php:1096
+msgid "Do not show a status post for this upload"
+msgstr "Älä näytä tilaviestiä tälle lähetykselle"
 
-#: mod/settings.php:1232
-msgid "Default Public Post"
-msgstr ""
+#: mod/photos.php:1167
+msgid "Edit Album"
+msgstr "Muokkaa albumia"
 
-#: mod/settings.php:1236
-msgid "Default Permissions for New Posts"
-msgstr "Uuden julkaisun oletuskäyttöoikeudet"
+#: mod/photos.php:1172
+msgid "Show Newest First"
+msgstr "Näytä uusin ensin"
 
-#: mod/settings.php:1248
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
+#: mod/photos.php:1174
+msgid "Show Oldest First"
+msgstr "Näytä vanhin ensin"
 
-#: mod/settings.php:1251
-msgid "Notification Settings"
-msgstr "Huomautusasetukset"
+#: mod/photos.php:1195 mod/photos.php:1698
+msgid "View Photo"
+msgstr "Näytä kuva"
 
-#: mod/settings.php:1252
-msgid "By default post a status message when:"
-msgstr "Oletuksena julkaise tilapäivitys kun:"
+#: mod/photos.php:1236
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa."
 
-#: mod/settings.php:1253
-msgid "accepting a friend request"
-msgstr "hyväksyt kaveripyynnön"
+#: mod/photos.php:1238
+msgid "Photo not available"
+msgstr "Kuva ei ole saatavilla"
 
-#: mod/settings.php:1254
-msgid "joining a forum/community"
-msgstr "liityt foorumiin/yhteisöön"
+#: mod/photos.php:1301
+msgid "View photo"
+msgstr "Näytä kuva"
 
-#: mod/settings.php:1255
-msgid "making an <em>interesting</em> profile change"
-msgstr "muokkaat <em>kiinnostavalla tavalla</em> profiiliasi"
+#: mod/photos.php:1301
+msgid "Edit photo"
+msgstr "Muokkaa kuvaa"
 
-#: mod/settings.php:1256
-msgid "Send a notification email when:"
-msgstr "Lähetä sähköposti-ilmoitus kun:"
+#: mod/photos.php:1302
+msgid "Use as profile photo"
+msgstr "Käytä profiilikuvana"
 
-#: mod/settings.php:1257
-msgid "You receive an introduction"
-msgstr "Vastaanotat kaverikutsun"
+#: mod/photos.php:1327
+msgid "View Full Size"
+msgstr "Näytä täysikokoisena"
 
-#: mod/settings.php:1258
-msgid "Your introductions are confirmed"
-msgstr "Kaverikutsusi on hyväksytty"
+#: mod/photos.php:1414
+msgid "Tags: "
+msgstr "Merkinnät:"
 
-#: mod/settings.php:1259
-msgid "Someone writes on your profile wall"
-msgstr "Joku kirjoittaa profiiliseinällesi"
+#: mod/photos.php:1417
+msgid "[Remove any tag]"
+msgstr "[Poista mikä tahansa merkintä]"
 
-#: mod/settings.php:1260
-msgid "Someone writes a followup comment"
-msgstr "Joku vastaa kommenttiin"
+#: mod/photos.php:1432
+msgid "New album name"
+msgstr "Uusi nimi albumille"
 
-#: mod/settings.php:1261
-msgid "You receive a private message"
-msgstr "Vastaanotat yksityisviestin"
+#: mod/photos.php:1433
+msgid "Caption"
+msgstr "Kuvateksti"
 
-#: mod/settings.php:1262
-msgid "You receive a friend suggestion"
-msgstr "Vastaanotat kaveriehdotuksen"
+#: mod/photos.php:1434
+msgid "Add a Tag"
+msgstr "Lisää merkintä"
 
-#: mod/settings.php:1263
-msgid "You are tagged in a post"
-msgstr "Sinut on merkitty julkaisuun"
+#: mod/photos.php:1434
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: mod/settings.php:1264
-msgid "You are poked/prodded/etc. in a post"
-msgstr "sinut on tökätty tms. julkaisussa"
+#: mod/photos.php:1435
+msgid "Do not rotate"
+msgstr "Älä kierrä"
 
-#: mod/settings.php:1266
-msgid "Activate desktop notifications"
-msgstr "Ota työpöytäilmoitukset käyttöön"
+#: mod/photos.php:1436
+msgid "Rotate CW (right)"
+msgstr "Käännä oikealle"
 
-#: mod/settings.php:1266
-msgid "Show desktop popup on new notifications"
-msgstr "Näytä uudet ilmoitukset ponnahdusikkunassa"
+#: mod/photos.php:1437
+msgid "Rotate CCW (left)"
+msgstr "Käännä vasemmalle"
 
-#: mod/settings.php:1268
-msgid "Text-only notification emails"
-msgstr "Ilmoitussähköposteissa vain tekstiä"
+#: mod/photos.php:1634
+msgid "Map"
+msgstr "Kartta"
 
-#: mod/settings.php:1270
-msgid "Send text only notification emails, without the html part"
-msgstr "Lähetä ilmoitussähköposteissa vain tekstiä ilman HTML-koodia"
+#: mod/photos.php:1704 mod/videos.php:387
+msgid "View Album"
+msgstr "Näytä albumi"
 
-#: mod/settings.php:1272
-msgid "Show detailled notifications"
-msgstr "Näytä yksityiskohtaiset ilmoitukset"
+#: mod/nogroup.php:43 mod/contacts.php:960
+msgid "Edit contact"
+msgstr "Muokkaa kontaktia"
 
-#: mod/settings.php:1274
-msgid ""
-"Per default, notifications are condensed to a single notification per item. "
-"When enabled every notification is displayed."
-msgstr ""
+#: mod/nogroup.php:63
+msgid "Contacts who are not members of a group"
+msgstr "Kontaktit jotka eivät kuulu ryhmään"
 
-#: mod/settings.php:1276
-msgid "Advanced Account/Page Type Settings"
-msgstr "Käyttäjätili/sivutyyppi lisäasetuksia"
+#: mod/community.php:46
+msgid "Community option not available."
+msgstr "Yhteisö vaihtoehto ei saatavilla."
 
-#: mod/settings.php:1277
-msgid "Change the behaviour of this account for special situations"
-msgstr ""
+#: mod/community.php:63
+msgid "Not available."
+msgstr "Ei saatavilla."
 
-#: mod/settings.php:1280
-msgid "Relocate"
-msgstr "Uudelleensijoitus"
+#: mod/community.php:76
+msgid "Local Community"
+msgstr "Paikallinen yhteisö"
 
-#: mod/settings.php:1281
-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/community.php:79
+msgid "Posts from local users on this server"
+msgstr "Tämän palvelimen julkaisut"
 
-#: mod/settings.php:1282
-msgid "Resend relocate message to contacts"
-msgstr ""
+#: mod/community.php:87
+msgid "Global Community"
+msgstr "Maailmanlaajuinen yhteisö"
 
-#: view/theme/duepuntozero/config.php:54 src/Model/User.php:502
-msgid "default"
-msgstr "oletus"
+#: mod/community.php:90
+msgid "Posts from users of the whole federated network"
+msgstr "Maailmanlaajuisen verkon julkaisut"
 
-#: view/theme/duepuntozero/config.php:55
-msgid "greenzero"
-msgstr "greenzero"
+#: mod/community.php:136 mod/search.php:228
+msgid "No results."
+msgstr "Ei tuloksia."
 
-#: view/theme/duepuntozero/config.php:56
-msgid "purplezero"
-msgstr "purplezero"
+#: mod/community.php:180
+msgid ""
+"This community stream shows all public posts received by this node. They may"
+" not reflect the opinions of this node’s users."
+msgstr ""
 
-#: view/theme/duepuntozero/config.php:57
-msgid "easterbunny"
-msgstr "easterbunny"
+#: mod/message.php:73 mod/wallmessage.php:57
+msgid "No recipient selected."
+msgstr "Vastaanottaja puuttuu."
 
-#: view/theme/duepuntozero/config.php:58
-msgid "darkzero"
-msgstr "darkzero"
+#: mod/message.php:77
+msgid "Unable to locate contact information."
+msgstr "Kontaktin tiedot ei löydy."
 
-#: view/theme/duepuntozero/config.php:59
-msgid "comix"
-msgstr "comix"
+#: mod/message.php:80 mod/wallmessage.php:63
+msgid "Message could not be sent."
+msgstr "Viestiä ei voitu lähettää."
 
-#: view/theme/duepuntozero/config.php:60
-msgid "slackr"
-msgstr "slackr"
+#: mod/message.php:83 mod/wallmessage.php:66
+msgid "Message collection failure."
+msgstr "Viestin noutaminen epäonnistui."
 
-#: view/theme/duepuntozero/config.php:74
-msgid "Variations"
-msgstr "Muunnelmat"
+#: mod/message.php:86 mod/wallmessage.php:69
+msgid "Message sent."
+msgstr "Viesti lähetetty."
 
-#: view/theme/frio/php/Image.php:25
-msgid "Repeat the image"
-msgstr "Toista kuva"
+#: mod/message.php:136
+msgid "Do you really want to delete this message?"
+msgstr "Haluatko varmasti poistaa viestin?"
 
-#: view/theme/frio/php/Image.php:25
-msgid "Will repeat your image to fill the background."
-msgstr ""
+#: mod/message.php:156
+msgid "Message deleted."
+msgstr "Viesti poistettu."
 
-#: view/theme/frio/php/Image.php:27
-msgid "Stretch"
-msgstr "Venytä"
+#: mod/message.php:185
+msgid "Conversation removed."
+msgstr "Keskustelu poistettu."
 
-#: view/theme/frio/php/Image.php:27
-msgid "Will stretch to width/height of the image."
-msgstr ""
+#: mod/message.php:250 mod/wallmessage.php:132
+msgid "Send Private Message"
+msgstr "Lähetä yksityisviesti"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize fill and-clip"
-msgstr ""
+#: mod/message.php:251 mod/message.php:421 mod/wallmessage.php:134
+msgid "To:"
+msgstr "Vastaanottaja:"
 
-#: view/theme/frio/php/Image.php:29
-msgid "Resize to fill and retain aspect ratio."
-msgstr ""
+#: mod/message.php:255 mod/message.php:423 mod/wallmessage.php:135
+msgid "Subject:"
+msgstr "Aihe:"
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize best fit"
-msgstr ""
+#: mod/message.php:291
+msgid "No messages."
+msgstr "Ei viestejä."
 
-#: view/theme/frio/php/Image.php:31
-msgid "Resize to best fit and retain aspect ratio."
-msgstr ""
+#: mod/message.php:330
+msgid "Message not available."
+msgstr "Viesti ei saatavilla."
 
-#: view/theme/frio/config.php:97
-msgid "Default"
-msgstr "Oletus"
+#: mod/message.php:397
+msgid "Delete message"
+msgstr "Poista viesti"
 
-#: view/theme/frio/config.php:109
-msgid "Note"
+#: mod/message.php:399 mod/message.php:500
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: view/theme/frio/config.php:109
-msgid "Check image permissions if all users are allowed to visit the image"
+#: mod/message.php:414 mod/message.php:497
+msgid "Delete conversation"
+msgstr "Poista keskustelu"
+
+#: mod/message.php:416
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: view/theme/frio/config.php:116
-msgid "Select scheme"
-msgstr "Valitse malli"
+#: mod/message.php:420
+msgid "Send Reply"
+msgstr "Lähetä vastaus"
 
-#: view/theme/frio/config.php:117
-msgid "Navigation bar background color"
-msgstr "Navigointipalkin taustaväri"
+#: mod/message.php:471
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Tuntematon lähettäjä - %s"
 
-#: view/theme/frio/config.php:118
-msgid "Navigation bar icon color "
-msgstr "Navigointipalkin kuvakkeiden väri"
+#: mod/message.php:473
+#, php-format
+msgid "You and %s"
+msgstr "Sinä ja %s"
 
-#: view/theme/frio/config.php:119
-msgid "Link color"
-msgstr "Linkin väri"
+#: mod/message.php:475
+#, php-format
+msgid "%s and You"
+msgstr "%s ja sinä"
 
-#: view/theme/frio/config.php:120
-msgid "Set the background color"
-msgstr "Valitse taustaväri"
+#: mod/message.php:503
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d viesti"
+msgstr[1] "%d viestiä"
 
-#: view/theme/frio/config.php:121
-msgid "Content background opacity"
-msgstr "Sisällön taustasameus"
+#: mod/videos.php:139
+msgid "Do you really want to delete this video?"
+msgstr "Haluatko varmasti poistaa tämän videon?"
 
-#: view/theme/frio/config.php:122
-msgid "Set the background image"
-msgstr "Valitse taustakuva"
+#: mod/videos.php:144
+msgid "Delete Video"
+msgstr "Poista video"
 
-#: view/theme/frio/config.php:127
-msgid "Login page background image"
-msgstr "Sisäänkirjautumissivun taustakuva"
+#: mod/videos.php:207
+msgid "No videos selected"
+msgstr "Ei videoita valittuna"
 
-#: view/theme/frio/config.php:130
-msgid "Login page background color"
-msgstr "Sisäänkirjautumissivun taustaväri"
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Viimeisimmät videot"
 
-#: view/theme/frio/config.php:130
-msgid "Leave background image and color empty for theme defaults"
-msgstr ""
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Lataa uusia videoita"
 
-#: view/theme/frio/theme.php:238
-msgid "Guest"
-msgstr "Vieras"
+#: mod/credits.php:18
+msgid "Credits"
+msgstr "Lopputekstit"
 
-#: view/theme/frio/theme.php:243
-msgid "Visitor"
-msgstr "Vierailija"
+#: mod/credits.php:19
+msgid ""
+"Friendica is a community project, that would not be possible without the "
+"help of many people. Here is a list of those who have contributed to the "
+"code or the translation of Friendica. Thank you all!"
+msgstr ""
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-#: src/Module/Login.php:311
-msgid "Logout"
-msgstr "Kirjaudu ulos"
+#: mod/unfollow.php:34
+msgid "Contact wasn't found or can't be unfollowed."
+msgstr ""
 
-#: view/theme/frio/theme.php:256 src/Content/Nav.php:97
-msgid "End this session"
-msgstr "Lopeta istunto"
+#: mod/unfollow.php:47
+msgid "Contact unfollowed"
+msgstr "Kontaktia ei enää seurata"
 
-#: view/theme/frio/theme.php:259 src/Content/Nav.php:100
-#: src/Content/Nav.php:181
-msgid "Your posts and conversations"
-msgstr "Omat julkaisut ja keskustelut"
+#: mod/unfollow.php:65 mod/dfrn_request.php:662 mod/follow.php:62
+msgid "Submit Request"
+msgstr "Lähetä pyyntö"
 
-#: view/theme/frio/theme.php:260 src/Content/Nav.php:101
-msgid "Your profile page"
-msgstr "Oma profiilisivu"
+#: mod/unfollow.php:73
+msgid "You aren't a friend of this contact."
+msgstr "Et ole kontaktin kaveri."
 
-#: view/theme/frio/theme.php:261 src/Content/Nav.php:102
-msgid "Your photos"
-msgstr "Omat kuvat"
+#: mod/unfollow.php:79
+msgid "Unfollowing is currently not supported by your network."
+msgstr "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi."
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-#: src/Model/Profile.php:914 src/Model/Profile.php:917
-msgid "Videos"
-msgstr "Videot"
+#: mod/unfollow.php:100 mod/contacts.php:599
+msgid "Disconnect/Unfollow"
+msgstr "Katkaise / Lopeta seuraaminen"
 
-#: view/theme/frio/theme.php:262 src/Content/Nav.php:103
-msgid "Your videos"
-msgstr "Omat videot"
+#: mod/unfollow.php:113 mod/dfrn_request.php:660 mod/follow.php:157
+msgid "Your Identity Address:"
+msgstr "Identiteettisi osoite:"
 
-#: view/theme/frio/theme.php:263 src/Content/Nav.php:104
-msgid "Your events"
-msgstr "Omat tapahtumat"
+#: mod/wall_attach.php:24 mod/wall_attach.php:32 mod/wall_attach.php:83
+#: mod/wall_upload.php:38 mod/wall_upload.php:54 mod/wall_upload.php:112
+#: mod/wall_upload.php:155 mod/wall_upload.php:158
+msgid "Invalid request."
+msgstr "Virheellinen pyyntö."
 
-#: view/theme/frio/theme.php:266 src/Content/Nav.php:178
-msgid "Conversations from your friends"
-msgstr "Kavereiden keskustelut"
+#: mod/wall_attach.php:101
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
 
-#: view/theme/frio/theme.php:267 src/Content/Nav.php:169
-#: src/Model/Profile.php:929 src/Model/Profile.php:940
-msgid "Events and Calendar"
-msgstr "Tapahtumat ja kalenteri"
+#: mod/wall_attach.php:101
+msgid "Or - did you try to upload an empty file?"
+msgstr "Yrititkö ladata tyhjän tiedoston?"
 
-#: view/theme/frio/theme.php:268 src/Content/Nav.php:195
-msgid "Private mail"
-msgstr "Yksityinen posti"
+#: mod/wall_attach.php:112
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Tiedosto ylittää kokorajoituksen %s"
 
-#: view/theme/frio/theme.php:269 src/Content/Nav.php:206
-msgid "Account settings"
-msgstr "Tiliasetukset"
+#: mod/wall_attach.php:136 mod/wall_attach.php:152
+msgid "File upload failed."
+msgstr "Tiedoston lähettäminen epäonnistui."
 
-#: view/theme/frio/theme.php:270 src/Content/Nav.php:212
-msgid "Manage/edit friends and contacts"
-msgstr "Hallitse/muokkaa kaverit ja kontaktit"
+#: mod/profile.php:194
+msgid "Tips for New Members"
+msgstr "Vinkkejä uusille käyttäjille"
 
-#: view/theme/quattro/config.php:76
-msgid "Alignment"
-msgstr "Kohdistaminen"
+#: mod/localtime.php:33
+msgid "Time Conversion"
+msgstr "Aikamuunnos"
 
-#: view/theme/quattro/config.php:76
-msgid "Left"
-msgstr "Vasemmalle"
+#: mod/localtime.php:35
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
 
-#: view/theme/quattro/config.php:76
-msgid "Center"
-msgstr "Keskelle"
+#: mod/localtime.php:39
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC-aika: %s"
 
-#: view/theme/quattro/config.php:77
-msgid "Color scheme"
-msgstr "Värimalli"
+#: mod/localtime.php:42
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aikavyöhyke: %s"
 
-#: view/theme/quattro/config.php:78
-msgid "Posts font size"
-msgstr "Julkaisujen fonttikoko"
+#: mod/localtime.php:46
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Muunnettu paikallisaika: %s"
 
-#: view/theme/quattro/config.php:79
-msgid "Textareas font size"
-msgstr "Tekstikenttien fonttikoko"
+#: mod/localtime.php:52
+msgid "Please select your timezone:"
+msgstr "Valitse aikavyöhykkeesi:"
 
-#: view/theme/vier/config.php:75
-msgid "Comma separated list of helper forums"
-msgstr ""
+#: mod/dfrn_request.php:94
+msgid "This introduction has already been accepted."
+msgstr "Tämä esittely on jo hyväksytty."
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:309
-msgid "don't show"
-msgstr "älä näytä"
+#: mod/dfrn_request.php:112 mod/dfrn_request.php:359
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja."
 
-#: view/theme/vier/config.php:115 src/Core/ACL.php:308
-msgid "show"
-msgstr "näytä"
+#: mod/dfrn_request.php:116 mod/dfrn_request.php:363
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä."
 
-#: view/theme/vier/config.php:122
-msgid "Set style"
-msgstr "Aseta tyyli"
+#: mod/dfrn_request.php:119 mod/dfrn_request.php:366
+msgid "Warning: profile location has no profile photo."
+msgstr "Varoitus: profiilin sijainnissa ei ole profiilikuvaa."
 
-#: view/theme/vier/config.php:123
-msgid "Community Pages"
-msgstr "Yhteisösivut"
+#: mod/dfrn_request.php:123 mod/dfrn_request.php:370
+#, 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] ""
 
-#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
-msgid "Community Profiles"
-msgstr "Yhteisöprofiilit"
+#: mod/dfrn_request.php:162
+msgid "Introduction complete."
+msgstr "Esittely valmis."
 
-#: view/theme/vier/config.php:125
-msgid "Help or @NewHere ?"
-msgstr ""
+#: mod/dfrn_request.php:199
+msgid "Unrecoverable protocol error."
+msgstr "Vakava protokollavirhe."
 
-#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
-msgid "Connect Services"
-msgstr "Yhdistä palvelut"
+#: mod/dfrn_request.php:226
+msgid "Profile unavailable."
+msgstr "Profiili ei saatavilla."
 
-#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
-msgid "Find Friends"
-msgstr "Etsi kavereita"
+#: mod/dfrn_request.php:248
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s on saanut liikaa yhteyspyyntöjä tänään."
 
-#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
-msgid "Last users"
-msgstr "Viimeisimmät käyttäjät"
+#: mod/dfrn_request.php:249
+msgid "Spam protection measures have been invoked."
+msgstr "Roskapostisuojaukset otettu käyttöön."
 
-#: view/theme/vier/theme.php:200
-msgid "Local Directory"
-msgstr "Paikallinen hakemisto"
+#: mod/dfrn_request.php:250
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä."
 
-#: view/theme/vier/theme.php:202 src/Content/Widget.php:65
-msgid "Similar Interests"
-msgstr "Yhteiset harrastukset"
+#: mod/dfrn_request.php:280
+msgid "Invalid locator"
+msgstr "Viallinen paikannin"
 
-#: view/theme/vier/theme.php:204 src/Content/Widget.php:67
-msgid "Invite Friends"
-msgstr "Kutsu kavereita"
+#: mod/dfrn_request.php:316
+msgid "You have already introduced yourself here."
+msgstr "Olet jo esitellyt itsesi täällä."
 
-#: view/theme/vier/theme.php:256 src/Content/ForumManager.php:127
-msgid "External link to forum"
-msgstr "Ulkoinen linkki foorumiin"
+#: mod/dfrn_request.php:319
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa."
 
-#: view/theme/vier/theme.php:292
-msgid "Quick Start"
-msgstr "Pika-aloitus"
+#: mod/dfrn_request.php:339
+msgid "Invalid profile URL."
+msgstr "Viallinen profiiliosoite."
 
-#: src/Core/UserImport.php:104
-msgid "Error decoding account file"
+#: mod/dfrn_request.php:419 mod/contacts.php:230
+msgid "Failed to update contact record."
+msgstr "Kontaktitietojen päivitys epäonnistui."
+
+#: mod/dfrn_request.php:439
+msgid "Your introduction has been sent."
+msgstr "Esittelysi lähetettiin."
+
+#: mod/dfrn_request.php:477
+msgid ""
+"Remote subscription can't be done for your network. Please subscribe "
+"directly on your system."
 msgstr ""
 
-#: src/Core/UserImport.php:110
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?"
+#: mod/dfrn_request.php:493
+msgid "Please login to confirm introduction."
+msgstr "Kirjaudu vahvistaaksesi esittelysi."
 
-#: src/Core/UserImport.php:118
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Käyttäjä '%s' on jo olemassa tällä palvelimella!"
+#: mod/dfrn_request.php:501
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin."
 
-#: src/Core/UserImport.php:151
-msgid "User creation error"
-msgstr "Virhe käyttäjän luomisessa"
+#: mod/dfrn_request.php:515 mod/dfrn_request.php:532
+msgid "Confirm"
+msgstr "Vahvista"
 
-#: src/Core/UserImport.php:169
-msgid "User profile creation error"
-msgstr "Virhe käyttäjäprofiilin luomisessa"
+#: mod/dfrn_request.php:527
+msgid "Hide this contact"
+msgstr "Piilota kontakti"
 
-#: src/Core/UserImport.php:213
+#: mod/dfrn_request.php:530
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakti ei tuotu"
-msgstr[1] "%d kontakteja ei tuotu"
-
-#: src/Core/UserImport.php:278
-msgid "Done. You can now login with your username and password"
-msgstr "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi."
+msgid "Welcome home %s."
+msgstr "Tervetuloa kotiin %s."
 
-#: src/Core/ACL.php:295
-msgid "Post to Email"
-msgstr "Viesti sähköpostiin"
+#: mod/dfrn_request.php:531
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Vahvista esittelysi/yhteyspyyntösi henkilölle %s."
 
-#: src/Core/ACL.php:301
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Piilota profiilitietosi tuntemattomilta?"
+#: mod/dfrn_request.php:642
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:"
 
-#: src/Core/ACL.php:300
+#: mod/dfrn_request.php:645
 #, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"%s\">follow "
+"this link to find a public Friendica site and join us today</a>."
 msgstr ""
 
-#: src/Core/ACL.php:307
-msgid "Visible to everybody"
-msgstr "Näkyvissä kaikille"
+#: mod/dfrn_request.php:650
+msgid "Friend/Connection Request"
+msgstr "Ystävä/yhteyspyyntö"
 
-#: src/Core/ACL.php:319
-msgid "Close"
-msgstr "Sulje"
+#: mod/dfrn_request.php:651
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@gnusocial.de"
+msgstr "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"
 
-#: src/Core/Console/NewPassword.php:78
-msgid "Enter new password: "
-msgstr "Syötä uusi salasana:"
+#: mod/dfrn_request.php:652 mod/follow.php:149
+msgid "Please answer the following:"
+msgstr "Vastaa seuraavaan:"
 
-#: src/Core/Console/NewPassword.php:83 src/Model/User.php:262
-msgid "Password can't be empty"
-msgstr "Salasanakenttä ei saa olla tyhjä"
+#: mod/dfrn_request.php:653 mod/follow.php:150
+#, php-format
+msgid "Does %s know you?"
+msgstr "Tunteeko %s sinut?"
 
-#: src/Core/NotificationsManager.php:171
-msgid "System"
-msgstr "Järjestelmä"
+#: mod/dfrn_request.php:654 mod/follow.php:151
+msgid "Add a personal note:"
+msgstr "Lisää oma merkintä:"
 
-#: src/Core/NotificationsManager.php:192 src/Content/Nav.php:124
-#: src/Content/Nav.php:181
-msgid "Home"
-msgstr "Koti"
+#: mod/dfrn_request.php:657
+msgid "GNU Social (Pleroma, Mastodon)"
+msgstr "GNU Social (Pleroma, Mastodon)"
 
-#: src/Core/NotificationsManager.php:199 src/Content/Nav.php:186
-msgid "Introductions"
-msgstr "Esittelyt"
+#: mod/dfrn_request.php:658
+msgid "Diaspora (Socialhome, Hubzilla)"
+msgstr "Diaspora (Socialhome, Hubzilla)"
 
-#: src/Core/NotificationsManager.php:256 src/Core/NotificationsManager.php:268
+#: mod/dfrn_request.php:659
 #, php-format
-msgid "%s commented on %s's post"
-msgstr "%s kommentoi julkaisuun jonka kirjoitti %s"
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Ã¤lä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi."
 
-#: src/Core/NotificationsManager.php:267
-#, php-format
-msgid "%s created a new post"
-msgstr "%s loi uuden julkaisun"
+#: mod/crepair.php:87
+msgid "Contact settings applied."
+msgstr "Kontaktiasetukset tallennettu."
 
-#: src/Core/NotificationsManager.php:281
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s tykkäsi julkaisusta jonka kirjoitti %s"
+#: mod/crepair.php:89
+msgid "Contact update failed."
+msgstr "Kontaktipäivitys epäonnistui."
 
-#: src/Core/NotificationsManager.php:294
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s ei tykännyt julkaisusta jonka kirjoitti %s"
+#: mod/crepair.php:114
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta."
 
-#: src/Core/NotificationsManager.php:307
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s osallistuu tapahtumaan jonka järjestää %s"
+#: mod/crepair.php:115
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista."
 
-#: src/Core/NotificationsManager.php:320
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s ei osallistu tapahtumaan jonka järjestää %s"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "No mirroring"
+msgstr "Ei peilausta"
 
-#: src/Core/NotificationsManager.php:333
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s ehkä osallistuu tapahtumaan jonka järjestää %s"
+#: mod/crepair.php:129
+msgid "Mirror as forwarded posting"
+msgstr "Peilaa välitettynä julkaisuna"
 
-#: src/Core/NotificationsManager.php:350
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ja %s ovat kavereita"
+#: mod/crepair.php:129 mod/crepair.php:131
+msgid "Mirror as my own posting"
+msgstr "Peilaa omana julkaisuna"
 
-#: src/Core/NotificationsManager.php:825
-msgid "Friend Suggestion"
-msgstr "Kaveriehdotus"
+#: mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Palaa kontaktin muokkaamiseen"
 
-#: src/Core/NotificationsManager.php:851
-msgid "Friend/Connect Request"
-msgstr "Ystävä/yhteyspyyntö"
+#: mod/crepair.php:146
+msgid "Refetch contact data"
+msgstr ""
 
-#: src/Core/NotificationsManager.php:851
-msgid "New Follower"
-msgstr "Uusi seuraaja"
-
-#: src/Util/Temporal.php:147 src/Model/Profile.php:760
-msgid "Birthday:"
-msgstr "Syntymäpäivä:"
-
-#: src/Util/Temporal.php:151
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "VVVV-KK-PP tai KK-PP"
-
-#: src/Util/Temporal.php:294
-msgid "never"
-msgstr "ei ikinä"
-
-#: src/Util/Temporal.php:300
-msgid "less than a second ago"
-msgstr "alle sekunti sitten"
-
-#: src/Util/Temporal.php:303
-msgid "year"
-msgstr "vuosi"
+#: mod/crepair.php:149
+msgid "Remote Self"
+msgstr ""
 
-#: src/Util/Temporal.php:303
-msgid "years"
-msgstr "vuotta"
+#: mod/crepair.php:152
+msgid "Mirror postings from this contact"
+msgstr "Peilaa tämän kontaktin julkaisut"
 
-#: src/Util/Temporal.php:304
-msgid "months"
-msgstr "kuukautta"
+#: mod/crepair.php:154
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: src/Util/Temporal.php:305
-msgid "weeks"
-msgstr "viikkoa"
+#: mod/crepair.php:159
+msgid "Account Nickname"
+msgstr "Tilin lempinimi"
 
-#: src/Util/Temporal.php:306
-msgid "days"
-msgstr "päivää"
+#: mod/crepair.php:160
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - ohittaa Nimen/Nimimerkin"
 
-#: src/Util/Temporal.php:307
-msgid "hour"
-msgstr "tunti"
+#: mod/crepair.php:161
+msgid "Account URL"
+msgstr "Tilin URL-osoite"
 
-#: src/Util/Temporal.php:307
-msgid "hours"
-msgstr "tuntia"
+#: mod/crepair.php:162
+msgid "Friend Request URL"
+msgstr "URL kaveripyyntöä varten"
 
-#: src/Util/Temporal.php:308
-msgid "minute"
-msgstr "minuutti"
+#: mod/crepair.php:163
+msgid "Friend Confirm URL"
+msgstr "URL kaverin vahvistusta varten"
 
-#: src/Util/Temporal.php:308
-msgid "minutes"
-msgstr "inuuttia"
+#: mod/crepair.php:164
+msgid "Notification Endpoint URL"
+msgstr "URL huomautuksia varten"
 
-#: src/Util/Temporal.php:309
-msgid "second"
-msgstr "sekunti"
+#: mod/crepair.php:165
+msgid "Poll/Feed URL"
+msgstr "URL Ã¤Ã¤nestyksiä/syötteitä varten"
 
-#: src/Util/Temporal.php:309
-msgid "seconds"
-msgstr "sekuntia"
+#: mod/crepair.php:166
+msgid "New photo from this URL"
+msgstr "Uusi kuva osoitteesta"
 
-#: src/Util/Temporal.php:318
+#: mod/home.php:39
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s sitten"
-
-#: src/Content/Text/BBCode.php:555
-msgid "view full size"
-msgstr "näytä täysikokoisena"
-
-#: src/Content/Text/BBCode.php:981 src/Content/Text/BBCode.php:1750
-#: src/Content/Text/BBCode.php:1751
-msgid "Image/photo"
-msgstr "Kuva/valokuva"
+msgid "Welcome to %s"
+msgstr "Tervetuloa %s"
 
-#: src/Content/Text/BBCode.php:1119
+#: mod/dfrn_poll.php:123 mod/dfrn_poll.php:543
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s toivottaa tervetulleeksi ystävän %2$s"
 
-#: src/Content/Text/BBCode.php:1677 src/Content/Text/BBCode.php:1699
-msgid "$1 wrote:"
-msgstr "$1 kirjoitti:"
+#: mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tökkää"
 
-#: src/Content/Text/BBCode.php:1759 src/Content/Text/BBCode.php:1760
-msgid "Encrypted content"
-msgstr "Salattu sisältö"
+#: mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr ""
 
-#: src/Content/Text/BBCode.php:1879
-msgid "Invalid source protocol"
-msgstr "Virheellinen lähdeprotokolla"
+#: mod/poke.php:194
+msgid "Recipient"
+msgstr "Vastaanottaja"
 
-#: src/Content/Text/BBCode.php:1890
-msgid "Invalid link protocol"
-msgstr "Virheellinen linkkiprotokolla"
+#: mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Valitse mitä haluat tehdä vastaanottajalle"
 
-#: src/Content/Nav.php:53
-msgid "Nothing new here"
-msgstr ""
+#: mod/poke.php:198
+msgid "Make this post private"
+msgstr "Muuta julkaisu yksityiseksi"
 
-#: src/Content/Nav.php:57
-msgid "Clear notifications"
-msgstr "Tyhjennä ilmoitukset"
+#: mod/oexchange.php:30
+msgid "Post successful."
+msgstr "Viestin lähetys onnistui."
 
-#: src/Content/Nav.php:105
-msgid "Personal notes"
-msgstr ""
+#: mod/viewsrc.php:12
+msgid "Access denied."
+msgstr "Käyttö estetty."
 
-#: src/Content/Nav.php:105
-msgid "Your personal notes"
-msgstr ""
+#: mod/notifications.php:37
+msgid "Invalid request identifier."
+msgstr "Virheellinen pyyntötunniste."
 
-#: src/Content/Nav.php:114
-msgid "Sign in"
-msgstr "Kirjaudu sisään"
+#: mod/notifications.php:46 mod/notifications.php:183
+#: mod/notifications.php:230
+msgid "Discard"
+msgstr "Hylkää"
 
-#: src/Content/Nav.php:124
-msgid "Home Page"
-msgstr "Kotisivu"
+#: mod/notifications.php:62 mod/notifications.php:182
+#: mod/notifications.php:266 mod/contacts.php:638 mod/contacts.php:828
+#: mod/contacts.php:1019
+msgid "Ignore"
+msgstr "Jätä huomiotta"
 
-#: src/Content/Nav.php:128
-msgid "Create an account"
-msgstr "Luo tili"
+#: mod/notifications.php:107
+msgid "Network Notifications"
+msgstr "Verkkoilmoitukset"
 
-#: src/Content/Nav.php:134
-msgid "Help and documentation"
-msgstr "Ohjeet ja dokmentointi"
+#: mod/notifications.php:119
+msgid "Personal Notifications"
+msgstr "Henkilökohtaiset ilmoitukset"
 
-#: src/Content/Nav.php:138
-msgid "Apps"
-msgstr "Sovellukset"
+#: mod/notifications.php:125
+msgid "Home Notifications"
+msgstr "Koti-ilmoitukset"
 
-#: src/Content/Nav.php:138
-msgid "Addon applications, utilities, games"
-msgstr "Lisäosa sovelluksia, apuohjelmia, pelejä"
+#: mod/notifications.php:155
+msgid "Show Ignored Requests"
+msgstr "Näytä ohitetut pyynnöt"
 
-#: src/Content/Nav.php:142
-msgid "Search site content"
-msgstr "Sivustohaku"
+#: mod/notifications.php:155
+msgid "Hide Ignored Requests"
+msgstr "Piilota ohitetut pyynnöt"
 
-#: src/Content/Nav.php:165
-msgid "Community"
-msgstr "Yhteisö"
+#: mod/notifications.php:167 mod/notifications.php:237
+msgid "Notification type: "
+msgstr "Ilmoitustyyppi:"
 
-#: src/Content/Nav.php:165
-msgid "Conversations on this and other servers"
-msgstr ""
+#: mod/notifications.php:170
+#, php-format
+msgid "suggested by %s"
+msgstr "ehdottaa %s"
 
-#: src/Content/Nav.php:172
-msgid "Directory"
-msgstr "Luettelo"
+#: mod/notifications.php:175 mod/notifications.php:254 mod/contacts.php:646
+msgid "Hide this contact from others"
+msgstr "Piilota kontakti muilta"
 
-#: src/Content/Nav.php:172
-msgid "People directory"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "Post a new friend activity"
 msgstr ""
 
-#: src/Content/Nav.php:174
-msgid "Information about this friendica instance"
-msgstr "Lisätietoja tästä Friendica -instanssista"
+#: mod/notifications.php:176 mod/notifications.php:255
+msgid "if applicable"
+msgstr "tarvittaessa"
 
-#: src/Content/Nav.php:179
-msgid "Network Reset"
-msgstr "Verkon nollaus"
+#: mod/notifications.php:198
+msgid "Claims to be known to you: "
+msgstr "Väittää tuntevansa sinut:"
 
-#: src/Content/Nav.php:179
-msgid "Load Network page with no filters"
-msgstr ""
+#: mod/notifications.php:199
+msgid "yes"
+msgstr "kyllä"
 
-#: src/Content/Nav.php:186
-msgid "Friend Requests"
-msgstr "Kaveripyynnöt"
+#: mod/notifications.php:199
+msgid "no"
+msgstr "ei"
 
-#: src/Content/Nav.php:190
-msgid "See all notifications"
-msgstr "Näytä kaikki ilmoitukset"
+#: mod/notifications.php:200 mod/notifications.php:205
+msgid "Shall your connection be bidirectional or not?"
+msgstr "Kaksisuuntainen yhteys?"
 
-#: src/Content/Nav.php:191
-msgid "Mark all system notifications seen"
+#: mod/notifications.php:201 mod/notifications.php:206
+#, 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 ""
 
-#: src/Content/Nav.php:196
-msgid "Inbox"
-msgstr "Saapuneet"
-
-#: src/Content/Nav.php:197
-msgid "Outbox"
-msgstr "Lähtevät"
-
-#: src/Content/Nav.php:201
-msgid "Manage"
-msgstr "Hallitse"
+#: mod/notifications.php:202
+#, php-format
+msgid ""
+"Accepting %s as a subscriber allows them to subscribe to your posts, but you"
+" will not receive updates from them in your news feed."
+msgstr ""
 
-#: src/Content/Nav.php:201
-msgid "Manage other pages"
-msgstr "Hallitse muita sivuja"
+#: mod/notifications.php:207
+#, 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 ""
 
-#: src/Content/Nav.php:209 src/Model/Profile.php:372
-msgid "Profiles"
-msgstr "Profiilit"
+#: mod/notifications.php:218
+msgid "Friend"
+msgstr "Kaveri"
 
-#: src/Content/Nav.php:209
-msgid "Manage/Edit Profiles"
-msgstr "Hallitse/muokka profiilit"
+#: mod/notifications.php:219
+msgid "Sharer"
+msgstr "Jakaja"
 
-#: src/Content/Nav.php:217
-msgid "Site setup and configuration"
-msgstr "Sivuston asennus ja asetukset"
+#: mod/notifications.php:219
+msgid "Subscriber"
+msgstr "Tilaaja"
 
-#: src/Content/Nav.php:220
-msgid "Navigation"
-msgstr "Navigointi"
+#: mod/notifications.php:275
+msgid "No introductions."
+msgstr "Ei esittelyjä."
 
-#: src/Content/Nav.php:220
-msgid "Site map"
-msgstr "Sivustokartta"
+#: mod/notifications.php:316
+msgid "Show unread"
+msgstr "Näytä lukemattomat"
 
-#: src/Content/Feature.php:79
-msgid "General Features"
-msgstr "Yleiset ominaisuudet"
+#: mod/notifications.php:316
+msgid "Show all"
+msgstr "Näytä kaikki"
 
-#: src/Content/Feature.php:81
-msgid "Multiple Profiles"
-msgstr ""
+#: mod/notifications.php:322
+#, php-format
+msgid "No more %s notifications."
+msgstr "Ei muita %s ilmoituksia."
 
-#: src/Content/Feature.php:81
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: mod/p.php:14
+msgid "Not Extended"
+msgstr "Ei laajennettu"
 
-#: src/Content/Feature.php:82
-msgid "Photo Location"
-msgstr "Kuvan sijainti"
+#: mod/p.php:21 mod/p.php:48 mod/p.php:57 mod/fetch.php:16 mod/fetch.php:52
+#: mod/fetch.php:65 mod/help.php:60 index.php:320
+msgid "Not Found"
+msgstr "Ei löydetty"
 
-#: src/Content/Feature.php:82
-msgid ""
-"Photo metadata is normally stripped. This extracts the location (if present)"
-" prior to stripping metadata and links it to a map."
-msgstr ""
+#: mod/follow.php:45
+msgid "The contact could not be added."
+msgstr "Kontaktia ei voitu lisätä."
 
-#: src/Content/Feature.php:83
-msgid "Export Public Calendar"
-msgstr "Vie julkinen kalenteri"
+#: mod/follow.php:73
+msgid "You already added this contact."
+msgstr "Olet jo lisännyt tämän kontaktin."
 
-#: src/Content/Feature.php:83
-msgid "Ability for visitors to download the public calendar"
-msgstr ""
+#: mod/follow.php:83
+msgid "Diaspora support isn't enabled. Contact can't be added."
+msgstr "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä."
 
-#: src/Content/Feature.php:88
-msgid "Post Composition Features"
-msgstr ""
+#: mod/follow.php:90
+msgid "OStatus support is disabled. Contact can't be added."
+msgstr "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä."
 
-#: src/Content/Feature.php:89
-msgid "Post Preview"
-msgstr "Viestin esikatselu"
+#: mod/follow.php:97
+msgid "The network type couldn't be detected. Contact can't be added."
+msgstr "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä."
 
-#: src/Content/Feature.php:89
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Tätä kalenteriformaattia ei tueta"
 
-#: src/Content/Feature.php:90
-msgid "Auto-mention Forums"
-msgstr ""
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Vientikelpoista dataa ei löytynyt"
 
-#: src/Content/Feature.php:90
-msgid ""
-"Add/remove mention when a forum page is selected/deselected in ACL window."
-msgstr ""
+#: mod/cal.php:332
+msgid "calendar"
+msgstr "kalenteri"
 
-#: src/Content/Feature.php:95
-msgid "Network Sidebar Widgets"
-msgstr ""
+#: mod/contacts.php:157
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d kontakti muokattu"
+msgstr[1] "%d kontakteja muokattu"
 
-#: src/Content/Feature.php:96
-msgid "Search by Date"
-msgstr "Päivämäärähaku"
+#: mod/contacts.php:184 mod/contacts.php:400
+msgid "Could not access contact record."
+msgstr "Yhteystietoon ei päästä käsiksi."
 
-#: src/Content/Feature.php:96
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: mod/contacts.php:194
+msgid "Could not locate selected profile."
+msgstr "Valittua profiilia ei löydy."
 
-#: src/Content/Feature.php:97 src/Content/Feature.php:127
-msgid "List Forums"
-msgstr "Näytä foorumit"
+#: mod/contacts.php:228
+msgid "Contact updated."
+msgstr "Yhteystietopäivitys onnistui."
 
-#: src/Content/Feature.php:97
-msgid "Enable widget to display the forums your are connected with"
-msgstr ""
+#: mod/contacts.php:421
+msgid "Contact has been blocked"
+msgstr "Henkilö on estetty"
 
-#: src/Content/Feature.php:98
-msgid "Group Filter"
-msgstr "Ryhmäsuodatin"
+#: mod/contacts.php:421
+msgid "Contact has been unblocked"
+msgstr "Henkilö on jälleen sallittu"
 
-#: src/Content/Feature.php:98
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: mod/contacts.php:432
+msgid "Contact has been ignored"
+msgstr "Henkilöä ei enää huomioida"
 
-#: src/Content/Feature.php:99
-msgid "Network Filter"
-msgstr "Verkkosuodatin"
+#: mod/contacts.php:432
+msgid "Contact has been unignored"
+msgstr "Henkilö on jälleen huomioituna."
 
-#: src/Content/Feature.php:99
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: mod/contacts.php:443
+msgid "Contact has been archived"
+msgstr "Henkilö on arkistoitu."
 
-#: src/Content/Feature.php:100
-msgid "Save search terms for re-use"
-msgstr ""
+#: mod/contacts.php:443
+msgid "Contact has been unarchived"
+msgstr "Henkilö on otettu pois arkistosta."
 
-#: src/Content/Feature.php:105
-msgid "Network Tabs"
-msgstr "Verkko välilehdet"
+#: mod/contacts.php:467
+msgid "Drop contact"
+msgstr "Poista kontakti"
 
-#: src/Content/Feature.php:106
-msgid "Network Personal Tab"
-msgstr ""
+#: mod/contacts.php:470 mod/contacts.php:823
+msgid "Do you really want to delete this contact?"
+msgstr "Haluatko todella poistaa tämän yhteystiedon?"
 
-#: src/Content/Feature.php:106
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+#: mod/contacts.php:488
+msgid "Contact has been removed."
+msgstr "Yhteystieto on poistettu."
 
-#: src/Content/Feature.php:107
-msgid "Network New Tab"
-msgstr ""
+#: mod/contacts.php:519
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Olet kaveri %s kanssa."
 
-#: src/Content/Feature.php:107
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
+#: mod/contacts.php:523
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Olet jakanut jotakin %s:n kanssa"
 
-#: src/Content/Feature.php:108
-msgid "Network Shared Links Tab"
-msgstr ""
+#: mod/contacts.php:527
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s jakaa sinulle jotakin."
 
-#: src/Content/Feature.php:108
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: mod/contacts.php:547
+msgid "Private communications are not available for this contact."
+msgstr "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle."
 
-#: src/Content/Feature.php:113
-msgid "Post/Comment Tools"
-msgstr "Julkaisu/kommentti työkalut"
+#: mod/contacts.php:549
+msgid "Never"
+msgstr "Ei koskaan"
 
-#: src/Content/Feature.php:114
-msgid "Multiple Deletion"
-msgstr ""
+#: mod/contacts.php:552
+msgid "(Update was successful)"
+msgstr "(Päivitys onnistui)"
 
-#: src/Content/Feature.php:114
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Valitse ja poista monta julkaisua/kommentia yhtaikaa"
+#: mod/contacts.php:552
+msgid "(Update was not successful)"
+msgstr "(Päivitys epäonnistui)"
 
-#: src/Content/Feature.php:115
-msgid "Edit Sent Posts"
-msgstr "Muokkaa lähetetyt julkaisut"
+#: mod/contacts.php:554 mod/contacts.php:992
+msgid "Suggest friends"
+msgstr "Ehdota ystäviä"
 
-#: src/Content/Feature.php:115
-msgid "Edit and correct posts and comments after sending"
-msgstr "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen"
+#: mod/contacts.php:558
+#, php-format
+msgid "Network type: %s"
+msgstr "Verkkotyyppi: %s"
 
-#: src/Content/Feature.php:116
-msgid "Tagging"
-msgstr "Tunnisteet"
+#: mod/contacts.php:563
+msgid "Communications lost with this contact!"
+msgstr "Yhteys tähän henkilöön menetettiin!"
 
-#: src/Content/Feature.php:116
-msgid "Ability to tag existing posts"
+#: mod/contacts.php:569
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Post Categories"
-msgstr "Julkaisuluokat"
+#: mod/contacts.php:571
+msgid ""
+"Fetch information like preview pictures, title and teaser from the feed "
+"item. You can activate this if the feed doesn't contain much text. Keywords "
+"are taken from the meta header in the feed item and are posted as hash tags."
+msgstr ""
 
-#: src/Content/Feature.php:117
-msgid "Add categories to your posts"
-msgstr "Luokittele julkaisusi"
+#: mod/contacts.php:573
+msgid "Fetch information"
+msgstr "Nouda tiedot"
 
-#: src/Content/Feature.php:118 src/Content/Widget.php:200
-msgid "Saved Folders"
-msgstr "Tallennetut kansiot"
+#: mod/contacts.php:574
+msgid "Fetch keywords"
+msgstr "Nouda avainsanat"
 
-#: src/Content/Feature.php:118
-msgid "Ability to file posts under folders"
-msgstr ""
+#: mod/contacts.php:575
+msgid "Fetch information and keywords"
+msgstr "Nouda tiedot ja avainsanat"
 
-#: src/Content/Feature.php:119
-msgid "Dislike Posts"
-msgstr ""
+#: mod/contacts.php:608
+msgid "Contact"
+msgstr "Kontakti"
 
-#: src/Content/Feature.php:119
-msgid "Ability to dislike posts/comments"
+#: mod/contacts.php:611
+msgid "Profile Visibility"
+msgstr "Profiilin näkyvyys"
+
+#: mod/contacts.php:612
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti."
+
+#: mod/contacts.php:613
+msgid "Contact Information / Notes"
+msgstr "Yhteystiedot / Muistiinpanot"
+
+#: mod/contacts.php:614
+msgid "Their personal note"
 msgstr ""
 
-#: src/Content/Feature.php:120
-msgid "Star Posts"
-msgstr "Tähtimerkityt julkaisut"
+#: mod/contacts.php:616
+msgid "Edit contact notes"
+msgstr "Muokkaa yhteystietojen muistiinpanoja"
 
-#: src/Content/Feature.php:120
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Salli julkaisujen tähtimerkintä"
+#: mod/contacts.php:620
+msgid "Block/Unblock contact"
+msgstr "Estä/salli henkilö"
 
-#: src/Content/Feature.php:121
-msgid "Mute Post Notifications"
-msgstr "Mykistä julkaisuilmoitukset"
+#: mod/contacts.php:621
+msgid "Ignore contact"
+msgstr "Jätä henkilö huomiotta"
 
-#: src/Content/Feature.php:121
-msgid "Ability to mute notifications for a thread"
+#: mod/contacts.php:622
+msgid "Repair URL settings"
+msgstr "Korjaa URL-asetukset"
+
+#: mod/contacts.php:623
+msgid "View conversations"
+msgstr "Katso keskusteluja"
+
+#: mod/contacts.php:628
+msgid "Last update:"
+msgstr "Viimeksi päivitetty:"
+
+#: mod/contacts.php:630
+msgid "Update public posts"
+msgstr "Päivitä julkiset postaukset"
+
+#: mod/contacts.php:632 mod/contacts.php:1002
+msgid "Update now"
+msgstr "Päivitä nyt"
+
+#: mod/contacts.php:638 mod/contacts.php:828 mod/contacts.php:1019
+msgid "Unignore"
+msgstr "Ota huomioon"
+
+#: mod/contacts.php:642
+msgid "Currently blocked"
+msgstr "Estetty tällä hetkellä"
+
+#: mod/contacts.php:643
+msgid "Currently ignored"
+msgstr "Jätetty huomiotta tällä hetkellä"
+
+#: mod/contacts.php:644
+msgid "Currently archived"
+msgstr "Arkistoitu tällä hetkellä"
+
+#: mod/contacts.php:645
+msgid "Awaiting connection acknowledge"
+msgstr "Odotetaan yhteyden kuittausta"
+
+#: mod/contacts.php:646
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: src/Content/Feature.php:126
-msgid "Advanced Profile Settings"
-msgstr "Profiilin lisäasetukset"
+#: mod/contacts.php:647
+msgid "Notification for new posts"
+msgstr "Uusien postausten ilmoitus"
 
-#: src/Content/Feature.php:127
-msgid "Show visitors public community forums at the Advanced Profile Page"
+#: mod/contacts.php:647
+msgid "Send a notification of every new post of this contact"
+msgstr "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista"
+
+#: mod/contacts.php:650
+msgid "Blacklisted keywords"
+msgstr "Kielletyt avainsanat"
+
+#: mod/contacts.php:650
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: src/Content/Feature.php:128
-msgid "Tag Cloud"
-msgstr "Tunnistepilvi"
+#: mod/contacts.php:667
+msgid "Actions"
+msgstr "Toimenpiteet"
 
-#: src/Content/Feature.php:128
-msgid "Provide a personal tag cloud on your profile page"
+#: mod/contacts.php:670
+msgid "Contact Settings"
+msgstr "Yhteystietoasetukset"
+
+#: mod/contacts.php:711
+msgid "Suggestions"
+msgstr "Ehdotukset"
+
+#: mod/contacts.php:714
+msgid "Suggest potential friends"
+msgstr "Ehdota mahdollisille ystäville"
+
+#: mod/contacts.php:722
+msgid "Show all contacts"
+msgstr "Näytä kaikki yhteystiedot"
+
+#: mod/contacts.php:727
+msgid "Unblocked"
+msgstr "Sallittu"
+
+#: mod/contacts.php:730
+msgid "Only show unblocked contacts"
+msgstr "Näytä vain sallitut henkilöt"
+
+#: mod/contacts.php:735
+msgid "Blocked"
+msgstr "Estetty"
+
+#: mod/contacts.php:738
+msgid "Only show blocked contacts"
+msgstr "Näytä vain estetyt henkilöt"
+
+#: mod/contacts.php:743
+msgid "Ignored"
+msgstr "Jätetty huomiotta"
+
+#: mod/contacts.php:746
+msgid "Only show ignored contacts"
+msgstr "Näytä vain henkilöt, jotka jätetty huomiotta"
+
+#: mod/contacts.php:751
+msgid "Archived"
+msgstr "Arkistoitu"
+
+#: mod/contacts.php:754
+msgid "Only show archived contacts"
+msgstr "Näytä vain arkistoidut henkilöt"
+
+#: mod/contacts.php:759
+msgid "Hidden"
+msgstr "Piilotettu"
+
+#: mod/contacts.php:762
+msgid "Only show hidden contacts"
+msgstr "Näytä vain piilotetut henkilöt"
+
+#: mod/contacts.php:818
+msgid "Search your contacts"
+msgstr "Etsi henkilöitä"
+
+#: mod/contacts.php:819 mod/search.php:236
+#, php-format
+msgid "Results for: %s"
+msgstr "Tulokset haulla: %s"
+
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Archive"
+msgstr "Arkistoi"
+
+#: mod/contacts.php:829 mod/contacts.php:1027
+msgid "Unarchive"
+msgstr "Poista arkistosta"
+
+#: mod/contacts.php:832
+msgid "Batch Actions"
 msgstr ""
 
-#: src/Content/Feature.php:129
-msgid "Display Membership Date"
-msgstr "Näytä liittymispäivämäärä"
+#: mod/contacts.php:878
+msgid "View all contacts"
+msgstr "Näytä kaikki kontaktit"
 
-#: src/Content/Feature.php:129
-msgid "Display membership date in profile"
-msgstr "Näytä liittymispäivämäärä profiilissa"
+#: mod/contacts.php:886 mod/common.php:140
+msgid "Common Friends"
+msgstr "Yhteisiä kavereita"
 
-#: src/Content/OEmbed.php:253
-msgid "Embedding disabled"
-msgstr "Upottaminen poistettu käytöstä"
+#: mod/contacts.php:889
+msgid "View all common friends"
+msgstr "Näytä kaikki yhteiset kaverit"
 
-#: src/Content/OEmbed.php:373
-msgid "Embedded content"
-msgstr "Upotettu sisältö"
+#: mod/contacts.php:898
+msgid "Advanced Contact Settings"
+msgstr "Kontakti-lisäasetukset"
 
-#: src/Content/Widget/CalendarExport.php:61
-msgid "Export"
-msgstr "Vie"
+#: mod/contacts.php:930
+msgid "Mutual Friendship"
+msgstr "Yhteinen kaveruus"
 
-#: src/Content/Widget/CalendarExport.php:62
-msgid "Export calendar as ical"
-msgstr "Vie kalenteri ical -tiedostona"
+#: mod/contacts.php:934
+msgid "is a fan of yours"
+msgstr "on fanisi"
 
-#: src/Content/Widget/CalendarExport.php:63
-msgid "Export calendar as csv"
-msgstr "Vie kalenteri csv-tiedostona"
+#: mod/contacts.php:938
+msgid "you are a fan of"
+msgstr "fanitat"
 
-#: src/Content/Widget.php:33
-msgid "Add New Contact"
-msgstr "Lisää uusi kontakti"
+#: mod/contacts.php:1013
+msgid "Toggle Blocked status"
+msgstr "Estetty tila päälle/pois"
 
-#: src/Content/Widget.php:34
-msgid "Enter address or web location"
-msgstr "Syötä verkko-osoite"
+#: mod/contacts.php:1021
+msgid "Toggle Ignored status"
+msgstr "Sivuuta/seuraa"
 
-#: src/Content/Widget.php:35
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esimerkki: bob@example.com, http://example.com/barbara"
+#: mod/contacts.php:1029
+msgid "Toggle Archive status"
+msgstr "Arkistotila päälle/pois"
 
-#: src/Content/Widget.php:53
+#: mod/contacts.php:1037
+msgid "Delete contact"
+msgstr "Poista kontakti"
+
+#: mod/bookmarklet.php:51
+msgid "The post was created"
+msgstr "Julkaisu luotu"
+
+#: mod/lostpass.php:27
+msgid "No valid account found."
+msgstr "Voimassa olevaa tiliä ei löytynyt."
+
+#: mod/lostpass.php:39
+msgid "Password reset request issued. Check your email."
+msgstr "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi."
+
+#: mod/lostpass.php:45
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d kutsu saatavilla"
-msgstr[1] "%d kutsuja saatavilla"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr ""
 
-#: src/Content/Widget.php:59
-msgid "Find People"
-msgstr "Löydä ihmisiä"
+#: mod/lostpass.php:56
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link soon to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr ""
 
-#: src/Content/Widget.php:60
-msgid "Enter name or interest"
-msgstr "Syötä nimi tai harrastus"
+#: mod/lostpass.php:73
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Salasanan nollauspyyntö kohteessa %s"
 
-#: src/Content/Widget.php:62
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esim. Matti Meikäläinen, kalastus yms."
+#: mod/lostpass.php:89
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui."
 
-#: src/Content/Widget.php:66
-msgid "Random Profile"
-msgstr "Satunnainen profiili"
+#: mod/lostpass.php:102
+msgid "Request has expired, please make a new one."
+msgstr "Pyyntö on vanhentunut, tehkää uusi pyyntö."
 
-#: src/Content/Widget.php:68
-msgid "View Global Directory"
-msgstr "Katso maailmanlaajuista luetteloa"
+#: mod/lostpass.php:117
+msgid "Forgot your Password?"
+msgstr "Unohditko salasanasi?"
 
-#: src/Content/Widget.php:159
-msgid "Networks"
-msgstr "Verkot"
+#: mod/lostpass.php:118
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr ""
 
-#: src/Content/Widget.php:162
-msgid "All Networks"
-msgstr "Kaikki verkot"
+#: mod/lostpass.php:120
+msgid "Reset"
+msgstr "Nollaus"
 
-#: src/Content/Widget.php:203 src/Content/Widget.php:243
-msgid "Everything"
-msgstr "Kaikki"
+#: mod/lostpass.php:137
+msgid "Your password has been reset as requested."
+msgstr "Salasanasi on nollattu pyynnöstäsi."
 
-#: src/Content/Widget.php:240
-msgid "Categories"
-msgstr "Luokat"
+#: mod/lostpass.php:138
+msgid "Your new password is"
+msgstr "Uusi salasanasi on"
 
-#: src/Content/Widget.php:307
+#: mod/lostpass.php:139
+msgid "Save or copy your new password - and then"
+msgstr "Tallenna tai kopioi uusi salasanasi, ja sitten"
+
+#: mod/lostpass.php:140
+msgid "click here to login"
+msgstr "kirjaudu klikkaamalla tästä"
+
+#: mod/lostpass.php:141
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen."
+
+#: mod/lostpass.php:149
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d yhteinen kontakti"
-msgstr[1] "%d yhteistä kontaktia"
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\tsomething that you will remember).\n"
+"\t\t"
+msgstr ""
 
-#: src/Content/ContactSelector.php:55
-msgid "Frequently"
-msgstr "Usein"
+#: mod/lostpass.php:155
+#, php-format
+msgid ""
+"\n"
+"\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t%2$s\n"
+"\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t"
+msgstr "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1$s\n\t\t\tKäyttäjätunnus:\t%2$s\n\t\t\tSalasana:\t%3$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t"
 
-#: src/Content/ContactSelector.php:56
-msgid "Hourly"
-msgstr "Tunneittain"
+#: mod/lostpass.php:169
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Salasanasi on vaihdettu sivustolla %s"
 
-#: src/Content/ContactSelector.php:57
-msgid "Twice daily"
-msgstr "Kahdesti päivässä"
+#: mod/install.php:114
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica viestinnän palvelin - asetukset"
 
-#: src/Content/ContactSelector.php:58
-msgid "Daily"
-msgstr "Päivittäin"
+#: mod/install.php:120
+msgid "Could not connect to database."
+msgstr "Tietokantaan ei saada yhteyttä."
+
+#: mod/install.php:124
+msgid "Could not create table."
+msgstr "Taulun luominen epäonnistui."
+
+#: mod/install.php:130
+msgid "Your Friendica site database has been installed."
+msgstr "Friendica-sivustosi tietokanta on asennettu."
+
+#: mod/install.php:135
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää."
+
+#: mod/install.php:136 mod/install.php:208 mod/install.php:558
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lue tiedosto \"INSTALL.txt\"."
+
+#: mod/install.php:148
+msgid "Database already in use."
+msgstr "Tietokanta on jo käytössä."
+
+#: mod/install.php:205
+msgid "System check"
+msgstr "Järjestelmän tarkistus"
+
+#: mod/install.php:210
+msgid "Check again"
+msgstr "Tarkista uudelleen"
 
-#: src/Content/ContactSelector.php:59
-msgid "Weekly"
-msgstr "Viikottain"
+#: mod/install.php:230
+msgid "Database connection"
+msgstr "Tietokantayhteys"
 
-#: src/Content/ContactSelector.php:60
-msgid "Monthly"
-msgstr "Kuukausittain"
+#: mod/install.php:231
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden."
 
-#: src/Content/ContactSelector.php:80
-msgid "OStatus"
-msgstr "OStatus"
+#: mod/install.php:232
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä."
 
-#: src/Content/ContactSelector.php:81
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: mod/install.php:233
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat."
 
-#: src/Content/ContactSelector.php:84
-msgid "Facebook"
-msgstr "Facebook"
+#: mod/install.php:237
+msgid "Database Server Name"
+msgstr "Tietokannan palvelimen nimi"
 
-#: src/Content/ContactSelector.php:85
-msgid "Zot!"
-msgstr "Zot!"
+#: mod/install.php:238
+msgid "Database Login Name"
+msgstr "Tietokannan käyttäjän nimi"
 
-#: src/Content/ContactSelector.php:86
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: mod/install.php:239
+msgid "Database Login Password"
+msgstr "Tietokannan käyttäjän salasana"
 
-#: src/Content/ContactSelector.php:87
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: mod/install.php:239
+msgid "For security reasons the password must not be empty"
+msgstr "Turvallisuussyistä salasanakenttä ei saa olla tyhjä"
 
-#: src/Content/ContactSelector.php:88
-msgid "MySpace"
-msgstr "MySpace"
+#: mod/install.php:240
+msgid "Database Name"
+msgstr "Tietokannan nimi"
 
-#: src/Content/ContactSelector.php:89
-msgid "Google+"
-msgstr "Google+"
+#: mod/install.php:241 mod/install.php:281
+msgid "Site administrator email address"
+msgstr "Sivuston ylläpitäjän sähköpostiosoite"
 
-#: src/Content/ContactSelector.php:90
-msgid "pump.io"
-msgstr "pump.io"
+#: mod/install.php:241 mod/install.php:281
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää."
 
-#: src/Content/ContactSelector.php:91
-msgid "Twitter"
-msgstr "Twitter"
+#: mod/install.php:245 mod/install.php:284
+msgid "Please select a default timezone for your website"
+msgstr "Valitse oletusaikavyöhyke sivustollesi"
 
-#: src/Content/ContactSelector.php:92
-msgid "Diaspora Connector"
-msgstr "Diaspora -liitin"
+#: mod/install.php:271
+msgid "Site settings"
+msgstr "Sivuston asetukset"
 
-#: src/Content/ContactSelector.php:93
-msgid "GNU Social Connector"
-msgstr "GNU social -liitin"
+#: mod/install.php:285
+msgid "System Language:"
+msgstr "Järjestelmän kieli:"
 
-#: src/Content/ContactSelector.php:94
-msgid "pnut"
-msgstr "pnut"
+#: mod/install.php:285
+msgid ""
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Valitse Friendica-sivustosi oletuskieli."
 
-#: src/Content/ContactSelector.php:95
-msgid "App.net"
-msgstr "App.net"
+#: mod/install.php:325
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista."
 
-#: src/Content/ContactSelector.php:125
-msgid "Male"
-msgstr "Mies"
+#: mod/install.php:326
+msgid ""
+"If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</a>"
+msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Female"
-msgstr "Nainen"
+#: mod/install.php:330
+msgid "PHP executable path"
+msgstr "Polku PHP-ohjelmaan"
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Male"
-msgstr "Tällä hetkellä mies"
+#: mod/install.php:330
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta."
 
-#: src/Content/ContactSelector.php:125
-msgid "Currently Female"
-msgstr "Tällä hetkellä nainen"
+#: mod/install.php:335
+msgid "Command line PHP"
+msgstr "Komentorivi-PHP"
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Male"
-msgstr "Enimmäkseen mies"
+#: mod/install.php:344
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr ""
 
-#: src/Content/ContactSelector.php:125
-msgid "Mostly Female"
-msgstr "Enimmäkseen nainen"
+#: mod/install.php:345
+msgid "Found PHP version: "
+msgstr "PHP-versio löydetty:"
 
-#: src/Content/ContactSelector.php:125
-msgid "Transgender"
-msgstr "Transsukupuolinen"
+#: mod/install.php:347
+msgid "PHP cli binary"
+msgstr "PHP cli -binääritiedosto"
 
-#: src/Content/ContactSelector.php:125
-msgid "Intersex"
-msgstr "Intersukupuolinen"
+#: mod/install.php:358
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\"."
 
-#: src/Content/ContactSelector.php:125
-msgid "Transsexual"
-msgstr "Transsukupuolinen"
+#: mod/install.php:359
+msgid "This is required for message delivery to work."
+msgstr "Asetus vaaditaan viestien lähettämiseen."
 
-#: src/Content/ContactSelector.php:125
-msgid "Hermaphrodite"
-msgstr "Hermafrodiitti"
+#: mod/install.php:361
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: src/Content/ContactSelector.php:125
-msgid "Neuter"
-msgstr "Neutri"
+#: mod/install.php:384
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia."
 
-#: src/Content/ContactSelector.php:125
-msgid "Non-specific"
-msgstr "Ei-binäärinen"
+#: mod/install.php:385
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: src/Content/ContactSelector.php:125
-msgid "Other"
-msgstr "Toinen"
+#: mod/install.php:387
+msgid "Generate encryption keys"
+msgstr "Luo salausavaimet"
 
-#: src/Content/ContactSelector.php:147
-msgid "Males"
-msgstr "Miehet"
+#: mod/install.php:394
+msgid "libCurl PHP module"
+msgstr "PHP-moduuli libCurl"
 
-#: src/Content/ContactSelector.php:147
-msgid "Females"
-msgstr "Naiset"
+#: mod/install.php:395
+msgid "GD graphics PHP module"
+msgstr "PHP-moduuli GD graphics"
 
-#: src/Content/ContactSelector.php:147
-msgid "Gay"
-msgstr "Homo"
+#: mod/install.php:396
+msgid "OpenSSL PHP module"
+msgstr "PHP-moduuli OpenSSL"
 
-#: src/Content/ContactSelector.php:147
-msgid "Lesbian"
-msgstr "Lesbo"
+#: mod/install.php:397
+msgid "PDO or MySQLi PHP module"
+msgstr "PDO tai MySQLi PHP-moduuli"
 
-#: src/Content/ContactSelector.php:147
-msgid "No Preference"
-msgstr ""
+#: mod/install.php:398
+msgid "mb_string PHP module"
+msgstr "PHP-moduuli mb_string"
 
-#: src/Content/ContactSelector.php:147
-msgid "Bisexual"
-msgstr "Biseksuaali"
+#: mod/install.php:399
+msgid "XML PHP module"
+msgstr "XML PHP-moduuli"
 
-#: src/Content/ContactSelector.php:147
-msgid "Autosexual"
-msgstr ""
+#: mod/install.php:400
+msgid "iconv PHP module"
+msgstr "iconv PHP-moduuli"
 
-#: src/Content/ContactSelector.php:147
-msgid "Abstinent"
-msgstr "Selibaatissa elävä"
+#: mod/install.php:401
+msgid "POSIX PHP module"
+msgstr "POSIX PHP-moduuli"
 
-#: src/Content/ContactSelector.php:147
-msgid "Virgin"
-msgstr "Neitsyt"
+#: mod/install.php:405 mod/install.php:407
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite -moduuli"
+
+#: mod/install.php:405
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:147
-msgid "Deviant"
-msgstr ""
+#: mod/install.php:413
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:147
-msgid "Fetish"
-msgstr ""
+#: mod/install.php:417
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:147
-msgid "Oodles"
-msgstr ""
+#: mod/install.php:421
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:147
-msgid "Nonsexual"
-msgstr "Aseksuaali"
+#: mod/install.php:425
+msgid "Error: PDO or MySQLi PHP module required but not installed."
+msgstr "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Single"
-msgstr "Sinkku"
+#: mod/install.php:429
+msgid "Error: The MySQL driver for PDO is not installed."
+msgstr "Virhe: PDO:n MySQL-ajuri ei ole asennettu"
 
-#: src/Content/ContactSelector.php:169
-msgid "Lonely"
-msgstr "Yksinäinen"
+#: mod/install.php:433
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Available"
-msgstr ""
+#: mod/install.php:437
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Unavailable"
-msgstr ""
+#: mod/install.php:441
+msgid "Error: POSIX PHP module required but not installed."
+msgstr "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Has crush"
-msgstr "Ihastunut"
+#: mod/install.php:451
+msgid "Error, XML PHP module required but not installed."
+msgstr "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Infatuated"
-msgstr "Hullaantunut"
+#: mod/install.php:463
+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 "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu."
 
-#: src/Content/ContactSelector.php:169
-msgid "Dating"
-msgstr "Seurustelee"
+#: mod/install.php:464
+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 "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit."
 
-#: src/Content/ContactSelector.php:169
-msgid "Unfaithful"
+#: mod/install.php:465
+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 "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa."
+
+#: mod/install.php:466
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Sex Addict"
+#: mod/install.php:469
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php on kirjoitettava"
+
+#: mod/install.php:479
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169 src/Model/User.php:519
-msgid "Friends"
-msgstr "Kaverit"
+#: mod/install.php:480
+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 ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Friends/Benefits"
+#: mod/install.php:481
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Casual"
+#: mod/install.php:482
+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 ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Engaged"
-msgstr "Kihloissa"
+#: mod/install.php:485
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 on kirjoitettava"
 
-#: src/Content/ContactSelector.php:169
-msgid "Married"
-msgstr "Naimisissa"
+#: mod/install.php:501
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset."
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily married"
-msgstr ""
+#: mod/install.php:503
+msgid "Url rewrite is working"
+msgstr "URL-osoitteen uudellenkirjoitus toimii"
 
-#: src/Content/ContactSelector.php:169
-msgid "Partners"
-msgstr "Kumppanit"
+#: mod/install.php:522
+msgid "ImageMagick PHP extension is not installed"
+msgstr "ImageMagick PHP-laajennus ei ole asetettu"
 
-#: src/Content/ContactSelector.php:169
-msgid "Cohabiting"
-msgstr "Avoliitossa"
+#: mod/install.php:524
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP-laajennus on asetettu"
 
-#: src/Content/ContactSelector.php:169
-msgid "Common law"
-msgstr "Avoliitossa"
+#: mod/install.php:526
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagik tukee GIF-formaattia"
 
-#: src/Content/ContactSelector.php:169
-msgid "Happy"
-msgstr "Iloinen"
+#: mod/install.php:533
+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 "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen."
 
-#: src/Content/ContactSelector.php:169
-msgid "Not looking"
-msgstr "Ei etsi"
+#: mod/install.php:556
+msgid "<h1>What next</h1>"
+msgstr "<h1>Mitä seuraavaksi</h1>"
 
-#: src/Content/ContactSelector.php:169
-msgid "Swinger"
-msgstr ""
+#: mod/install.php:557
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"worker."
+msgstr "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille."
 
-#: src/Content/ContactSelector.php:169
-msgid "Betrayed"
-msgstr "Petetty"
+#: mod/install.php:560
+#, php-format
+msgid ""
+"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
+"and register as new user. Remember to use the same email you have entered as"
+" administrator email. This will allow you to enter the site admin panel."
+msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Separated"
+#: mod/babel.php:23
+msgid "Source input"
 msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Unstable"
-msgstr "Epävakaa"
+#: mod/babel.php:29
+msgid "BBCode::toPlaintext"
+msgstr ""
 
-#: src/Content/ContactSelector.php:169
-msgid "Divorced"
-msgstr "Eronnut"
+#: mod/babel.php:35
+msgid "BBCode::convert (raw HTML)"
+msgstr "BBCode::convert (raaka HTML)"
 
-#: src/Content/ContactSelector.php:169
-msgid "Imaginarily divorced"
-msgstr ""
+#: mod/babel.php:40
+msgid "BBCode::convert"
+msgstr "BBCode::convert"
 
-#: src/Content/ContactSelector.php:169
-msgid "Widowed"
-msgstr "Leski"
+#: mod/babel.php:46
+msgid "BBCode::convert => HTML::toBBCode"
+msgstr "BBCode::convert => HTML::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Uncertain"
-msgstr "Epävarma"
+#: mod/babel.php:52
+msgid "BBCode::toMarkdown"
+msgstr "BBCode::toMarkdown"
 
-#: src/Content/ContactSelector.php:169
-msgid "It's complicated"
-msgstr "Se on monimutkaista"
+#: mod/babel.php:58
+msgid "BBCode::toMarkdown => Markdown::convert"
+msgstr "BBCode::toMarkdown => Markdown::convert"
 
-#: src/Content/ContactSelector.php:169
-msgid "Don't care"
-msgstr "Ei ole väliä"
+#: mod/babel.php:64
+msgid "BBCode::toMarkdown => Markdown::toBBCode"
+msgstr "BBCode::toMarkdown => Markdown::toBBCode"
 
-#: src/Content/ContactSelector.php:169
-msgid "Ask me"
-msgstr "Kysy minulta"
+#: mod/babel.php:70
+msgid "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
+msgstr "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"
 
-#: src/Database/DBStructure.php:32
-msgid "There are no tables on MyISAM."
+#: mod/babel.php:77
+msgid "Source input \\x28Diaspora format\\x29"
 msgstr ""
 
-#: src/Database/DBStructure.php:75
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
+#: mod/babel.php:83
+msgid "Markdown::toBBCode"
+msgstr "Markdown::toBBCode"
 
-#: src/Database/DBStructure.php:80
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Virheviesti on\n[pre]%s[/pre]"
+#: mod/babel.php:90
+msgid "Raw HTML input"
+msgstr "Raaka HTML-syöte"
+
+#: mod/babel.php:95
+msgid "HTML Input"
+msgstr "HTML-syöte"
+
+#: mod/babel.php:101
+msgid "HTML::toBBCode"
+msgstr "HTML::toBBCode"
+
+#: mod/babel.php:107
+msgid "HTML::toPlaintext"
+msgstr "HTML::toPlaintext"
 
-#: src/Database/DBStructure.php:191
-#, php-format
-msgid ""
-"\n"
-"Error %d occurred during database update:\n"
-"%s\n"
-msgstr "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n"
+#: mod/babel.php:115
+msgid "Source text"
+msgstr "Lähdeteksti"
 
-#: src/Database/DBStructure.php:194
-msgid "Errors encountered performing database changes: "
-msgstr "Tietokannan muokkauksessa tapahtui virheitä:"
+#: mod/babel.php:116
+msgid "BBCode"
+msgstr "BBCode"
 
-#: src/Database/DBStructure.php:210
-msgid ": Database update"
-msgstr ": Tietokannan päivitys"
+#: mod/babel.php:117
+msgid "Markdown"
+msgstr "Markdown"
 
-#: src/Database/DBStructure.php:460
-#, php-format
-msgid "%s: updating %s table."
-msgstr "%s: päivitetään %s-taulukkoa."
+#: mod/babel.php:118
+msgid "HTML"
+msgstr "HTML"
 
-#: src/Model/Mail.php:40 src/Model/Mail.php:174
-msgid "[no subject]"
-msgstr "[ei aihetta]"
+#: mod/lockview.php:38 mod/lockview.php:46
+msgid "Remote privacy information not available."
+msgstr "Yksityisyyden etätietoja ei saatavilla."
 
-#: src/Model/Item.php:1676
-#, php-format
-msgid "%1$s is attending %2$s's %3$s"
-msgstr "%1$s osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+#: mod/lockview.php:55
+msgid "Visible to:"
+msgstr "Näkyvissä:"
 
-#: src/Model/Item.php:1681
+#: mod/wallmessage.php:49 mod/wallmessage.php:112
 #, php-format
-msgid "%1$s is not attending %2$s's %3$s"
-msgstr "%1$s ei osallistu tapahtumaan %3$s, jonka järjestää %2$s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui."
+
+#: mod/wallmessage.php:60
+msgid "Unable to check your home location."
+msgstr "Kotisijaintisi ei voitu tarkistaa."
 
-#: src/Model/Item.php:1686
+#: mod/wallmessage.php:86 mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Vastaanottaja puuttuu."
+
+#: mod/wallmessage.php:133
 #, php-format
-msgid "%1$s may attend %2$s's %3$s"
-msgstr "%1$s ehkä osallistuu tapahtumaan %3$s, jonka järjestää %2$s"
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr ""
 
-#: src/Model/Contact.php:657
-msgid "Drop Contact"
-msgstr "Poista kontakti"
+#: mod/match.php:48
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi."
 
-#: src/Model/Contact.php:1060
-msgid "Organisation"
-msgstr "Järjestö"
+#: mod/match.php:104
+msgid "is interested in:"
+msgstr "on kiinnostunut seuraavista aiheista:"
 
-#: src/Model/Contact.php:1063
-msgid "News"
-msgstr "Uutiset"
+#: mod/match.php:120
+msgid "Profile Match"
+msgstr "Vastaavien profiilien haku"
 
-#: src/Model/Contact.php:1066
-msgid "Forum"
-msgstr "Keskustelupalsta"
+#: mod/maintenance.php:24
+msgid "System down for maintenance"
+msgstr "Järjestelmä poiskytketty huoltoa varten"
 
-#: src/Model/Contact.php:1245
-msgid "Connect URL missing."
-msgstr "Yhteys URL-linkki puuttuu."
+#: mod/tagrm.php:47
+msgid "Tag removed"
+msgstr "Tägi poistettiin"
 
-#: src/Model/Contact.php:1254
-msgid ""
-"The contact could not be added. Please check the relevant network "
-"credentials in your Settings -> Social Networks page."
-msgstr ""
+#: mod/tagrm.php:85
+msgid "Remove Item Tag"
+msgstr "Poista tägi"
 
-#: src/Model/Contact.php:1301
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
+#: mod/tagrm.php:87
+msgid "Select a tag to remove: "
+msgstr "Valitse tägi poistamista varten:"
 
-#: src/Model/Contact.php:1302 src/Model/Contact.php:1316
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt."
+#: mod/feedtest.php:20
+msgid "You must be logged in to use this module"
+msgstr "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia"
 
-#: src/Model/Contact.php:1314
-msgid "The profile address specified does not provide adequate information."
-msgstr "Annettu profiiliosoite ei sisällä riittävästi tietoa."
+#: mod/feedtest.php:48
+msgid "Source URL"
+msgstr "Lähde URL"
 
-#: src/Model/Contact.php:1319
-msgid "An author or name was not found."
+#: mod/search.php:105
+msgid "Only logged in users are permitted to perform a search."
 msgstr ""
 
-#: src/Model/Contact.php:1322
-msgid "No browser URL could be matched to this address."
-msgstr ""
+#: mod/search.php:129
+msgid "Too Many Requests"
+msgstr "Liian monta pyyntöä"
 
-#: src/Model/Contact.php:1325
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: mod/search.php:130
+msgid "Only one search per minute is permitted for not logged in users."
 msgstr ""
 
-#: src/Model/Contact.php:1326
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
+#: mod/search.php:234
+#, php-format
+msgid "Items tagged with: %s"
+msgstr "Kohteet joilla tunnisteet: %s"
 
-#: src/Model/Contact.php:1332
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
+#: mod/uexport.php:44
+msgid "Export account"
+msgstr "Vie tili"
 
-#: src/Model/Contact.php:1337
+#: mod/uexport.php:44
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle."
 
-#: src/Model/Contact.php:1388
-msgid "Unable to retrieve contact information."
-msgstr "Kontaktin tietoja ei voitu hakea."
+#: mod/uexport.php:45
+msgid "Export all"
+msgstr "Vie kaikki"
 
-#: src/Model/Contact.php:1605
-#, php-format
-msgid "%s's birthday"
-msgstr "%s: syntymäpäivä"
+#: mod/uexport.php:45
+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 "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)"
 
-#: src/Model/Contact.php:1606 src/Protocol/DFRN.php:1483
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Hyvää syntymäpäivää %s"
+#: mod/newmember.php:11
+msgid "Welcome to Friendica"
+msgstr "Tervetuloa Friendicaan"
 
-#: src/Model/Event.php:53 src/Model/Event.php:70 src/Model/Event.php:419
-#: src/Model/Event.php:882
-msgid "Starts:"
-msgstr "Alkaa:"
+#: mod/newmember.php:12
+msgid "New Member Checklist"
+msgstr "Uuden jäsenen tarkistuslista"
 
-#: src/Model/Event.php:56 src/Model/Event.php:76 src/Model/Event.php:420
-#: src/Model/Event.php:886
-msgid "Finishes:"
-msgstr "Päättyy:"
+#: mod/newmember.php:14
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr ""
 
-#: src/Model/Event.php:368
-msgid "all-day"
-msgstr "koko päivä"
+#: mod/newmember.php:15
+msgid "Getting Started"
+msgstr "Ensiaskeleet"
 
-#: src/Model/Event.php:391
-msgid "Jun"
-msgstr "Kes."
+#: mod/newmember.php:17
+msgid "Friendica Walk-Through"
+msgstr "Friendica -läpikäynti"
 
-#: src/Model/Event.php:394
-msgid "Sept"
-msgstr "Syy."
+#: mod/newmember.php:17
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr ""
 
-#: src/Model/Event.php:417
-msgid "No events to display"
-msgstr "Ei näytettäviä tapahtumia."
+#: mod/newmember.php:21
+msgid "Go to Your Settings"
+msgstr "Omat Asetukset"
 
-#: src/Model/Event.php:543
-msgid "l, F j"
-msgstr "l, F j"
+#: mod/newmember.php:21
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr ""
 
-#: src/Model/Event.php:566
-msgid "Edit event"
-msgstr "Muokkaa tapahtumaa"
+#: mod/newmember.php:22
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr ""
 
-#: src/Model/Event.php:567
-msgid "Duplicate event"
-msgstr "Monista tapahtuma"
+#: mod/newmember.php:26
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr ""
 
-#: src/Model/Event.php:568
-msgid "Delete event"
-msgstr "Poista tapahtuma"
+#: mod/newmember.php:27
+msgid "Edit Your Profile"
+msgstr "Muokkaa profiilisi"
 
-#: src/Model/Event.php:815
-msgid "D g:i A"
+#: mod/newmember.php:27
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
 msgstr ""
 
-#: src/Model/Event.php:816
-msgid "g:i A"
+#: mod/newmember.php:28
+msgid "Profile Keywords"
+msgstr "Profiilin avainsanat"
+
+#: mod/newmember.php:28
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
 msgstr ""
 
-#: src/Model/Event.php:901 src/Model/Event.php:903
-msgid "Show map"
-msgstr "Näytä kartta"
+#: mod/newmember.php:30
+msgid "Connecting"
+msgstr "Yhdistetään"
 
-#: src/Model/Event.php:902
-msgid "Hide map"
-msgstr "Piilota kartta"
+#: mod/newmember.php:36
+msgid "Importing Emails"
+msgstr "Sähköpostin tuominen"
 
-#: src/Model/Group.php:44
+#: mod/newmember.php:36
 msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
 msgstr ""
 
-#: src/Model/Group.php:341
-msgid "Default privacy group for new contacts"
-msgstr "Oletusryhmä uusille kontakteille"
-
-#: src/Model/Group.php:374
-msgid "Everybody"
-msgstr "Kaikki"
-
-#: src/Model/Group.php:394
-msgid "edit"
-msgstr "muokkaa"
+#: mod/newmember.php:39
+msgid "Go to Your Contacts Page"
+msgstr "Näytä minun kontaktit"
 
-#: src/Model/Group.php:418
-msgid "Edit group"
-msgstr "Muokkaa ryhmää"
+#: mod/newmember.php:39
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr ""
 
-#: src/Model/Group.php:419
-msgid "Contacts not in any group"
-msgstr "Kontaktit ilman ryhmää"
+#: mod/newmember.php:40
+msgid "Go to Your Site's Directory"
+msgstr "Näytä oman sivuston luettelo"
 
-#: src/Model/Group.php:420
-msgid "Create a new group"
-msgstr "Luo uusi ryhmä"
+#: mod/newmember.php:40
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr ""
 
-#: src/Model/Group.php:422
-msgid "Edit groups"
-msgstr "Muokkaa ryhmiä"
+#: mod/newmember.php:41
+msgid "Finding New People"
+msgstr "Kavereiden hankkiminen"
 
-#: src/Model/Profile.php:97
-msgid "Requested account is not available."
-msgstr "Pyydetty käyttäjätili ei ole saatavilla."
+#: mod/newmember.php:41
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr ""
 
-#: src/Model/Profile.php:168 src/Model/Profile.php:399
-#: src/Model/Profile.php:861
-msgid "Edit profile"
-msgstr "Muokkaa profiilia"
+#: mod/newmember.php:45
+msgid "Group Your Contacts"
+msgstr "Järjestä kontaktit ryhmiin"
 
-#: src/Model/Profile.php:336
-msgid "Atom feed"
-msgstr "Atom -syöte"
+#: mod/newmember.php:45
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr ""
 
-#: src/Model/Profile.php:372
-msgid "Manage/edit profiles"
-msgstr "Hallitse/muokkaa profiilit"
+#: mod/newmember.php:48
+msgid "Why Aren't My Posts Public?"
+msgstr "Miksi julkaisuni eivät ole julkisia?"
 
-#: src/Model/Profile.php:550 src/Model/Profile.php:643
-msgid "g A l F d"
+#: mod/newmember.php:48
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
 msgstr ""
 
-#: src/Model/Profile.php:551
-msgid "F d"
-msgstr ""
+#: mod/newmember.php:52
+msgid "Getting Help"
+msgstr "Avun saaminen"
 
-#: src/Model/Profile.php:608 src/Model/Profile.php:705
-msgid "[today]"
-msgstr "[tänään]"
+#: mod/newmember.php:54
+msgid "Go to the Help Section"
+msgstr "Näytä ohjeet"
 
-#: src/Model/Profile.php:619
-msgid "Birthday Reminders"
-msgstr "Syntymäpäivämuistutukset"
+#: mod/newmember.php:54
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr ""
 
-#: src/Model/Profile.php:620
-msgid "Birthdays this week:"
-msgstr "Syntymäpäiviä tällä viikolla:"
+#: mod/dfrn_confirm.php:132
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr ""
 
-#: src/Model/Profile.php:692
-msgid "[No description]"
-msgstr "[Ei kuvausta]"
+#: mod/dfrn_confirm.php:242
+msgid "Response from remote site was not understood."
+msgstr "Etäsivuston vastaus oli epäselvä."
 
-#: src/Model/Profile.php:719
-msgid "Event Reminders"
-msgstr "Tapahtumamuistutukset"
+#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Odottamaton vastaus etäsivustolta:"
 
-#: src/Model/Profile.php:720
-msgid "Events this week:"
-msgstr "Tapahtumia tällä viikolla:"
+#: mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Vahvistus onnistui."
 
-#: src/Model/Profile.php:743
-msgid "Member since:"
-msgstr "Liittymispäivämäärä:"
+#: mod/dfrn_confirm.php:275
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tilapäinen vika. Yritä myöhemmin uudelleen."
 
-#: src/Model/Profile.php:751
-msgid "j F, Y"
-msgstr ""
+#: mod/dfrn_confirm.php:278
+msgid "Introduction failed or was revoked."
+msgstr "Kaverikutsu epäonnistui tai oli peruutettu."
 
-#: src/Model/Profile.php:752
-msgid "j F"
+#: mod/dfrn_confirm.php:283
+msgid "Remote site reported: "
 msgstr ""
 
-#: src/Model/Profile.php:767
-msgid "Age:"
-msgstr "Ikä:"
+#: mod/dfrn_confirm.php:396
+msgid "Unable to set contact photo."
+msgstr "Kontaktin kuvaa ei voitu asettaa"
 
-#: src/Model/Profile.php:780
+#: mod/dfrn_confirm.php:498
 #, php-format
-msgid "for %1$d %2$s"
+msgid "No user record found for '%s' "
 msgstr ""
 
-#: src/Model/Profile.php:804
-msgid "Religion:"
-msgstr "Uskonto:"
-
-#: src/Model/Profile.php:812
-msgid "Hobbies/Interests:"
-msgstr "Harrastukset:"
-
-#: src/Model/Profile.php:824
-msgid "Contact information and Social Networks:"
-msgstr "Yhteystiedot ja sosiaalinen media:"
-
-#: src/Model/Profile.php:828
-msgid "Musical interests:"
-msgstr "Musiikki:"
+#: mod/dfrn_confirm.php:508
+msgid "Our site encryption key is apparently messed up."
+msgstr "Sivustomme salausavain on sekaisin."
 
-#: src/Model/Profile.php:832
-msgid "Books, literature:"
-msgstr "Kirjat, kirjallisuus:"
+#: mod/dfrn_confirm.php:519
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr ""
 
-#: src/Model/Profile.php:836
-msgid "Television:"
-msgstr "Televisio:"
+#: mod/dfrn_confirm.php:535
+msgid "Contact record was not found for you on our site."
+msgstr ""
 
-#: src/Model/Profile.php:840
-msgid "Film/dance/culture/entertainment:"
-msgstr "Elokuvat/tanssit/kulttuuri/viihde:"
+#: mod/dfrn_confirm.php:549
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr ""
 
-#: src/Model/Profile.php:844
-msgid "Love/Romance:"
-msgstr "Rakkaus/romanssi:"
+#: mod/dfrn_confirm.php:565
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr ""
 
-#: src/Model/Profile.php:848
-msgid "Work/employment:"
-msgstr "Työ:"
+#: mod/dfrn_confirm.php:576
+msgid "Unable to set your contact credentials on our system."
+msgstr ""
 
-#: src/Model/Profile.php:852
-msgid "School/education:"
-msgstr "Koulutus:"
+#: mod/dfrn_confirm.php:631
+msgid "Unable to update your contact profile details on our system"
+msgstr ""
 
-#: src/Model/Profile.php:857
-msgid "Forums:"
-msgstr "Foorumit:"
+#: mod/dfrn_confirm.php:694
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s on liittynyt kohteeseen %2$s"
 
-#: src/Model/Profile.php:951
-msgid "Only You Can See This"
-msgstr "Vain sinä näet tämän"
+#: mod/filer.php:34
+msgid "- select -"
+msgstr "- valitse -"
 
-#: src/Model/User.php:154
-msgid "Login failed"
-msgstr "Kirjautuminen epäonnistui"
+#: mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse."
 
-#: src/Model/User.php:185
-msgid "Not enough information to authenticate"
+#: mod/register.php:103
+#, 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 ""
 
-#: src/Model/User.php:346
-msgid "An invitation is required."
-msgstr ""
+#: mod/register.php:110
+msgid "Registration successful."
+msgstr "Rekisteröityminen onnistui."
 
-#: src/Model/User.php:350
-msgid "Invitation could not be verified."
-msgstr "Kutsua ei voitu vahvistaa."
+#: mod/register.php:115
+msgid "Your registration can not be processed."
+msgstr "Rekisteröintisi ei voida käsitellä."
 
-#: src/Model/User.php:357
-msgid "Invalid OpenID url"
-msgstr "Virheellinen OpenID url-osoite"
+#: mod/register.php:162
+msgid "Your registration is pending approval by the site owner."
+msgstr "Rekisteröintisi odottaa ylläpitäjän hyväksyntää."
 
-#: src/Model/User.php:370 src/Module/Login.php:100
+#: mod/register.php:220
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: src/Model/User.php:370 src/Module/Login.php:100
-msgid "The error message was:"
-msgstr "Virheviesti oli:"
+#: mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi."
 
-#: src/Model/User.php:376
-msgid "Please enter the required information."
-msgstr "Syötä tarvittavat tiedot."
+#: mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "OpenID -tunnus (valinnainen):"
 
-#: src/Model/User.php:389
-msgid "Please use a shorter name."
-msgstr "Käytä lyhyempää nimeä."
+#: mod/register.php:234
+msgid "Include your profile in member directory?"
+msgstr "Lisää profiilisi jäsenluetteloon?"
 
-#: src/Model/User.php:392
-msgid "Name too short."
-msgstr "Nimi on liian lyhyt."
+#: mod/register.php:259
+msgid "Note for the admin"
+msgstr "Viesti ylläpidolle"
 
-#: src/Model/User.php:400
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
+#: mod/register.php:259
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Kerro yllÃ¥pitäjälle miksi haluat liittyä tähän Friendica -sivustoon"
 
-#: src/Model/User.php:405
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla."
+#: mod/register.php:260
+msgid "Membership on this site is by invitation only."
+msgstr "Tähän sivustoon voi liittyä vain kutsusta."
 
-#: src/Model/User.php:409
-msgid "Not a valid email address."
-msgstr "Virheellinen sähköpostiosoite."
+#: mod/register.php:261
+msgid "Your invitation code: "
+msgstr "Kutsukoodisi:"
 
-#: src/Model/User.php:413 src/Model/User.php:421
-msgid "Cannot use that email."
-msgstr "Sähköpostiosoitetta ei voitu käyttää."
+#: mod/register.php:270
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
+msgstr "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):"
 
-#: src/Model/User.php:428
-msgid "Your nickname can only contain a-z, 0-9 and _."
-msgstr "Nimimerkki voi sisältää a-z, 0-9 ja _."
+#: mod/register.php:271
+msgid ""
+"Your Email Address: (Initial information will be send there, so this has to "
+"be an existing address.)"
+msgstr "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)"
 
-#: src/Model/User.php:435 src/Model/User.php:491
-msgid "Nickname is already registered. Please choose another."
-msgstr "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki."
+#: mod/register.php:273
+msgid "Leave empty for an auto generated password."
+msgstr "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan."
 
-#: src/Model/User.php:445
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "VAKAVA VIRHE: Salausavainten luominen epäonnistui."
+#: mod/register.php:275
+#, 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@%s</strong>'."
+msgstr ""
 
-#: src/Model/User.php:478 src/Model/User.php:482
-msgid "An error occurred during registration. Please try again."
-msgstr "Rekisteröityminen epäonnistui. Yritä uudelleen."
+#: mod/register.php:276
+msgid "Choose a nickname: "
+msgstr "Valitse lempinimi:"
 
-#: src/Model/User.php:507
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Oletusprofiilin luominen epäonnistui. Yritä uudelleen."
+#: mod/register.php:286
+msgid "Import your profile to this friendica instance"
+msgstr "Tuo profiilisi tähän Friendica -instanssiin."
 
-#: src/Model/User.php:514
-msgid "An error occurred creating your self contact. Please try again."
-msgstr ""
+#: mod/common.php:91
+msgid "No contacts in common."
+msgstr "Ei yhteisiä kontakteja."
 
-#: src/Model/User.php:523
-msgid ""
-"An error occurred creating your default contact group. Please try again."
+#: mod/probe.php:14 mod/webfinger.php:17
+msgid "Only logged in users are permitted to perform a probing."
 msgstr ""
 
-#: src/Model/User.php:597
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
-"\t\t"
-msgstr ""
+#: mod/help.php:48
+msgid "Help:"
+msgstr "Ohje:"
 
-#: src/Model/User.php:607
-#, php-format
-msgid "Registration at %s"
-msgstr "Rekisteröityminen kohteessa %s"
+#: mod/help.php:63 index.php:325
+msgid "Page not found."
+msgstr "Sivua ei löytynyt."
 
-#: src/Model/User.php:625
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t\t"
-msgstr ""
+#: mod/profperm.php:34 mod/profperm.php:65
+msgid "Invalid profile identifier."
+msgstr "Virheellinen profiilitunniste."
 
-#: src/Model/User.php:629
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t\t%1$s\n"
-"\t\t\tPassword:\t\t%5$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\tIf you ever want to delete your account, you can do so at %3$s/removeme\n"
-"\n"
-"\t\t\tThank you and welcome to %2$s."
-msgstr ""
+#: mod/profperm.php:111
+msgid "Profile Visibility Editor"
+msgstr "Profiilin näkyvyyden muokkaaminen"
 
-#: src/Protocol/OStatus.php:1799
-#, php-format
-msgid "%s is now following %s."
-msgstr "%s seuraa %s."
+#: mod/profperm.php:124
+msgid "Visible To"
+msgstr "Näkyvyys"
 
-#: src/Protocol/OStatus.php:1800
-msgid "following"
-msgstr "seuraa"
+#: mod/profperm.php:140
+msgid "All Contacts (with secure profile access)"
+msgstr ""
 
-#: src/Protocol/OStatus.php:1803
-#, php-format
-msgid "%s stopped following %s."
-msgstr "%s ei enää seuraa %s."
+#: mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Alkuperäinen julkaisu ei löydy."
 
-#: src/Protocol/OStatus.php:1804
-msgid "stopped following"
-msgstr "ei enää seuraa"
+#: mod/item.php:274
+msgid "Empty post discarded."
+msgstr "Tyhjä julkaisu hylätty."
 
-#: src/Protocol/DFRN.php:1482
+#: mod/item.php:799
 #, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\ käyttäjän syntymäpäivä"
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr ""
 
-#: src/Protocol/Diaspora.php:2680
-msgid "Sharing notification from Diaspora network"
+#: mod/item.php:801
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: src/Protocol/Diaspora.php:3756
-msgid "Attachments:"
-msgstr "Liitteitä:"
+#: mod/item.php:802
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr ""
 
-#: src/Worker/Delivery.php:390
-msgid "(no subject)"
-msgstr "(ei aihetta)"
+#: mod/item.php:806
+#, php-format
+msgid "%s posted an update."
+msgstr "%s julkaisi päivityksen."
 
-#: src/Module/Login.php:282
-msgid "Create a New Account"
-msgstr "Luo uusi käyttäjätili"
+#: mod/editpost.php:25 mod/editpost.php:35
+msgid "Item not found"
+msgstr "Kohdetta ei löytynyt"
 
-#: src/Module/Login.php:315
-msgid "Password: "
-msgstr "Salasana:"
+#: mod/editpost.php:42
+msgid "Edit post"
+msgstr "Muokkaa viestiä"
 
-#: src/Module/Login.php:316
-msgid "Remember me"
-msgstr "Muista minut"
+#: view/theme/quattro/config.php:76
+msgid "Alignment"
+msgstr "Kohdistaminen"
 
-#: src/Module/Login.php:319
-msgid "Or login using OpenID: "
-msgstr "Kirjaudu sisään OpenID -tunnuksella:"
+#: view/theme/quattro/config.php:76
+msgid "Left"
+msgstr "Vasemmalle"
 
-#: src/Module/Login.php:325
-msgid "Forgot your password?"
-msgstr "Unohditko salasanasi?"
+#: view/theme/quattro/config.php:76
+msgid "Center"
+msgstr "Keskelle"
 
-#: src/Module/Login.php:328
-msgid "Website Terms of Service"
-msgstr "Verkkosivun käyttöehdot"
+#: view/theme/quattro/config.php:77
+msgid "Color scheme"
+msgstr "Värimalli"
 
-#: src/Module/Login.php:329
-msgid "terms of service"
-msgstr "käyttöehdot"
+#: view/theme/quattro/config.php:78
+msgid "Posts font size"
+msgstr "Julkaisujen fonttikoko"
 
-#: src/Module/Login.php:331
-msgid "Website Privacy Policy"
-msgstr "Sivuston tietosuojakäytäntö"
+#: view/theme/quattro/config.php:79
+msgid "Textareas font size"
+msgstr "Tekstikenttien fonttikoko"
 
-#: src/Module/Login.php:332
-msgid "privacy policy"
-msgstr "tietosuojakäytäntö"
+#: view/theme/frio/php/Image.php:25
+msgid "Repeat the image"
+msgstr "Toista kuva"
 
-#: src/Module/Logout.php:28
-msgid "Logged out."
-msgstr "Kirjautunut ulos."
+#: view/theme/frio/php/Image.php:25
+msgid "Will repeat your image to fill the background."
+msgstr ""
 
-#: src/Module/Tos.php:51
-msgid "Privacy Statement"
-msgstr "Tietosuojalausunto"
+#: view/theme/frio/php/Image.php:27
+msgid "Stretch"
+msgstr "Venytä"
 
-#: src/Module/Tos.php:52
-msgid ""
-"At the time of registration, and for providing communications between the "
-"user account and their contacts, the user has to provide a display name (pen"
-" name), an username (nickname) and a working email address. The names will "
-"be accessible on the profile page of the account by any visitor of the page,"
-" even if other profile details are not displayed. The email address will "
-"only be used to send the user notifications about interactions, but wont be "
-"visibly displayed. The listing of an account in the node's user directory or"
-" the global user directory is optional and can be controlled in the user "
-"settings, it is not necessary for communication."
+#: view/theme/frio/php/Image.php:27
+msgid "Will stretch to width/height of the image."
 msgstr ""
 
-#: src/Module/Tos.php:53
-msgid ""
-"This data is required for communication and is passed on to the nodes of the"
-" communication partners. Users can enter additional private data that may be"
-" transmitted to the communication partners accounts."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize fill and-clip"
 msgstr ""
 
-#: src/Module/Tos.php:54
-#, php-format
-msgid ""
-"At any point in time a logged in user can export their account data from the"
-" <a href=\"%1$s/settings/uexport\">account settings</a>. If the user wants "
-"to delete their account they can do so at <a "
-"href=\"%1$s/removeme\">%1$s/removeme</a>. The deletion of the account will "
-"be permanent."
+#: view/theme/frio/php/Image.php:29
+msgid "Resize to fill and retain aspect ratio."
 msgstr ""
 
-#: src/Object/Post.php:128
-msgid "This entry was edited"
-msgstr "Tämä kohde oli muokattu"
+#: view/theme/frio/php/Image.php:31
+msgid "Resize best fit"
+msgstr ""
 
-#: src/Object/Post.php:182
-msgid "save to folder"
-msgstr "tallenna kansioon"
+#: view/theme/frio/php/Image.php:31
+msgid "Resize to best fit and retain aspect ratio."
+msgstr ""
 
-#: src/Object/Post.php:235
-msgid "I will attend"
-msgstr "Osallistun"
+#: view/theme/frio/config.php:97
+msgid "Default"
+msgstr "Oletus"
 
-#: src/Object/Post.php:235
-msgid "I will not attend"
-msgstr "En aio osallistua"
+#: view/theme/frio/config.php:109
+msgid "Note"
+msgstr ""
 
-#: src/Object/Post.php:235
-msgid "I might attend"
-msgstr "Ehkä osallistun"
+#: view/theme/frio/config.php:109
+msgid "Check image permissions if all users are allowed to visit the image"
+msgstr ""
 
-#: src/Object/Post.php:263
-msgid "add star"
-msgstr "lisää tähti"
+#: view/theme/frio/config.php:116
+msgid "Select scheme"
+msgstr "Valitse malli"
 
-#: src/Object/Post.php:264
-msgid "remove star"
-msgstr "poista tähti"
+#: view/theme/frio/config.php:117
+msgid "Navigation bar background color"
+msgstr "Navigointipalkin taustaväri"
 
-#: src/Object/Post.php:265
-msgid "toggle star status"
-msgstr "Tähtitila päälle/pois"
+#: view/theme/frio/config.php:118
+msgid "Navigation bar icon color "
+msgstr "Navigointipalkin kuvakkeiden väri"
 
-#: src/Object/Post.php:268
-msgid "starred"
-msgstr "tähtimerkitty"
+#: view/theme/frio/config.php:119
+msgid "Link color"
+msgstr "Linkin väri"
 
-#: src/Object/Post.php:274
-msgid "ignore thread"
-msgstr "Sivuuta keskustelu"
+#: view/theme/frio/config.php:120
+msgid "Set the background color"
+msgstr "Valitse taustaväri"
 
-#: src/Object/Post.php:275
-msgid "unignore thread"
-msgstr "Seuraa keskustelua"
+#: view/theme/frio/config.php:121
+msgid "Content background opacity"
+msgstr "Sisällön taustasameus"
 
-#: src/Object/Post.php:276
-msgid "toggle ignore status"
-msgstr "Sivuuta/seuraa"
+#: view/theme/frio/config.php:122
+msgid "Set the background image"
+msgstr "Valitse taustakuva"
 
-#: src/Object/Post.php:285
-msgid "add tag"
-msgstr "lisää tägi"
+#: view/theme/frio/config.php:127
+msgid "Login page background image"
+msgstr "Sisäänkirjautumissivun taustakuva"
 
-#: src/Object/Post.php:296
-msgid "like"
-msgstr "tykkää"
+#: view/theme/frio/config.php:130
+msgid "Login page background color"
+msgstr "Sisäänkirjautumissivun taustaväri"
 
-#: src/Object/Post.php:297
-msgid "dislike"
-msgstr "en tykkää"
+#: view/theme/frio/config.php:130
+msgid "Leave background image and color empty for theme defaults"
+msgstr ""
 
-#: src/Object/Post.php:300
-msgid "Share this"
-msgstr "Jaa tämä"
+#: view/theme/frio/theme.php:238
+msgid "Guest"
+msgstr "Vieras"
 
-#: src/Object/Post.php:300
-msgid "share"
-msgstr "jaa"
+#: view/theme/frio/theme.php:243
+msgid "Visitor"
+msgstr "Vierailija"
 
-#: src/Object/Post.php:365
-msgid "to"
+#: view/theme/vier/config.php:75
+msgid "Comma separated list of helper forums"
 msgstr ""
 
-#: src/Object/Post.php:366
-msgid "via"
-msgstr "kautta"
+#: view/theme/vier/config.php:122
+msgid "Set style"
+msgstr "Aseta tyyli"
 
-#: src/Object/Post.php:367
-msgid "Wall-to-Wall"
-msgstr ""
+#: view/theme/vier/config.php:123
+msgid "Community Pages"
+msgstr "Yhteisösivut"
 
-#: src/Object/Post.php:368
-msgid "via Wall-To-Wall:"
+#: view/theme/vier/config.php:124 view/theme/vier/theme.php:150
+msgid "Community Profiles"
+msgstr "Yhteisöprofiilit"
+
+#: view/theme/vier/config.php:125
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: src/Object/Post.php:427
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d kommentti"
-msgstr[1] "%d kommentteja"
+#: view/theme/vier/config.php:126 view/theme/vier/theme.php:389
+msgid "Connect Services"
+msgstr "Yhdistä palvelut"
 
-#: src/Object/Post.php:797
-msgid "Bold"
-msgstr "Lihavoitu"
+#: view/theme/vier/config.php:127 view/theme/vier/theme.php:199
+msgid "Find Friends"
+msgstr "Etsi kavereita"
 
-#: src/Object/Post.php:798
-msgid "Italic"
-msgstr "Kursivoitu"
+#: view/theme/vier/config.php:128 view/theme/vier/theme.php:181
+msgid "Last users"
+msgstr "Viimeisimmät käyttäjät"
 
-#: src/Object/Post.php:799
-msgid "Underline"
-msgstr "Alleviivaus"
+#: view/theme/vier/theme.php:200
+msgid "Local Directory"
+msgstr "Paikallinen hakemisto"
 
-#: src/Object/Post.php:800
-msgid "Quote"
-msgstr "Lainaus"
+#: view/theme/vier/theme.php:292
+msgid "Quick Start"
+msgstr "Pika-aloitus"
 
-#: src/Object/Post.php:801
-msgid "Code"
-msgstr "Koodi"
+#: view/theme/duepuntozero/config.php:55
+msgid "greenzero"
+msgstr "greenzero"
 
-#: src/Object/Post.php:802
-msgid "Image"
-msgstr "Kuva"
+#: view/theme/duepuntozero/config.php:56
+msgid "purplezero"
+msgstr "purplezero"
 
-#: src/Object/Post.php:803
-msgid "Link"
-msgstr "Linkki"
+#: view/theme/duepuntozero/config.php:57
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: src/Object/Post.php:804
-msgid "Video"
-msgstr "Video"
+#: view/theme/duepuntozero/config.php:58
+msgid "darkzero"
+msgstr "darkzero"
 
-#: src/App.php:511
-msgid "Delete this item?"
-msgstr "Poista tämä kohde?"
+#: view/theme/duepuntozero/config.php:59
+msgid "comix"
+msgstr "comix"
 
-#: src/App.php:513
-msgid "show fewer"
-msgstr "näytä vähemmän"
+#: view/theme/duepuntozero/config.php:60
+msgid "slackr"
+msgstr "slackr"
 
-#: boot.php:795
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "%s päivitys epäonnistui, katso virhelokit."
+#: view/theme/duepuntozero/config.php:74
+msgid "Variations"
+msgstr "Muunnelmat"
 
 #: index.php:472
 msgid "toggle mobile"
index ab6892b34f156f0f92d607bbd5197a5c26900b6a..950104c96dd417e0d1a12a4ca3a1d824df7b62ce 100644 (file)
@@ -5,13 +5,7 @@ function string_plural_select_fi_fi($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["Item not found."] = "Kohdetta ei löytynyt.";
-$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?";
-$a->strings["Yes"] = "Kyllä";
-$a->strings["Cancel"] = "Peru";
-$a->strings["Permission denied."] = "Käyttöoikeus evätty.";
-$a->strings["Archives"] = "Arkisto";
-$a->strings["show more"] = "näytä lisää";
+$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit.";
 $a->strings["Daily posting limit of %d post reached. The post was rejected."] = [
        0 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.",
        1 => "Päivittäinen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.",
@@ -22,6 +16,65 @@ $a->strings["Weekly posting limit of %d post reached. The post was rejected."] =
 ];
 $a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "Kuukausittainen julkaisuraja (%d) on tullut täyteen. Julkaisu hylätty.";
 $a->strings["Profile Photos"] = "Profiilin valokuvat";
+$a->strings["Friendica Notification"] = "Friendica-huomautus";
+$a->strings["Thank You,"] = "Kiitos,";
+$a->strings["%s Administrator"] = "%s Ylläpitäjä";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Ylläpitäjä";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Uusi viesti, katso %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lähetti sinulle uuden yksityisviestin kohteessa %2\$s.";
+$a->strings["a private message"] = "yksityisviesti";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lähetti sinulle %2\$s.";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Katso yksityisviestisi kohteessa %s.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] %2\$s kommentoi keskustelussa #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s kommentoi kohteessa/keskustelussa jota seuraat.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s kirjoitti profiiliseinällesi";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s kirjoitti seinällesi kohteessa %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s kirjoitti [url=%2\$s]seinällesi[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merkitsi sinut";
+$a->strings["%1\$s tagged you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merkitsi sinut[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s jakoi uuden julkaisun";
+$a->strings["%1\$s shared a new post at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]jakoi julkaisun[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s tökkäsi sinua.";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s tökkäsi sinua kohteessa %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]tökkasi sinua[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merkitsi julkaisusi";
+$a->strings["%1\$s tagged your post at %2\$s"] = "";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merkitsi [url=%2\$s]julkaisusi[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Esittely vastaanotettu";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Olet vastaanottanut kaverikutsun henkilöltä '%1\$s' kohteessa %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]kaverikutsun[/url] henkilöltä %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Voit vierailla hänen profiilissaan kohteessa %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Hyväksy tai hylkää esittely %s-sivustossa";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notify] Uusi henkilö jakaa päivityksensä kanssasi";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s jakaa päivityksensä kanssasi kohteessa %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Sinulla on uusi seuraaja";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Sinulla on uusi seuraaja sivustolla %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Kaveripyyntö vastaanotettu";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Sait kaverikutsun henkilöltä '%1\$s' (%2\$s)";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "Nimi:";
+$a->strings["Photo:"] = "Kuva:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Hyväksy tai hylkää ehdotus %s-sivustossa";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Yhteys hyväksytty";
+$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' on hyväksynyt kaverikutsusi kohteessa %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hyväksyi [url=%1\$s]kaverikutsusi[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.";
+$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
+$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' voi halutessaan laajentaa suhteenne kahdenväliseksi.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
+$a->strings["[Friendica System Notify]"] = "[Friendica Järjestelmäilmoitus]";
+$a->strings["registration request"] = "rekisteröintipyyntö";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1\$s' kohteessa %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]rekisteröintipyynnön[/url] henkilöltä %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Koko nimi:\t%1\$s\\nSivusto:\t%2\$s\\nKäyttäjätunnus:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Hyväksy tai hylkää pyyntö %s-sivustossa.";
 $a->strings["event"] = "tapahtuma";
 $a->strings["status"] = "tila";
 $a->strings["photo"] = "kuva";
@@ -109,6 +162,7 @@ $a->strings["Permission settings"] = "Käyttöoikeusasetukset";
 $a->strings["permissions"] = "käyttöoikeudet";
 $a->strings["Public post"] = "Julkinen viesti";
 $a->strings["Preview"] = "Esikatselu";
+$a->strings["Cancel"] = "Peru";
 $a->strings["Post to Groups"] = "Lähetä ryhmiin";
 $a->strings["Post to Contacts"] = "Lähetä kontakteille";
 $a->strings["Private post"] = "Yksityinen julkaisu";
@@ -132,65 +186,6 @@ $a->strings["Undecided"] = [
        1 => "En ole varma",
 ];
 $a->strings["Cannot locate DNS info for database server '%s'"] = "'%s' tietokantapalvelimen DNS-tieto ei löydy";
-$a->strings["Friendica Notification"] = "Friendica-huomautus";
-$a->strings["Thank You,"] = "Kiitos,";
-$a->strings["%s Administrator"] = "%s Ylläpitäjä";
-$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Ylläpitäjä";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Uusi viesti, katso %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lähetti sinulle uuden yksityisviestin kohteessa %2\$s.";
-$a->strings["a private message"] = "yksityisviesti";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lähetti sinulle %2\$s.";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Katso yksityisviestisi kohteessa %s.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] %2\$s kommentoi keskustelussa #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s kommentoi kohteessa/keskustelussa jota seuraat.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s kirjoitti profiiliseinällesi";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s kirjoitti seinällesi kohteessa %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s kirjoitti [url=%2\$s]seinällesi[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s merkitsi sinut";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]merkitsi sinut[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s jakoi uuden julkaisun";
-$a->strings["%1\$s shared a new post at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]jakoi julkaisun[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s tökkäsi sinua.";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s tökkäsi sinua kohteessa %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]tökkasi sinua[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s merkitsi julkaisusi";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s merkitsi [url=%2\$s]julkaisusi[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Esittely vastaanotettu";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "Voit vierailla hänen profiilissaan kohteessa %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Hyväksy tai hylkää esittely %s-sivustossa";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notify] Sinulla on uusi seuraaja";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Sinulla on uusi seuraaja sivustolla %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Kaveripyyntö vastaanotettu";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Sait kaverikutsun henkilöltä '%1\$s' (%2\$s)";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Nimi:";
-$a->strings["Photo:"] = "Kuva:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Hyväksy tai hylkää ehdotus %s-sivustossa";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notify] Yhteys hyväksytty";
-$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "'%1\$s' on hyväksynyt kaverikutsusi kohteessa %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hyväksyi [url=%1\$s]kaverikutsusi[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Olette nyt yhteiset ystävät ja voitte lähettää toisillenne tilapäivityksiä, kuvia ja sähköposteja ilman rajoituksia.";
-$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
-$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "'%1\$s' voi halutessaan laajentaa suhteenne kahdenväliseksi.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Käy osoitteessa %s muokkaamaan tätä kaverisuhdetta.";
-$a->strings["[Friendica System Notify]"] = "[Friendica Järjestelmäilmoitus]";
-$a->strings["registration request"] = "rekisteröintipyyntö";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Olet vastaanottanut rekisteröintipyynnön henkilöltä '%1\$s' kohteessa %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Olet vastaanottanut [url=%1\$s]rekisteröintipyynnön[/url] henkilöltä %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "Hyväksy tai hylkää pyyntö %s-sivustossa.";
 $a->strings["Welcome "] = "Tervetuloa";
 $a->strings["Please upload a profile photo."] = "Lataa profiilikuva.";
 $a->strings["Welcome back "] = "Tervetuloa takaisin";
@@ -279,641 +274,550 @@ $a->strings["comment"] = [
 ];
 $a->strings["post"] = "julkaisu";
 $a->strings["Item filed"] = "Kohde arkistoitu";
-$a->strings["No friends to display."] = "Ei näytettäviä kavereita.";
+$a->strings["Item not found."] = "Kohdetta ei löytynyt.";
+$a->strings["Do you really want to delete this item?"] = "Haluatko varmasti poistaa tämän kohteen?";
+$a->strings["Yes"] = "Kyllä";
+$a->strings["Permission denied."] = "Käyttöoikeus evätty.";
+$a->strings["Archives"] = "Arkisto";
+$a->strings["show more"] = "näytä lisää";
+$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
+$a->strings["Drop Contact"] = "Poista kontakti";
+$a->strings["Organisation"] = "Järjestö";
+$a->strings["News"] = "Uutiset";
+$a->strings["Forum"] = "Keskustelupalsta";
+$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite.";
+$a->strings["Blocked domain"] = "Estetty verkkotunnus";
+$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu.";
+$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
+$a->strings["This site is not configured to allow communications with other networks."] = "";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt.";
+$a->strings["The profile address specified does not provide adequate information."] = "Annettu profiiliosoite ei sisällä riittävästi tietoa.";
+$a->strings["An author or name was not found."] = "";
+$a->strings["No browser URL could be matched to this address."] = "";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
+$a->strings["Use mailto: in front of address to force email check."] = "";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
+$a->strings["Unable to retrieve contact information."] = "Kontaktin tietoja ei voitu hakea.";
+$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]";
+$a->strings["%s's birthday"] = "%s: syntymäpäivä";
+$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s";
+$a->strings["[no subject]"] = "[ei aihetta]";
+$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla.";
+$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla.";
+$a->strings["Edit profile"] = "Muokkaa profiilia";
 $a->strings["Connect"] = "Yhdistä";
-$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys";
-$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:";
-$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?";
-$a->strings["No"] = "Ei";
-$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia";
-$a->strings["Applications"] = "Sovellukset";
-$a->strings["No installed applications."] = "Ei asennettuja sovelluksia.";
-$a->strings["Item not available."] = "Kohde ei saatavilla.";
-$a->strings["Item was not found."] = "Kohdetta ei löytynyt.";
-$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja.";
-$a->strings["Common Friends"] = "Yhteisiä kavereita";
-$a->strings["Credits"] = "Lopputekstit";
-$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "";
-$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu.";
-$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui.";
-$a->strings["Contact not found."] = "Kontaktia ei ole.";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista.";
-$a->strings["No mirroring"] = "Ei peilausta";
-$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna";
-$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna";
-$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen";
-$a->strings["Refetch contact data"] = "";
-$a->strings["Submit"] = "Lähetä";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Name"] = "Nimi";
-$a->strings["Account Nickname"] = "Tilin lempinimi";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin";
-$a->strings["Account URL"] = "Tilin URL-osoite";
-$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten";
-$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten";
-$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten";
-$a->strings["Poll/Feed URL"] = "URL Ã¤Ã¤nestyksiä/syötteitä varten";
-$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta";
-$a->strings["Photos"] = "Kuvat";
-$a->strings["Contact Photos"] = "Kontaktin valokuvat";
-$a->strings["Upload"] = "Lähetä";
-$a->strings["Files"] = "Tiedostot";
-$a->strings["Not Found"] = "Ei löydetty";
-$a->strings["No profile"] = "Ei profiilia";
-$a->strings["Help:"] = "Ohje:";
-$a->strings["Help"] = "Ohje";
-$a->strings["Page not found."] = "Sivua ei löytynyt.";
-$a->strings["Welcome to %s"] = "Tervetuloa %s";
-$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla.";
-$a->strings["Visible to:"] = "Näkyvissä:";
-$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten";
-$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan";
-$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
-$a->strings["Getting Started"] = "Ensiaskeleet";
-$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
-$a->strings["Settings"] = "Asetukset";
-$a->strings["Go to Your Settings"] = "Omat Asetukset";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
+$a->strings["Atom feed"] = "Atom -syöte";
+$a->strings["Profiles"] = "Profiilit";
+$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit";
+$a->strings["Change profile photo"] = "Vaihda profiilikuva";
+$a->strings["Create New Profile"] = "Luo uusi profiili";
+$a->strings["Profile Image"] = "Profiilikuva";
+$a->strings["visible to everybody"] = "näkyvissä kaikille";
+$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä";
+$a->strings["Location:"] = "Sijainti:";
+$a->strings["Gender:"] = "Sukupuoli:";
+$a->strings["Status:"] = "Tila:";
+$a->strings["Homepage:"] = "Kotisivu:";
+$a->strings["About:"] = "Lisätietoja:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Verkko:";
+$a->strings["g A l F d"] = "";
+$a->strings["F d"] = "";
+$a->strings["[today]"] = "[tänään]";
+$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset";
+$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:";
+$a->strings["[No description]"] = "[Ei kuvausta]";
+$a->strings["Event Reminders"] = "Tapahtumamuistutukset";
+$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:";
 $a->strings["Profile"] = "Profiili";
-$a->strings["Upload Profile Photo"] = "Lataa profiilikuva";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
-$a->strings["Edit Your Profile"] = "Muokkaa profiilisi";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
-$a->strings["Profile Keywords"] = "Profiilin avainsanat";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
-$a->strings["Connecting"] = "Yhdistetään";
-$a->strings["Importing Emails"] = "Sähköpostin tuominen";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
-$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
-$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
-$a->strings["Finding New People"] = "Kavereiden hankkiminen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
-$a->strings["Groups"] = "Ryhmät";
-$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
-$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
-$a->strings["Getting Help"] = "Avun saaminen";
-$a->strings["Go to the Help Section"] = "Näytä ohjeet";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
-$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]";
-$a->strings["Edit contact"] = "Muokkaa kontaktia";
-$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään";
-$a->strings["Not Extended"] = "Ei laajennettu";
-$a->strings["Resubscribing to OStatus contacts"] = "";
-$a->strings["Error"] = "Virhe";
-$a->strings["Done"] = "Valmis";
-$a->strings["Keep this window open until done."] = "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu.";
-$a->strings["Do you really want to delete this suggestion?"] = "Haluatko varmasti poistaa ehdotuksen?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua.";
-$a->strings["Ignore/Hide"] = "Jätä huomiotta/piilota";
-$a->strings["Friend Suggestions"] = "Ystäväehdotukset";
-$a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna.";
-$a->strings["Import"] = "Tuo";
-$a->strings["Move account"] = "Siirrä tili";
-$a->strings["You can import an account from another Friendica server."] = "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta.";
-$a->strings["Account file"] = "Tilitiedosto";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi.";
-$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:";
-$a->strings["Profile Match"] = "Vastaavien profiilien haku";
-$a->strings["No matches"] = "Ei täsmääviä profiileja";
-$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste.";
-$a->strings["Discard"] = "Hylkää";
-$a->strings["Ignore"] = "Jätä huomiotta";
-$a->strings["Notifications"] = "Huomautukset";
-$a->strings["Network Notifications"] = "Verkkoilmoitukset";
-$a->strings["System Notifications"] = "Järjestelmäilmoitukset";
-$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset";
-$a->strings["Home Notifications"] = "Koti-ilmoitukset";
-$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt";
-$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt";
-$a->strings["Notification type: "] = "Ilmoitustyyppi:";
-$a->strings["suggested by %s"] = "ehdottaa %s";
-$a->strings["Hide this contact from others"] = "Piilota kontakti muilta";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "tarvittaessa";
-$a->strings["Approve"] = "Hyväksy";
-$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:";
-$a->strings["yes"] = "kyllä";
-$a->strings["no"] = "ei";
-$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?";
-$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."] = "";
-$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."] = "";
-$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."] = "";
-$a->strings["Friend"] = "Kaveri";
-$a->strings["Sharer"] = "Jakaja";
-$a->strings["Subscriber"] = "Tilaaja";
-$a->strings["Location:"] = "Sijainti:";
-$a->strings["About:"] = "Lisätietoja:";
+$a->strings["Full Name:"] = "Koko nimi:";
+$a->strings["Member since:"] = "Liittymispäivämäärä:";
+$a->strings["j F, Y"] = "";
+$a->strings["j F"] = "";
+$a->strings["Birthday:"] = "Syntymäpäivä:";
+$a->strings["Age:"] = "Ikä:";
+$a->strings["for %1\$d %2\$s"] = "";
+$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:";
+$a->strings["Hometown:"] = "Kotikaupunki:";
 $a->strings["Tags:"] = "Tunnisteet:";
-$a->strings["Gender:"] = "Sukupuoli:";
-$a->strings["Profile URL"] = "Profiilin URL";
-$a->strings["Network:"] = "Verkko:";
-$a->strings["No introductions."] = "Ei esittelyjä.";
-$a->strings["Show unread"] = "Näytä lukemattomat";
-$a->strings["Show all"] = "Näytä kaikki";
-$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID -protokollavirhe. Tunnusta ei vastaanotettu.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla.";
-$a->strings["Login failed."] = "Kirjautuminen epäonnistui";
-$a->strings["Profile not found."] = "Profiilia ei löytynyt.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
-$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä.";
-$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:";
-$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui.";
-$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen.";
-$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu.";
-$a->strings["Remote site reported: "] = "";
-$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa";
-$a->strings["No user record found for '%s' "] = "";
-$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
-$a->strings["Contact record was not found for you on our site."] = "";
-$a->strings["Site public key not available in contact record for URL %s."] = "";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
-$a->strings["Unable to set your contact credentials on our system."] = "";
-$a->strings["Unable to update your contact profile details on our system"] = "";
-$a->strings["[Name Withheld]"] = "[Nimi jätetty pois]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s";
-$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
-$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:";
-$a->strings["Invalid request."] = "Virheellinen pyyntö.";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
-$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?";
-$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s";
-$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui.";
-$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä.";
-$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa.";
-$a->strings["%d required parameter was not found at the given location"] = [
-       0 => "",
-       1 => "",
-];
-$a->strings["Introduction complete."] = "Esittely valmis.";
-$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe.";
-$a->strings["Profile unavailable."] = "Profiili ei saatavilla.";
-$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään.";
-$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä.";
-$a->strings["Invalid locator"] = "Viallinen paikannin";
-$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä.";
-$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa.";
-$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite.";
-$a->strings["Disallowed profile URL."] = "Kielletty profiiliosoite.";
-$a->strings["Blocked domain"] = "Estetty verkkotunnus";
-$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui.";
-$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin.";
-$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
-$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin.";
-$a->strings["Confirm"] = "Vahvista";
-$a->strings["Hide this contact"] = "Piilota kontakti";
-$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s.";
-$a->strings["Public access denied."] = "Julkinen käyttö estetty.";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
-$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
-$a->strings["Please answer the following:"] = "Vastaa seuraavaan:";
-$a->strings["Does %s know you?"] = "Tunteeko %s sinut?";
-$a->strings["Add a personal note:"] = "Lisää oma merkintä:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
-$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Ã¤lä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.";
-$a->strings["Your Identity Address:"] = "Identiteettisi osoite:";
-$a->strings["Submit Request"] = "Lähetä pyyntö";
-$a->strings["- select -"] = "- valitse -";
+$a->strings["Political Views:"] = "Politiikka:";
+$a->strings["Religion:"] = "Uskonto:";
+$a->strings["Hobbies/Interests:"] = "Harrastukset:";
+$a->strings["Likes:"] = "Tykkäykset:";
+$a->strings["Dislikes:"] = "Ei tykkää:";
+$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:";
+$a->strings["Musical interests:"] = "Musiikki:";
+$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:";
+$a->strings["Television:"] = "Televisio:";
+$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:";
+$a->strings["Love/Romance:"] = "Rakkaus/romanssi:";
+$a->strings["Work/employment:"] = "Työ:";
+$a->strings["School/education:"] = "Koulutus:";
+$a->strings["Forums:"] = "Foorumit:";
+$a->strings["Basic"] = "";
+$a->strings["Advanced"] = "";
+$a->strings["Status"] = "Tila";
+$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset";
+$a->strings["Profile Details"] = "Profiilitiedot";
+$a->strings["Photos"] = "Kuvat";
+$a->strings["Photo Albums"] = "Valokuva-albumit";
+$a->strings["Videos"] = "Videot";
+$a->strings["Events"] = "Tapahtumat";
+$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri";
+$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot";
+$a->strings["Only You Can See This"] = "Vain sinä näet tämän";
 $a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Time Conversion"] = "Aikamuunnos";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "UTC-aika: %s";
-$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s";
-$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s";
-$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:";
-$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia.";
-$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön";
-$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin";
-$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön";
-$a->strings["Poke/Prod"] = "Tökkää";
-$a->strings["poke, prod or do other things to somebody"] = "";
-$a->strings["Recipient"] = "Vastaanottaja";
-$a->strings["Choose what you wish to do to recipient"] = "Valitse mitä haluat tehdä vastaanottajalle";
-$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi";
-$a->strings["Only logged in users are permitted to perform a probing."] = "";
-$a->strings["Permission denied"] = "Käyttöoikeus evätty";
-$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste.";
-$a->strings["Profile Visibility Editor"] = "Profiilin näkyvyyden muokkaaminen";
-$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä.";
-$a->strings["Visible To"] = "Näkyvyys";
-$a->strings["All Contacts (with secure profile access)"] = "";
-$a->strings["Account approved."] = "Tili hyväksytty.";
-$a->strings["Registration revoked for %s"] = "";
-$a->strings["Please login."] = "Ole hyvä ja kirjaudu.";
-$a->strings["Remove term"] = "Poista kohde";
-$a->strings["Saved Searches"] = "Tallennetut haut";
-$a->strings["Only logged in users are permitted to perform a search."] = "";
-$a->strings["Too Many Requests"] = "Liian monta pyyntöä";
-$a->strings["Only one search per minute is permitted for not logged in users."] = "";
-$a->strings["No results."] = "Ei tuloksia.";
-$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s";
-$a->strings["Results for: %s"] = "Tulokset haulla: %s";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["Tag removed"] = "Tägi poistettiin";
-$a->strings["Remove Item Tag"] = "Poista tägi";
-$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:";
-$a->strings["Remove"] = "Poista";
-$a->strings["Export account"] = "Vie tili";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.";
-$a->strings["Export all"] = "Vie kaikki";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)";
-$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot";
-$a->strings["No contacts."] = "Ei kontakteja.";
-$a->strings["Access denied."] = "Käyttö estetty.";
-$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s";
-$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui.";
-$a->strings["Wall Photos"] = "Seinäkuvat";
-$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.";
-$a->strings["No recipient selected."] = "Vastaanottaja puuttuu.";
-$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa.";
-$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää.";
-$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui.";
-$a->strings["Message sent."] = "Viesti lähetetty.";
-$a->strings["No recipient."] = "Vastaanottaja puuttuu.";
-$a->strings["Send Private Message"] = "Lähetä yksityisviesti";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
-$a->strings["To:"] = "Vastaanottaja:";
-$a->strings["Subject:"] = "Aihe:";
-$a->strings["Your message:"] = "Viestisi:";
-$a->strings["Login"] = "Kirjaudu sisään";
-$a->strings["The post was created"] = "Julkaisu luotu";
-$a->strings["Community option not available."] = "Yhteisö vaihtoehto ei saatavilla.";
-$a->strings["Not available."] = "Ei saatavilla.";
-$a->strings["Local Community"] = "Paikallinen yhteisö";
-$a->strings["Posts from local users on this server"] = "Tämän palvelimen julkaisut";
-$a->strings["Global Community"] = "Maailmanlaajuinen yhteisö";
-$a->strings["Posts from users of the whole federated network"] = "Maailmanlaajuisen verkon julkaisut";
-$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
-$a->strings["Item not found"] = "Kohdetta ei löytynyt";
-$a->strings["Edit post"] = "Muokkaa viestiä";
-$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com";
-$a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin.";
-$a->strings["Suggest Friends"] = "Ehdota ystäviä";
-$a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s";
-$a->strings["Group created."] = "Ryhmä luotu.";
-$a->strings["Could not create group."] = "Ryhmää ei voitu luoda.";
-$a->strings["Group not found."] = "Ryhmää ei löytynyt.";
-$a->strings["Group name changed."] = "Ryhmän nimi muutettu.";
-$a->strings["Save Group"] = "Tallenna ryhmä";
-$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä";
-$a->strings["Group Name: "] = "Ryhmän nimi:";
-$a->strings["Group removed."] = "Ryhmä poistettu.";
-$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa.";
-$a->strings["Delete Group"] = "Poista ryhmä";
-$a->strings["Group Editor"] = "Ryhmien muokkausta";
-$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä";
-$a->strings["Members"] = "Jäsenet";
-$a->strings["All Contacts"] = "Kaikki yhteystiedot";
-$a->strings["Group is empty"] = "Ryhmä on tyhjä";
-$a->strings["Remove Contact"] = "Poista kontakti";
-$a->strings["Add Contact"] = "Lisää kontakti";
-$a->strings["New Message"] = "Uusi viesti";
-$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy.";
-$a->strings["Messages"] = "Viestit";
-$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?";
-$a->strings["Message deleted."] = "Viesti poistettu.";
-$a->strings["Conversation removed."] = "Keskustelu poistettu.";
-$a->strings["No messages."] = "Ei viestejä.";
-$a->strings["Message not available."] = "Viesti ei saatavilla.";
-$a->strings["Delete message"] = "Poista viesti";
-$a->strings["D, d M Y - g:i A"] = "";
-$a->strings["Delete conversation"] = "Poista keskustelu";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Lähetä vastaus";
-$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s";
-$a->strings["You and %s"] = "Sinä ja %s";
-$a->strings["%s and You"] = "%s ja sinä";
-$a->strings["%d message"] = [
-       0 => "%d viesti",
-       1 => "%d viestiä",
-];
-$a->strings["Personal Notes"] = "Henkilökohtaiset tiedot";
-$a->strings["Photo Albums"] = "Valokuva-albumit";
-$a->strings["Recent Photos"] = "Viimeaikaisia kuvia";
-$a->strings["Upload New Photos"] = "Lähetä uusia kuvia";
-$a->strings["everybody"] = "kaikki";
-$a->strings["Contact information unavailable"] = "Kontaktin tietoja ei saatavilla";
-$a->strings["Album not found."] = "Albumia ei ole.";
-$a->strings["Delete Album"] = "Poista albumi";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?";
-$a->strings["Delete Photo"] = "Poista valokuva";
-$a->strings["Do you really want to delete this photo?"] = "Haluatko varmasti poistaa kuvan?";
-$a->strings["a photo"] = "valokuva";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s merkattiin kuvaan %2\$s ystävän %3\$s toimesta";
-$a->strings["Image upload didn't complete, please try again"] = "Kuvan lataus ei onnistunut, yritä uudelleen";
-$a->strings["Image file is missing"] = "Kuvatiedosto puuttuu";
-$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
-$a->strings["Image file is empty."] = "Kuvatiedosto on tyhjä.";
-$a->strings["No photos selected"] = "Ei valittuja kuvia";
-$a->strings["Access to this item is restricted."] = "Pääsy kohteeseen on rajoitettu.";
-$a->strings["Upload Photos"] = "Lähetä kuvia";
-$a->strings["New album name: "] = "Albumin uusi nimi: ";
-$a->strings["or existing album name: "] = "tai olemassaolevan albumin nimi: ";
-$a->strings["Do not show a status post for this upload"] = "Älä näytä tilaviestiä tälle lähetykselle";
-$a->strings["Permissions"] = "Käyttöoikeudet";
-$a->strings["Show to Groups"] = "Näytä ryhmille";
-$a->strings["Show to Contacts"] = "Näytä kontakteille";
-$a->strings["Edit Album"] = "Muokkaa albumia";
-$a->strings["Show Newest First"] = "Näytä uusin ensin";
-$a->strings["Show Oldest First"] = "Näytä vanhin ensin";
-$a->strings["View Photo"] = "Näytä kuva";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa.";
-$a->strings["Photo not available"] = "Kuva ei ole saatavilla";
-$a->strings["View photo"] = "Näytä kuva";
-$a->strings["Edit photo"] = "Muokkaa kuvaa";
-$a->strings["Use as profile photo"] = "Käytä profiilikuvana";
-$a->strings["Private Message"] = "Yksityisviesti";
-$a->strings["View Full Size"] = "Näytä täysikokoisena";
-$a->strings["Tags: "] = "Merkinnät:";
-$a->strings["[Remove any tag]"] = "[Poista mikä tahansa merkintä]";
-$a->strings["New album name"] = "Uusi nimi albumille";
-$a->strings["Caption"] = "Kuvateksti";
-$a->strings["Add a Tag"] = "Lisää merkintä";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Do not rotate"] = "Älä kierrä";
-$a->strings["Rotate CW (right)"] = "Käännä oikealle";
-$a->strings["Rotate CCW (left)"] = "Käännä vasemmalle";
-$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)";
-$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)";
-$a->strings["This is you"] = "Tämä olet sinä";
-$a->strings["Comment"] = "Kommentti";
-$a->strings["Map"] = "Kartta";
-$a->strings["View Album"] = "Näytä albumi";
-$a->strings["Requested profile is not available."] = "Pyydettyä profiilia ei saatavilla.";
-$a->strings["%s's posts"] = "%s: julkaisut";
-$a->strings["%s's comments"] = "%s: kommentit";
-$a->strings["%s's timeline"] = "%s: aikajana";
-$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu";
-$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille";
-$a->strings["Do you really want to delete this video?"] = "Haluatko varmasti poistaa tämän videon?";
-$a->strings["Delete Video"] = "Poista video";
-$a->strings["No videos selected"] = "Ei videoita valittuna";
-$a->strings["Recent Videos"] = "Viimeisimmät videot";
-$a->strings["Upload New Videos"] = "Lataa uusia videoita";
-$a->strings["Events"] = "Tapahtumat";
-$a->strings["View"] = "Katso";
-$a->strings["Previous"] = "Edellinen";
-$a->strings["Next"] = "Seuraava";
+$a->strings["Starts:"] = "Alkaa:";
+$a->strings["Finishes:"] = "Päättyy:";
+$a->strings["all-day"] = "koko päivä";
+$a->strings["Jun"] = "Kes.";
+$a->strings["Sept"] = "Syy.";
 $a->strings["today"] = "tänään";
 $a->strings["month"] = "kuukausi";
 $a->strings["week"] = "viikko";
 $a->strings["day"] = "päivä";
-$a->strings["list"] = "luettelo";
+$a->strings["No events to display"] = "Ei näytettäviä tapahtumia.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Muokkaa tapahtumaa";
+$a->strings["Duplicate event"] = "Monista tapahtuma";
+$a->strings["Delete event"] = "Poista tapahtuma";
+$a->strings["D g:i A"] = "";
+$a->strings["g:i A"] = "";
+$a->strings["Show map"] = "Näytä kartta";
+$a->strings["Hide map"] = "Piilota kartta";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
+$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille";
+$a->strings["Everybody"] = "Kaikki";
+$a->strings["edit"] = "muokkaa";
+$a->strings["add"] = "lisää";
+$a->strings["Groups"] = "Ryhmät";
+$a->strings["Edit group"] = "Muokkaa ryhmää";
+$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää";
+$a->strings["Create a new group"] = "Luo uusi ryhmä";
+$a->strings["Group Name: "] = "Ryhmän nimi:";
+$a->strings["Edit groups"] = "Muokkaa ryhmiä";
+$a->strings["Contact Photos"] = "Kontaktin valokuvat";
+$a->strings["Login failed"] = "Kirjautuminen epäonnistui";
+$a->strings["Not enough information to authenticate"] = "";
 $a->strings["User not found"] = "Käyttäjää ei löydy";
-$a->strings["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta";
-$a->strings["No exportable data found"] = "Vientikelpoista dataa ei löytynyt";
-$a->strings["calendar"] = "kalenteri";
-$a->strings["%d contact edited."] = [
-       0 => "%d kontakti muokattu",
-       1 => "%d kontakteja muokattu",
+$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan.";
+$a->strings["An invitation is required."] = "";
+$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa.";
+$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
+$a->strings["The error message was:"] = "Virheviesti oli:";
+$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot.";
+$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä.";
+$a->strings["Name too short."] = "Nimi on liian lyhyt.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "";
+$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.";
+$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite.";
+$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää.";
+$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _.";
+$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui.";
+$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen.";
+$a->strings["default"] = "oletus";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen.";
+$a->strings["An error occurred creating your self contact. Please try again."] = "";
+$a->strings["Friends"] = "Kaverit";
+$a->strings["An error occurred creating your default contact group. Please try again."] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "";
+$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["Registration details for %s"] = "";
+$a->strings["view full size"] = "näytä täysikokoisena";
+$a->strings["Image/photo"] = "Kuva/valokuva";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["$1 wrote:"] = "$1 kirjoitti:";
+$a->strings["Encrypted content"] = "Salattu sisältö";
+$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla";
+$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla";
+$a->strings["General Features"] = "Yleiset ominaisuudet";
+$a->strings["Multiple Profiles"] = "";
+$a->strings["Ability to create multiple profiles"] = "";
+$a->strings["Photo Location"] = "Kuvan sijainti";
+$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
+$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri";
+$a->strings["Ability for visitors to download the public calendar"] = "";
+$a->strings["Post Composition Features"] = "";
+$a->strings["Post Preview"] = "Viestin esikatselu";
+$a->strings["Allow previewing posts and comments before publishing them"] = "";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "Päivämäärähaku";
+$a->strings["Ability to select posts by date ranges"] = "";
+$a->strings["List Forums"] = "Näytä foorumit";
+$a->strings["Enable widget to display the forums your are connected with"] = "";
+$a->strings["Group Filter"] = "Ryhmäsuodatin";
+$a->strings["Enable widget to display Network posts only from selected group"] = "";
+$a->strings["Network Filter"] = "Verkkosuodatin";
+$a->strings["Enable widget to display Network posts only from selected network"] = "";
+$a->strings["Saved Searches"] = "Tallennetut haut";
+$a->strings["Save search terms for re-use"] = "";
+$a->strings["Network Tabs"] = "Verkko välilehdet";
+$a->strings["Network Personal Tab"] = "";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
+$a->strings["Network New Tab"] = "";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
+$a->strings["Network Shared Links Tab"] = "";
+$a->strings["Enable tab to display only Network posts with links in them"] = "";
+$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut";
+$a->strings["Multiple Deletion"] = "";
+$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa";
+$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut";
+$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen";
+$a->strings["Tagging"] = "Tunnisteet";
+$a->strings["Ability to tag existing posts"] = "";
+$a->strings["Post Categories"] = "Julkaisuluokat";
+$a->strings["Add categories to your posts"] = "Luokittele julkaisusi";
+$a->strings["Saved Folders"] = "Tallennetut kansiot";
+$a->strings["Ability to file posts under folders"] = "";
+$a->strings["Dislike Posts"] = "";
+$a->strings["Ability to dislike posts/comments"] = "";
+$a->strings["Star Posts"] = "Tähtimerkityt julkaisut";
+$a->strings["Ability to mark special posts with a star indicator"] = "Salli julkaisujen tähtimerkintä";
+$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset";
+$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
+$a->strings["Tag Cloud"] = "Tunnistepilvi";
+$a->strings["Provide a personal tag cloud on your profile page"] = "";
+$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä";
+$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa";
+$a->strings["Export"] = "Vie";
+$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona";
+$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona";
+$a->strings["Add New Contact"] = "Lisää uusi kontakti";
+$a->strings["Enter address or web location"] = "Syötä verkko-osoite";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = [
+       0 => "%d kutsu saatavilla",
+       1 => "%d kutsuja saatavilla",
 ];
-$a->strings["Could not access contact record."] = "Yhteystietoon ei päästä käsiksi.";
-$a->strings["Could not locate selected profile."] = "Valittua profiilia ei löydy.";
-$a->strings["Contact updated."] = "Yhteystietopäivitys onnistui.";
-$a->strings["Contact has been blocked"] = "Henkilö on estetty";
-$a->strings["Contact has been unblocked"] = "Henkilö on jälleen sallittu";
-$a->strings["Contact has been ignored"] = "Henkilöä ei enää huomioida";
-$a->strings["Contact has been unignored"] = "Henkilö on jälleen huomioituna.";
-$a->strings["Contact has been archived"] = "Henkilö on arkistoitu.";
-$a->strings["Contact has been unarchived"] = "Henkilö on otettu pois arkistosta.";
-$a->strings["Drop contact"] = "Poista kontakti";
-$a->strings["Do you really want to delete this contact?"] = "Haluatko todella poistaa tämän yhteystiedon?";
-$a->strings["Contact has been removed."] = "Yhteystieto on poistettu.";
-$a->strings["You are mutual friends with %s"] = "Olet kaveri %s kanssa.";
-$a->strings["You are sharing with %s"] = "Olet jakanut jotakin %s:n kanssa";
-$a->strings["%s is sharing with you"] = "%s jakaa sinulle jotakin.";
-$a->strings["Private communications are not available for this contact."] = "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle.";
-$a->strings["Never"] = "Ei koskaan";
-$a->strings["(Update was successful)"] = "(Päivitys onnistui)";
-$a->strings["(Update was not successful)"] = "(Päivitys epäonnistui)";
-$a->strings["Suggest friends"] = "Ehdota ystäviä";
-$a->strings["Network type: %s"] = "Verkkotyyppi: %s";
-$a->strings["Communications lost with this contact!"] = "Yhteys tähän henkilöön menetettiin!";
-$a->strings["Fetch further information for feeds"] = "";
-$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
-$a->strings["Disabled"] = "Pois käytöstä";
-$a->strings["Fetch information"] = "Nouda tiedot";
-$a->strings["Fetch keywords"] = "Nouda avainsanat";
-$a->strings["Fetch information and keywords"] = "Nouda tiedot ja avainsanat";
-$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen";
-$a->strings["Contact"] = "Kontakti";
-$a->strings["Profile Visibility"] = "Profiilin näkyvyys";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti.";
-$a->strings["Contact Information / Notes"] = "Yhteystiedot / Muistiinpanot";
-$a->strings["Their personal note"] = "";
-$a->strings["Edit contact notes"] = "Muokkaa yhteystietojen muistiinpanoja";
-$a->strings["Block/Unblock contact"] = "Estä/salli henkilö";
-$a->strings["Ignore contact"] = "Jätä henkilö huomiotta";
-$a->strings["Repair URL settings"] = "Korjaa URL-asetukset";
-$a->strings["View conversations"] = "Katso keskusteluja";
-$a->strings["Last update:"] = "Viimeksi päivitetty:";
-$a->strings["Update public posts"] = "Päivitä julkiset postaukset";
-$a->strings["Update now"] = "Päivitä nyt";
-$a->strings["Unblock"] = "Salli";
-$a->strings["Block"] = "Estä";
-$a->strings["Unignore"] = "Ota huomioon";
-$a->strings["Currently blocked"] = "Estetty tällä hetkellä";
-$a->strings["Currently ignored"] = "Jätetty huomiotta tällä hetkellä";
-$a->strings["Currently archived"] = "Arkistoitu tällä hetkellä";
-$a->strings["Awaiting connection acknowledge"] = "Odotetaan yhteyden kuittausta";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
-$a->strings["Notification for new posts"] = "Uusien postausten ilmoitus";
-$a->strings["Send a notification of every new post of this contact"] = "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista";
-$a->strings["Blacklisted keywords"] = "Kielletyt avainsanat";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Actions"] = "Toimenpiteet";
-$a->strings["Status"] = "Tila";
-$a->strings["Contact Settings"] = "Yhteystietoasetukset";
-$a->strings["Suggestions"] = "Ehdotukset";
-$a->strings["Suggest potential friends"] = "Ehdota mahdollisille ystäville";
-$a->strings["Show all contacts"] = "Näytä kaikki yhteystiedot";
-$a->strings["Unblocked"] = "Sallittu";
-$a->strings["Only show unblocked contacts"] = "Näytä vain sallitut henkilöt";
-$a->strings["Blocked"] = "Estetty";
-$a->strings["Only show blocked contacts"] = "Näytä vain estetyt henkilöt";
-$a->strings["Ignored"] = "Jätetty huomiotta";
-$a->strings["Only show ignored contacts"] = "Näytä vain henkilöt, jotka jätetty huomiotta";
-$a->strings["Archived"] = "Arkistoitu";
-$a->strings["Only show archived contacts"] = "Näytä vain arkistoidut henkilöt";
-$a->strings["Hidden"] = "Piilotettu";
-$a->strings["Only show hidden contacts"] = "Näytä vain piilotetut henkilöt";
-$a->strings["Search your contacts"] = "Etsi henkilöitä";
+$a->strings["Find People"] = "Löydä ihmisiä";
+$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms.";
 $a->strings["Find"] = "Etsi";
-$a->strings["Update"] = "Päivitä";
-$a->strings["Archive"] = "Arkistoi";
-$a->strings["Unarchive"] = "Poista arkistosta";
-$a->strings["Batch Actions"] = "";
-$a->strings["Status Messages and Posts"] = "Statusviestit ja postaukset";
-$a->strings["Profile Details"] = "Profiilitiedot";
-$a->strings["View all contacts"] = "Näytä kaikki kontaktit";
-$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit";
-$a->strings["Advanced"] = "";
-$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset";
-$a->strings["Mutual Friendship"] = "Yhteinen kaveruus";
-$a->strings["is a fan of yours"] = "on fanisi";
-$a->strings["you are a fan of"] = "fanitat";
-$a->strings["Toggle Blocked status"] = "Estetty tila päälle/pois";
-$a->strings["Toggle Ignored status"] = "Sivuuta/seuraa";
-$a->strings["Toggle Archive status"] = "Arkistotila päälle/pois";
-$a->strings["Delete contact"] = "Poista kontakti";
-$a->strings["Parent user not found."] = "";
-$a->strings["No parent user"] = "";
-$a->strings["Parent Password:"] = "";
-$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
-$a->strings["Parent User"] = "";
-$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
-$a->strings["Save Settings"] = "Tallenna asetukset";
+$a->strings["Friend Suggestions"] = "Ystäväehdotukset";
+$a->strings["Similar Interests"] = "Yhteiset harrastukset";
+$a->strings["Random Profile"] = "Satunnainen profiili";
+$a->strings["Invite Friends"] = "Kutsu kavereita";
+$a->strings["View Global Directory"] = "Katso maailmanlaajuista luetteloa";
+$a->strings["Networks"] = "Verkot";
+$a->strings["All Networks"] = "Kaikki verkot";
+$a->strings["Everything"] = "Kaikki";
+$a->strings["Categories"] = "Luokat";
+$a->strings["%d contact in common"] = [
+       0 => "%d yhteinen kontakti",
+       1 => "%d yhteistä kontaktia",
+];
+$a->strings["Frequently"] = "Usein";
+$a->strings["Hourly"] = "Tunneittain";
+$a->strings["Twice daily"] = "Kahdesti päivässä";
+$a->strings["Daily"] = "Päivittäin";
+$a->strings["Weekly"] = "Viikottain";
+$a->strings["Monthly"] = "Kuukausittain";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Sähköposti";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora -liitin";
+$a->strings["GNU Social Connector"] = "GNU social -liitin";
+$a->strings["pnut"] = "pnut";
+$a->strings["App.net"] = "App.net";
+$a->strings["Male"] = "Mies";
+$a->strings["Female"] = "Nainen";
+$a->strings["Currently Male"] = "Tällä hetkellä mies";
+$a->strings["Currently Female"] = "Tällä hetkellä nainen";
+$a->strings["Mostly Male"] = "Enimmäkseen mies";
+$a->strings["Mostly Female"] = "Enimmäkseen nainen";
+$a->strings["Transgender"] = "Transsukupuolinen";
+$a->strings["Intersex"] = "Intersukupuolinen";
+$a->strings["Transsexual"] = "Transsukupuolinen";
+$a->strings["Hermaphrodite"] = "Hermafrodiitti";
+$a->strings["Neuter"] = "Neutri";
+$a->strings["Non-specific"] = "Ei-binäärinen";
+$a->strings["Other"] = "Toinen";
+$a->strings["Males"] = "Miehet";
+$a->strings["Females"] = "Naiset";
+$a->strings["Gay"] = "Homo";
+$a->strings["Lesbian"] = "Lesbo";
+$a->strings["No Preference"] = "";
+$a->strings["Bisexual"] = "Biseksuaali";
+$a->strings["Autosexual"] = "";
+$a->strings["Abstinent"] = "Selibaatissa elävä";
+$a->strings["Virgin"] = "Neitsyt";
+$a->strings["Deviant"] = "";
+$a->strings["Fetish"] = "";
+$a->strings["Oodles"] = "";
+$a->strings["Nonsexual"] = "Aseksuaali";
+$a->strings["Single"] = "Sinkku";
+$a->strings["Lonely"] = "Yksinäinen";
+$a->strings["Available"] = "";
+$a->strings["Unavailable"] = "";
+$a->strings["Has crush"] = "Ihastunut";
+$a->strings["Infatuated"] = "Hullaantunut";
+$a->strings["Dating"] = "Seurustelee";
+$a->strings["Unfaithful"] = "";
+$a->strings["Sex Addict"] = "";
+$a->strings["Friends/Benefits"] = "";
+$a->strings["Casual"] = "";
+$a->strings["Engaged"] = "Kihloissa";
+$a->strings["Married"] = "Naimisissa";
+$a->strings["Imaginarily married"] = "";
+$a->strings["Partners"] = "Kumppanit";
+$a->strings["Cohabiting"] = "Avoliitossa";
+$a->strings["Common law"] = "Avoliitossa";
+$a->strings["Happy"] = "Iloinen";
+$a->strings["Not looking"] = "Ei etsi";
+$a->strings["Swinger"] = "";
+$a->strings["Betrayed"] = "Petetty";
+$a->strings["Separated"] = "";
+$a->strings["Unstable"] = "Epävakaa";
+$a->strings["Divorced"] = "Eronnut";
+$a->strings["Imaginarily divorced"] = "";
+$a->strings["Widowed"] = "Leski";
+$a->strings["Uncertain"] = "Epävarma";
+$a->strings["It's complicated"] = "Se on monimutkaista";
+$a->strings["Don't care"] = "Ei ole väliä";
+$a->strings["Ask me"] = "Kysy minulta";
+$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä";
+$a->strings["Embedded content"] = "Upotettu sisältö";
+$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin";
+$a->strings["Nothing new here"] = "";
+$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset";
+$a->strings["Logout"] = "Kirjaudu ulos";
+$a->strings["End this session"] = "Lopeta istunto";
+$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut";
+$a->strings["Your profile page"] = "Oma profiilisivu";
+$a->strings["Your photos"] = "Omat kuvat";
+$a->strings["Your videos"] = "Omat videot";
+$a->strings["Your events"] = "Omat tapahtumat";
+$a->strings["Personal notes"] = "";
+$a->strings["Your personal notes"] = "";
+$a->strings["Login"] = "Kirjaudu sisään";
+$a->strings["Sign in"] = "Kirjaudu sisään";
+$a->strings["Home"] = "Koti";
+$a->strings["Home Page"] = "Kotisivu";
+$a->strings["Register"] = "Rekisteröidy";
+$a->strings["Create an account"] = "Luo tili";
+$a->strings["Help"] = "Ohje";
+$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi";
+$a->strings["Apps"] = "Sovellukset";
+$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä";
+$a->strings["Search site content"] = "Sivustohaku";
+$a->strings["Community"] = "Yhteisö";
+$a->strings["Conversations on this and other servers"] = "";
+$a->strings["Directory"] = "Luettelo";
+$a->strings["People directory"] = "";
+$a->strings["Information"] = "Tietoja";
+$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista";
+$a->strings["Network"] = "Verkko";
+$a->strings["Conversations from your friends"] = "Kavereiden keskustelut";
+$a->strings["Network Reset"] = "Verkon nollaus";
+$a->strings["Load Network page with no filters"] = "";
+$a->strings["Introductions"] = "Esittelyt";
+$a->strings["Friend Requests"] = "Kaveripyynnöt";
+$a->strings["Notifications"] = "Huomautukset";
+$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset";
+$a->strings["Mark as seen"] = "Merkitse luetuksi";
+$a->strings["Mark all system notifications seen"] = "";
+$a->strings["Messages"] = "Viestit";
+$a->strings["Private mail"] = "Yksityinen posti";
+$a->strings["Inbox"] = "Saapuneet";
+$a->strings["Outbox"] = "Lähtevät";
+$a->strings["New Message"] = "Uusi viesti";
+$a->strings["Manage"] = "Hallitse";
+$a->strings["Manage other pages"] = "Hallitse muita sivuja";
+$a->strings["Delegations"] = "";
 $a->strings["Delegate Page Management"] = "";
-$a->strings["Delegates"] = "";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
-$a->strings["Existing Page Delegates"] = "";
-$a->strings["Potential Delegates"] = "";
-$a->strings["Add"] = "Lisää";
-$a->strings["No entries."] = "";
-$a->strings["Event can not end before it has started."] = "";
-$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan.";
-$a->strings["Create New Event"] = "Luo uusi tapahtuma";
-$a->strings["Event details"] = "Tapahtuman tiedot";
-$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan.";
-$a->strings["Event Starts:"] = "Tapahtuma alkaa:";
-$a->strings["Required"] = "Vaaditaan";
-$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä";
-$a->strings["Event Finishes:"] = "Tapahtuma päättyy:";
-$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke";
-$a->strings["Description:"] = "Kuvaus:";
-$a->strings["Title:"] = "Otsikko:";
-$a->strings["Share this event"] = "Jaa tämä tapahtuma";
-$a->strings["Basic"] = "";
-$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
-$a->strings["Event removed"] = "Tapahtuma poistettu";
-$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia";
-$a->strings["Source URL"] = "Lähde URL";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica viestinnän palvelin - asetukset";
-$a->strings["Could not connect to database."] = "Tietokantaan ei saada yhteyttä.";
-$a->strings["Could not create table."] = "Taulun luominen epäonnistui.";
-$a->strings["Your Friendica site database has been installed."] = "Friendica-sivustosi tietokanta on asennettu.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lue tiedosto \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Tietokanta on jo käytössä.";
-$a->strings["System check"] = "Järjestelmän tarkistus";
-$a->strings["Check again"] = "Tarkista uudelleen";
-$a->strings["Database connection"] = "Tietokantayhteys";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.";
-$a->strings["Database Server Name"] = "Tietokannan palvelimen nimi";
-$a->strings["Database Login Name"] = "Tietokannan käyttäjän nimi";
-$a->strings["Database Login Password"] = "Tietokannan käyttäjän salasana";
-$a->strings["For security reasons the password must not be empty"] = "Turvallisuussyistä salasanakenttä ei saa olla tyhjä";
-$a->strings["Database Name"] = "Tietokannan nimi";
-$a->strings["Site administrator email address"] = "Sivuston ylläpitäjän sähköpostiosoite";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.";
-$a->strings["Please select a default timezone for your website"] = "Valitse oletusaikavyöhyke sivustollesi";
-$a->strings["Site settings"] = "Sivuston asetukset";
-$a->strings["System Language:"] = "Järjestelmän kieli:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Valitse Friendica-sivustosi oletuskieli.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.";
-$a->strings["If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</a>"] = "";
-$a->strings["PHP executable path"] = "Polku PHP-ohjelmaan";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.";
-$a->strings["Command line PHP"] = "Komentorivi-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
-$a->strings["Found PHP version: "] = "PHP-versio löydetty:";
-$a->strings["PHP cli binary"] = "PHP cli -binääritiedosto";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "Asetus vaaditaan viestien lähettämiseen.";
-$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"] = "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia.";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Luo salausavaimet";
-$a->strings["libCurl PHP module"] = "PHP-moduuli libCurl";
-$a->strings["GD graphics PHP module"] = "PHP-moduuli GD graphics";
-$a->strings["OpenSSL PHP module"] = "PHP-moduuli OpenSSL";
-$a->strings["PDO or MySQLi PHP module"] = "PDO tai MySQLi PHP-moduuli";
-$a->strings["mb_string PHP module"] = "PHP-moduuli mb_string";
-$a->strings["XML PHP module"] = "XML PHP-moduuli";
-$a->strings["iconv PHP module"] = "iconv PHP-moduuli";
-$a->strings["POSIX PHP module"] = "POSIX PHP-moduuli";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite -moduuli";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: The MySQL driver for PDO is not installed."] = "Virhe: PDO:n MySQL-ajuri ei ole asennettu";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$a->strings["Error: POSIX PHP module required but not installed."] = "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.";
-$a->strings["Error, XML PHP module required but not installed."] = "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
-$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."] = "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.";
-$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."] = "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.";
-$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."] = "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php on kirjoitettava";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
-$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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$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."] = "";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 on kirjoitettava";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset.";
-$a->strings["Url rewrite is working"] = "URL-osoitteen uudellenkirjoitus toimii";
-$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP-laajennus ei ole asetettu";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP-laajennus on asetettu";
-$a->strings["ImageMagick supports GIF"] = "ImageMagik tukee GIF-formaattia";
-$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."] = "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Mitä seuraavaksi</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille.";
-$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "";
-$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy.";
-$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
-$a->strings["You may visit them online at %s"] = "";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
-$a->strings["%s posted an update."] = "%s julkaisi päivityksen.";
-$a->strings["Post successful."] = "Viestin lähetys onnistui.";
-$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen";
-$a->strings["No contact provided."] = "Kontakti puuttuu.";
-$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea.";
-$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit.";
-$a->strings["success"] = "onnistui";
-$a->strings["failed"] = "epäonnistui";
+$a->strings["Settings"] = "Asetukset";
+$a->strings["Account settings"] = "Tiliasetukset";
+$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit";
+$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit";
+$a->strings["Admin"] = "Ylläpitäjä";
+$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset";
+$a->strings["Navigation"] = "Navigointi";
+$a->strings["Site map"] = "Sivustokartta";
+$a->strings["(no subject)"] = "(ei aihetta)";
+$a->strings["Delete this item?"] = "Poista tämä kohde?";
+$a->strings["show fewer"] = "näytä vähemmän";
+$a->strings["Login failed."] = "Kirjautuminen epäonnistui";
+$a->strings["Create a New Account"] = "Luo uusi käyttäjätili";
+$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:";
+$a->strings["Password: "] = "Salasana:";
+$a->strings["Remember me"] = "Muista minut";
+$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:";
+$a->strings["Forgot your password?"] = "Unohditko salasanasi?";
+$a->strings["Password Reset"] = "Salasanan nollaus";
+$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot";
+$a->strings["terms of service"] = "käyttöehdot";
+$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö";
+$a->strings["privacy policy"] = "tietosuojakäytäntö";
+$a->strings["Terms of Service"] = "Käyttöehdot";
+$a->strings["Privacy Statement"] = "Tietosuojalausunto";
+$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "";
+$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "";
+$a->strings["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "";
+$a->strings["Logged out."] = "Kirjautunut ulos.";
+$a->strings["Wall Photos"] = "Seinäkuvat";
+$a->strings["This entry was edited"] = "Tämä kohde oli muokattu";
+$a->strings["Private Message"] = "Yksityisviesti";
+$a->strings["Edit"] = "Muokkaa";
+$a->strings["save to folder"] = "tallenna kansioon";
+$a->strings["I will attend"] = "Osallistun";
+$a->strings["I will not attend"] = "En aio osallistua";
+$a->strings["I might attend"] = "Ehkä osallistun";
+$a->strings["add star"] = "lisää tähti";
+$a->strings["remove star"] = "poista tähti";
+$a->strings["toggle star status"] = "Tähtitila päälle/pois";
+$a->strings["starred"] = "tähtimerkitty";
+$a->strings["ignore thread"] = "Sivuuta keskustelu";
+$a->strings["unignore thread"] = "Seuraa keskustelua";
+$a->strings["toggle ignore status"] = "Sivuuta/seuraa";
 $a->strings["ignored"] = "ohitettu";
+$a->strings["add tag"] = "lisää tägi";
+$a->strings["I like this (toggle)"] = "Tykkään tästä (vaihda)";
+$a->strings["like"] = "tykkää";
+$a->strings["I don't like this (toggle)"] = "En tykkää tästä (vaihda)";
+$a->strings["dislike"] = "en tykkää";
+$a->strings["Share this"] = "Jaa tämä";
+$a->strings["share"] = "jaa";
+$a->strings["to"] = "";
+$a->strings["via"] = "kautta";
+$a->strings["Wall-to-Wall"] = "";
+$a->strings["via Wall-To-Wall:"] = "";
+$a->strings["Comment"] = "Kommentti";
+$a->strings["%d comment"] = [
+       0 => "%d kommentti",
+       1 => "%d kommentteja",
+];
+$a->strings["This is you"] = "Tämä olet sinä";
+$a->strings["Submit"] = "Lähetä";
+$a->strings["Bold"] = "Lihavoitu";
+$a->strings["Italic"] = "Kursivoitu";
+$a->strings["Underline"] = "Alleviivaus";
+$a->strings["Quote"] = "Lainaus";
+$a->strings["Code"] = "Koodi";
+$a->strings["Image"] = "Kuva";
+$a->strings["Link"] = "Linkki";
+$a->strings["Video"] = "Video";
+$a->strings["There are no tables on MyISAM."] = "";
+$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tFriendican kehittäjät askettäin julkaisi %s-päivityksen,\n\t\t\t\tmutta asennuksessa jotain meni pahasti pieleen.\n\t\t\t\tTämä on korjattava pian, ja en voi korjata sitä itse. Ota yhteyttä\n\t\t\t\tFriendica -kehittäjään jos et voi auttaa. Tietokantani saattaa olla virheellinen.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]";
+$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n";
+$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:";
+$a->strings[": Database update"] = ": Tietokannan päivitys";
+$a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa.";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?";
+$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!";
+$a->strings["User creation error"] = "Virhe käyttäjän luomisessa";
+$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa";
+$a->strings["%d contact not imported"] = [
+       0 => "%d kontakti ei tuotu",
+       1 => "%d kontakteja ei tuotu",
+];
+$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi.";
+$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
+$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen.";
+$a->strings["Password changed."] = "Salasana vaihdettu.";
+$a->strings["Could not find any contact entry for this URL (%s)"] = "";
+$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla";
+$a->strings["Post to Email"] = "Viesti sähköpostiin";
+$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["Visible to everybody"] = "Näkyvissä kaikille";
+$a->strings["show"] = "näytä";
+$a->strings["don't show"] = "älä näytä";
+$a->strings["CC: email addresses"] = "Kopio: sähköpostiosoitteet";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Esimerkki: bob@example.com, mary@example.com";
+$a->strings["Permissions"] = "Käyttöoikeudet";
+$a->strings["Close"] = "Sulje";
+$a->strings["System"] = "Järjestelmä";
+$a->strings["Personal"] = "Henkilökohtainen";
+$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s";
+$a->strings["%s created a new post"] = "%s loi uuden julkaisun";
+$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s";
+$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s";
+$a->strings["%s is attending %s's event"] = "%s osallistuu tapahtumaan jonka järjestää %s";
+$a->strings["%s is not attending %s's event"] = "%s ei osallistu tapahtumaan jonka järjestää %s";
+$a->strings["%s may attend %s's event"] = "%s ehkä osallistuu tapahtumaan jonka järjestää %s";
+$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita";
+$a->strings["Friend Suggestion"] = "Kaveriehdotus";
+$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["New Follower"] = "Uusi seuraaja";
+$a->strings["Miscellaneous"] = "Sekalaista";
+$a->strings["Age: "] = "Ikä:";
+$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP";
+$a->strings["never"] = "ei ikinä";
+$a->strings["less than a second ago"] = "alle sekunti sitten";
+$a->strings["year"] = "vuosi";
+$a->strings["years"] = "vuotta";
+$a->strings["months"] = "kuukautta";
+$a->strings["weeks"] = "viikkoa";
+$a->strings["days"] = "päivää";
+$a->strings["hour"] = "tunti";
+$a->strings["hours"] = "tuntia";
+$a->strings["minute"] = "minuutti";
+$a->strings["minutes"] = "inuuttia";
+$a->strings["second"] = "sekunti";
+$a->strings["seconds"] = "sekuntia";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten";
+$a->strings["%s's timeline"] = "%s: aikajana";
+$a->strings["%s's posts"] = "%s: julkaisut";
+$a->strings["%s's comments"] = "%s: kommentit";
+$a->strings["%s is now following %s."] = "%s seuraa %s.";
+$a->strings["following"] = "seuraa";
+$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s.";
+$a->strings["stopped following"] = "ei enää seuraa";
+$a->strings["Sharing notification from Diaspora network"] = "";
+$a->strings["Attachments:"] = "Liitteitä:";
+$a->strings["Public access denied."] = "Julkinen käyttö estetty.";
+$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto";
+$a->strings["Find on this site"] = "";
+$a->strings["Results for:"] = "Tulokset haulla:";
+$a->strings["Site Directory"] = "Sivuston luettelo";
+$a->strings["No entries (some entries may be hidden)."] = "";
+$a->strings["People Search - %s"] = "";
+$a->strings["Forum Search - %s"] = "Foorumihaku - %s";
+$a->strings["No matches"] = "Ei täsmääviä profiileja";
+$a->strings["Resubscribing to OStatus contacts"] = "";
+$a->strings["Error"] = "Virhe";
+$a->strings["Done"] = "Valmis";
+$a->strings["Keep this window open until done."] = "Pidä tämä ikkuna auki kunnes kaikki tehtävät on suoritettu.";
+$a->strings["{0} wants to be your friend"] = "{0} lähetti kaveripyynnön";
+$a->strings["{0} sent you a message"] = "{0} lähetti sinulle viestin";
+$a->strings["{0} requested registration"] = "{0} jätti rekisteröintipyynnön";
+$a->strings["Do you really want to delete this suggestion?"] = "Haluatko varmasti poistaa ehdotuksen?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Ehdotuksia ei löydy. Jos tämä on uusi sivusto, kokeile uudelleen vuorokauden kuluttua.";
+$a->strings["Ignore/Hide"] = "Jätä huomiotta/piilota";
+$a->strings["Access to this profile has been restricted."] = "Pääsy tähän profiiliin on rajoitettu";
 $a->strings["Image uploaded but image cropping failed."] = "Kuva ladattu mutta kuvan rajaus epäonnistui.";
 $a->strings["Image size reduction [%s] failed."] = "Kuvan pienentäminen [%s] epäonnistui.";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Jos kuva ei näy heti, lataa sivu uudelleen tai tyhjennä selaimen välimuisti.";
 $a->strings["Unable to process image"] = "Kuvan käsitteleminen epäonnistui";
+$a->strings["Image exceeds size limit of %s"] = "Kuva ylittää kokorajoituksen %s";
+$a->strings["Unable to process image."] = "Kuvan käsitteleminen epäonnistui.";
 $a->strings["Upload File:"] = "Lähetä tiedosto:";
 $a->strings["Select a profile:"] = "Valitse profiili:";
+$a->strings["Upload Profile Photo"] = "Lataa profiilikuva";
+$a->strings["Upload"] = "Lähetä";
 $a->strings["or"] = "tai";
 $a->strings["skip this step"] = "ohita tämä vaihe";
 $a->strings["select a photo from your photo albums"] = "valitse kuva albumeistasi";
@@ -921,474 +825,62 @@ $a->strings["Crop Image"] = "Rajaa kuva";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Rajaa kuva sopivasti.";
 $a->strings["Done Editing"] = "Lopeta muokkaus";
 $a->strings["Image uploaded successfully."] = "Kuvan lähettäminen onnistui.";
-$a->strings["Contact wasn't found or can't be unfollowed."] = "";
-$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata";
-$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri.";
-$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.";
-$a->strings["Theme settings updated."] = "Teeman asetukset päivitetty.";
-$a->strings["Information"] = "Tietoja";
-$a->strings["Overview"] = "Yleiskatsaus";
-$a->strings["Federation Statistics"] = "Liiton tilastotiedot";
-$a->strings["Configuration"] = "Kokoonpano";
-$a->strings["Site"] = "Sivusto";
-$a->strings["Users"] = "Käyttäjät";
-$a->strings["Addons"] = "Lisäosat";
-$a->strings["Themes"] = "Teemat";
-$a->strings["Additional features"] = "Lisäominaisuuksia";
-$a->strings["Terms of Service"] = "Käyttöehdot";
-$a->strings["Database"] = "Tietokanta";
-$a->strings["DB updates"] = "Tietokannan päivitykset";
-$a->strings["Inspect Queue"] = "Tarkista jono";
-$a->strings["Tools"] = "Työkalut";
-$a->strings["Contact Blocklist"] = "Kontaktien estolista";
-$a->strings["Server Blocklist"] = "Palvelimien estolista";
-$a->strings["Delete Item"] = "Poista kohde";
-$a->strings["Logs"] = "Lokit";
-$a->strings["View Logs"] = "Katso lokit";
-$a->strings["Diagnostics"] = "Diagnostiikka";
-$a->strings["PHP Info"] = "PHP tietoja";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "Tarkista webfinger";
-$a->strings["Admin"] = "Ylläpitäjä";
-$a->strings["Addon Features"] = "Lisäosaominaisuudet";
-$a->strings["User registrations waiting for confirmation"] = "Käyttäjärekisteröinnit odottavat hyväksyntää";
-$a->strings["Administration"] = "Ylläpito";
-$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
-$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "";
-$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
-$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
-$a->strings["The Terms of Service"] = "Käyttöehdot";
-$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "";
-$a->strings["The blocked domain"] = "Estetty verkkotunnus";
-$a->strings["Reason for the block"] = "Eston syy";
-$a->strings["The reason why you blocked this domain."] = "Verkkotunnuksen estosyy.";
-$a->strings["Delete domain"] = "Poista verkkotunnus";
-$a->strings["Check to delete this entry from the blocklist"] = "Laita rasti poistaaksesi kohde estolistalta";
-$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."] = "";
-$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."] = "";
-$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
-$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
-$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
-$a->strings["Block reason"] = "Estosyy";
-$a->strings["Add Entry"] = "Lisää merkintä";
-$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
-$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
-$a->strings["Delete entry from blocklist"] = "Poista kohde estolistalta";
-$a->strings["Delete entry from blocklist?"] = "Poista kohde estolistalta?";
-$a->strings["Server added to blocklist."] = "Palvelin lisätty estolistalle";
-$a->strings["Site blocklist updated."] = "Sivuston estolista päivitetty.";
-$a->strings["The contact has been blocked from the node"] = "Kontakti on estetty tällä solmulla";
-$a->strings["Could not find any contact entry for this URL (%s)"] = "";
-$a->strings["%s contact unblocked"] = [
-       0 => "%s kontakti poistettu estolistalta",
-       1 => "%s kontaktia poistettu estolistalta",
+$a->strings["Image upload failed."] = "Kuvan lähettäminen epäonnistui.";
+$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä";
+$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.";
+$a->strings["The user id is %d"] = "";
+$a->strings["Remove My Account"] = "Poista tilini";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.";
+$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:";
+$a->strings["Manage Identities and/or Pages"] = "Hallitse identiteetit ja/tai sivut";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
+$a->strings["Select an identity to manage: "] = "Valitse identiteetti hallitavaksi:";
+$a->strings["[Embedded content - reload page to view]"] = "[Upotettu sisältö - näet sen päivittämällä sivun]";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Sivuston päivittäinen rekisteröintiraja ylitetty. Yritä uudelleen huomenna.";
+$a->strings["Import"] = "Tuo";
+$a->strings["Move account"] = "Siirrä tili";
+$a->strings["You can import an account from another Friendica server."] = "Voit tuoda käyttäjätilin toiselta Friendica -palvelimelta.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Tämä on kokeellinen ominaisuus. Emme voi tuoda kontakteja OStatus-verkolta (GNU social/Statusnet) tai Diasporalta.";
+$a->strings["Account file"] = "Tilitiedosto";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "";
+$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty.";
+$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite.";
+$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään.";
+$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui.";
+$a->strings["%d message sent."] = [
+       0 => "%d viesti lähetetty.",
+       1 => "%d viestiä lähetetty.",
 ];
-$a->strings["Remote Contact Blocklist"] = "Etäkontakti estolista";
-$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
-$a->strings["Block Remote Contact"] = "Estä etäkontakti";
-$a->strings["select all"] = "valitse kaikki";
-$a->strings["select none"] = "älä valitse mitään";
-$a->strings["No remote contact is blocked from this node."] = "";
-$a->strings["Blocked Remote Contacts"] = "Estetty etäkontaktit";
-$a->strings["Block New Remote Contact"] = "Estä uusi etäkontakti";
-$a->strings["Photo"] = "Kuva";
-$a->strings["Address"] = "Osoite";
-$a->strings["%s total blocked contact"] = [
-       0 => "Yhteensä %s estetty kontakti",
-       1 => "Yhteensä %s estettyjä kontakteja",
-];
-$a->strings["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
-$a->strings["Delete this Item"] = "Poista tämä kohde";
-$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "";
-$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "";
-$a->strings["GUID"] = "GUID";
-$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
-$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
-$a->strings["unknown"] = "tuntematon";
-$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."] = "";
-$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
-$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:";
-$a->strings["ID"] = "";
-$a->strings["Recipient Name"] = "Vastaanottajan nimi";
-$a->strings["Recipient Profile"] = "Vastaanottajan profiili";
-$a->strings["Network"] = "Verkko";
-$a->strings["Created"] = "Luotu";
-$a->strings["Last Tried"] = "Viimeksi yritetty";
-$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."] = "";
-$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 bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
-$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
-$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "";
-$a->strings["The worker was never executed. Please check your database structure!"] = "";
-$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "";
-$a->strings["Normal Account"] = "Perustili";
-$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
-$a->strings["Public Forum Account"] = "Julkinen foorumitili";
-$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
-$a->strings["Blog Account"] = "Blogitili";
-$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
-$a->strings["Message queues"] = "Viestijonot";
-$a->strings["Summary"] = "Yhteenveto";
-$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
-$a->strings["Pending registrations"] = "Vireillä olevat rekisteröinnit";
-$a->strings["Version"] = "Versio";
-$a->strings["Active addons"] = "Käytössäolevat lisäosat";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "";
-$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
-$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa";
-$a->strings["No community page"] = "Ei yhteisösivua";
-$a->strings["Public postings from users of this site"] = "Julkiset julkaisut tämän sivuston käyttäjiltä";
-$a->strings["Public postings from the federated network"] = "Julkiset julkaisut liittoutuneelta verkolta";
-$a->strings["Public postings from local users and the federated network"] = "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta";
-$a->strings["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
-$a->strings["Users, Global Contacts/fallback"] = "";
-$a->strings["One month"] = "Yksi kuukausi";
-$a->strings["Three months"] = "Kolme kuukautta";
-$a->strings["Half a year"] = "Puoli vuotta";
-$a->strings["One year"] = "Yksi vuosi";
-$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
-$a->strings["Closed"] = "Suljettu";
-$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
-$a->strings["Open"] = "Avoin";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$a->strings["Don't check"] = "Älä tarkista";
-$a->strings["check the stable version"] = "";
-$a->strings["check the development version"] = "";
-$a->strings["Republish users to directory"] = "";
-$a->strings["Registration"] = "Rekisteröityminen";
-$a->strings["File upload"] = "Tiedoston lataus";
-$a->strings["Policies"] = "Käytännöt";
-$a->strings["Auto Discovered Contact Directory"] = "";
-$a->strings["Performance"] = "Suoritus";
-$a->strings["Worker"] = "Worker";
-$a->strings["Message Relay"] = "";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
-$a->strings["Site name"] = "Sivuston nimi";
-$a->strings["Host name"] = "Palvelimen nimi";
-$a->strings["Sender Email"] = "Lähettäjän sähköposti";
-$a->strings["The email address your server shall use to send notification emails from."] = "";
-$a->strings["Banner/Logo"] = "Banneri/logo";
-$a->strings["Shortcut icon"] = "Pikakuvake";
-$a->strings["Link to an icon that will be used for browsers."] = "";
-$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
-$a->strings["Link to an icon that will be used for tablets and mobiles."] = "";
-$a->strings["Additional Info"] = "Lisätietoja";
-$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
-$a->strings["System language"] = "Järjestelmän kieli";
-$a->strings["System theme"] = "Järjestelmäteema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
-$a->strings["Theme for mobile devices"] = "Mobiiliteema";
-$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "";
-$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
-$a->strings["Hide help entry from navigation menu"] = "";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
-$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "";
-$a->strings["Maximum image size"] = "Suurin kuvakoko";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "Suurin kuvapituus";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
-$a->strings["JPEG image quality"] = "JPEG-kuvanlaatu";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
-$a->strings["Register policy"] = "";
-$a->strings["Maximum Daily Registrations"] = "Päivittäinen rekisteröitymisraja";
-$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."] = "";
-$a->strings["Register text"] = "Rekisteröitymisteksti";
-$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
-$a->strings["Accounts abandoned after x days"] = "";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
-$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
-$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"] = "";
-$a->strings["No OEmbed rich content"] = "";
-$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
-$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
-$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
-$a->strings["Block public"] = "Estä vierailijat";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
-$a->strings["Force publish"] = "";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
-$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
-$a->strings["Private posts by default for new users"] = "";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
-$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
-$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."] = "";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
-$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
-$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."] = "";
-$a->strings["Allow Users to set remote_self"] = "";
-$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."] = "";
-$a->strings["Block multiple registrations"] = "";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "";
-$a->strings["OpenID support"] = "OpenID-tuki";
-$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
-$a->strings["Fullname check"] = "Koko nimi tarkistus";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
-$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
-$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
-$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."] = "";
-$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
-$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.";
-$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
-$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
-$a->strings["Verify SSL"] = "Vahvista SSL";
-$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."] = "";
-$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
-$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
-$a->strings["Network timeout"] = "Verkon aikakatkaisu";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Maximum Load Average (Frontend)"] = "";
-$a->strings["Maximum system load before the frontend quits service - default 50."] = "";
-$a->strings["Minimal Memory"] = "";
-$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
-$a->strings["Maximum table size for optimization"] = "";
-$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "";
-$a->strings["Minimum level of fragmentation"] = "";
-$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
-$a->strings["Periodical check of global contacts"] = "";
-$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
-$a->strings["Days between requery"] = "";
-$a->strings["Number of days after which a server is requeried for his contacts."] = "";
-$a->strings["Discover contacts from other servers"] = "";
-$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'."] = "";
-$a->strings["Timeframe for fetching global contacts"] = "";
-$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."] = "";
-$a->strings["Search the local directory"] = "Paikallisluettelohaku";
-$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."] = "";
-$a->strings["Publish server information"] = "Julkaise palvelintiedot";
-$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."] = "";
-$a->strings["Check upstream version"] = "";
-$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
-$a->strings["Suppress Tags"] = "Piilota tunnisteet";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "";
-$a->strings["The item caches buffers generated bbcode and external images."] = "";
-$a->strings["Cache duration in seconds"] = "";
-$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."] = "";
-$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
-$a->strings["Temp path"] = "";
-$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
-$a->strings["Base path to 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."] = "";
-$a->strings["Disable picture proxy"] = "";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
-$a->strings["Only search in tags"] = "";
-$a->strings["On large systems the text search can slow down the system extremely."] = "";
-$a->strings["New base url"] = "";
-$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "";
-$a->strings["RINO Encryption"] = "RINO-salaus";
-$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
-$a->strings["Enabled"] = "Käytössä";
-$a->strings["Maximum number of parallel workers"] = "";
-$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
-$a->strings["Don't use 'proc_open' with the worker"] = "";
-$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 worker calls in your crontab."] = "";
-$a->strings["Enable fastlane"] = "Käytä fastlane";
-$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
-$a->strings["Enable frontend worker"] = "";
-$a->strings["When enabled the Worker process is triggered when backend access is performed \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "";
-$a->strings["Subscribe to relay"] = "";
-$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
-$a->strings["Relay server"] = "";
-$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
-$a->strings["Direct relay transfer"] = "";
-$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
-$a->strings["Relay scope"] = "";
-$a->strings["Can be 'all' or 'tags'. 'all' means that every public post should be received. 'tags' means that only posts with selected tags should be received."] = "";
-$a->strings["all"] = "kaikki";
-$a->strings["tags"] = "tunnisteet";
-$a->strings["Server tags"] = "palvelintunnisteet";
-$a->strings["Comma separated list of tags for the 'tags' subscription."] = "";
-$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
-$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s";
-$a->strings["Executing %s failed with error: %s"] = "";
-$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
-$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
-$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
-$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
-$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\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "";
-$a->strings["Registration details for %s"] = "";
-$a->strings["%s user blocked/unblocked"] = [
-       0 => "%s käyttäjä estetty / poistettu estolistalta",
-       1 => "%s käyttäjää estetty / poistettu estolistalta",
-];
-$a->strings["%s user deleted"] = [
-       0 => "%s käyttäjä poistettu",
-       1 => "%s käyttäjää poistettu",
-];
-$a->strings["User '%s' deleted"] = "Käyttäjä '%s' poistettu";
-$a->strings["User '%s' unblocked"] = "Käyttäjä '%s' poistettu estolistalta";
-$a->strings["User '%s' blocked"] = "Käyttäjä '%s' estetty";
-$a->strings["Email"] = "Sähköposti";
-$a->strings["Register date"] = "Rekisteripäivämäärä";
-$a->strings["Last login"] = "Viimeisin kirjautuminen";
-$a->strings["Last item"] = "Viimeisin kohde";
-$a->strings["Account"] = "Tili";
-$a->strings["Add User"] = "Lisää käyttäjä";
-$a->strings["User registrations waiting for confirm"] = "";
-$a->strings["User waiting for permanent deletion"] = "";
-$a->strings["Request date"] = "Pyynnön päivämäärä";
-$a->strings["No registrations."] = "Ei rekisteröintejä.";
-$a->strings["Note from the user"] = "";
-$a->strings["Deny"] = "Kieltäydy";
-$a->strings["Site admin"] = "Sivuston ylläpito";
-$a->strings["Account expired"] = "Tili vanhentunut";
-$a->strings["New User"] = "Uusi käyttäjä";
-$a->strings["Deleted since"] = "Poistettu";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
-$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?"] = "";
-$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
-$a->strings["Nickname"] = "Lempinimi";
-$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
-$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
-$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
-$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
-$a->strings["Disable"] = "Poista käytöstä";
-$a->strings["Enable"] = "Ota käyttöön";
-$a->strings["Toggle"] = "Vaihda";
-$a->strings["Author: "] = "Tekijä";
-$a->strings["Maintainer: "] = "Ylläpitäjä:";
-$a->strings["Reload active addons"] = "";
-$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "";
-$a->strings["No themes found."] = "Teemoja ei löytynyt.";
-$a->strings["Screenshot"] = "Kuvakaappaus";
-$a->strings["Reload active themes"] = "Lataa aktiiviset teemat uudelleen";
-$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
-$a->strings["[Experimental]"] = "[Kokeellinen]";
-$a->strings["[Unsupported]"] = "[Ei tueta]";
-$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
-$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
-$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
-$a->strings["Clear"] = "Tyhjennä";
-$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
-$a->strings["Log file"] = "Lokitiedosto";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "Lokitaso";
-$a->strings["PHP logging"] = "PHP-loki";
-$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."] = "";
-$a->strings["Error trying to open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
-$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
-$a->strings["Off"] = "Pois päältä";
-$a->strings["On"] = "Päällä";
-$a->strings["Lock feature %s"] = "Lukitse ominaisuus %s";
-$a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet";
-$a->strings["Source input"] = "";
-$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raaka HTML)";
-$a->strings["BBCode::convert"] = "BBCode::convert";
-$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
-$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
-$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert";
-$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
-$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode";
-$a->strings["Source input \\x28Diaspora format\\x29"] = "";
-$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
-$a->strings["Raw HTML input"] = "Raaka HTML-syöte";
-$a->strings["HTML Input"] = "HTML-syöte";
-$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
-$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
-$a->strings["Source text"] = "Lähdeteksti";
-$a->strings["BBCode"] = "BBCode";
-$a->strings["Markdown"] = "Markdown";
-$a->strings["HTML"] = "HTML";
-$a->strings["Status:"] = "Tila:";
-$a->strings["Homepage:"] = "Kotisivu:";
-$a->strings["Global Directory"] = "Maailmanlaajuinen hakemisto";
-$a->strings["Find on this site"] = "";
-$a->strings["Results for:"] = "Tulokset haulla:";
-$a->strings["Site Directory"] = "Sivuston luettelo";
-$a->strings["No entries (some entries may be hidden)."] = "";
-$a->strings["People Search - %s"] = "";
-$a->strings["Forum Search - %s"] = "Foorumihaku - %s";
-$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä.";
-$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin.";
-$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
-$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
-$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.";
-$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
-$a->strings["running at web location"] = "käynnissä osoitteessa";
-$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> saadaksesi lisätietoja Friendica- projektista.";
-$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa";
-$a->strings["the bugtracker at github"] = "githubin bugtrackeri";
-$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca";
-$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:";
-$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia";
-$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Lue tämän solmun <a href=\"%1\$s/tos\">käyttöehdot</a>.";
-$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty.";
-$a->strings["Total invitation limit exceeded."] = "Kutsuraja ylitetty.";
-$a->strings["%s : Not a valid email address."] = "%s : Virheellinen sähköpostiosoite.";
-$a->strings["Please join us on Friendica"] = "Tervetuloa Friendicaan";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Kutsuraja ylitetty. Ota yhteyttä ylläpitäjään.";
-$a->strings["%s : Message delivery failed."] = "%s : Viestin toimitus epäonnistui.";
-$a->strings["%d message sent."] = [
-       0 => "%d viesti lähetetty.",
-       1 => "%d viestiä lähetetty.",
-];
-$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "";
-$a->strings["To accept this invitation, please visit and register at %s."] = "";
-$a->strings["Send invitations"] = "Lähetä kutsut";
-$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
-$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt.";
-$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui.";
-$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö.";
-$a->strings["Forgot your Password?"] = "Unohditko salasanasi?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
-$a->strings["Nickname or Email: "] = "Lempinimi tai sähköposti:";
-$a->strings["Reset"] = "Nollaus";
-$a->strings["Password Reset"] = "Salasanan nollaus";
-$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi.";
-$a->strings["Your new password is"] = "Uusi salasanasi on";
-$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten";
-$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
-$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t";
-$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s";
-$a->strings["add"] = "lisää";
-$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
-       0 => "",
-       1 => "",
+$a->strings["You have no more invitations available"] = "Sinulla ei ole kutsuja jäljellä";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "";
+$a->strings["To accept this invitation, please visit and register at %s."] = "";
+$a->strings["Send invitations"] = "Lähetä kutsut";
+$a->strings["Enter email addresses, one per line:"] = "Syötä sähköpostiosoitteet, yksi riviä kohden:";
+$a->strings["Your message:"] = "Viestisi:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kun olet rekisteröitynyt, lähetä minulle kaverikutsun profiilisivuni kautta:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID -protokollavirhe. Tunnusta ei vastaanotettu.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Käyttäjätiliä ei löytynyt. Rekisteröityminen OpenID:n kautta ei ole sallittua tällä sivustolla.";
+$a->strings["No profile"] = "Ei profiilia";
+$a->strings["You must be logged in to use addons. "] = "Sinun pitää kirjautua sisään, jotta voit käyttää lisäosia";
+$a->strings["Applications"] = "Sovellukset";
+$a->strings["No installed applications."] = "Ei asennettuja sovelluksia.";
+$a->strings["Remove term"] = "Poista kohde";
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = [
+       0 => "",
+       1 => "",
 ];
 $a->strings["Messages in this group won't be send to these receivers."] = "";
 $a->strings["No such group"] = "Ryhmä ei ole olemassa";
+$a->strings["Group is empty"] = "Ryhmä on tyhjä";
 $a->strings["Group: %s"] = "Ryhmä: %s";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Yksityisviestit lähetetty tälle henkilölle saattaa näkyä muillekin.";
 $a->strings["Invalid contact."] = "Virheellinen kontakti.";
@@ -1396,7 +888,6 @@ $a->strings["Commented Order"] = "Järjestä viimeisimpien kommenttien mukaan";
 $a->strings["Sort by Comment Date"] = "Kommentit päivämäärän mukaan";
 $a->strings["Posted Order"] = "Järjestä julkaisupäivämäärän mukaan";
 $a->strings["Sort by Post Date"] = "Julkaisut päivämäärän mukaan";
-$a->strings["Personal"] = "Henkilökohtainen";
 $a->strings["Posts that mention or involve you"] = "Julkaisut jotka liittyvät sinuun";
 $a->strings["New"] = "Uusi";
 $a->strings["Activity Stream - by date"] = "";
@@ -1404,6 +895,19 @@ $a->strings["Shared Links"] = "Jaetut linkit";
 $a->strings["Interesting Links"] = "Kiinnostavat linkit";
 $a->strings["Starred"] = "Tähtimerkitty";
 $a->strings["Favourite Posts"] = "Lempijulkaisut";
+$a->strings["This is Friendica, version"] = "Tämä on Friendica, versio";
+$a->strings["running at web location"] = "käynnissä osoitteessa";
+$a->strings["Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."] = "Vieraile osoitteessa <a href=\"https://friendi.ca\">Friendi.ca</a> saadaksesi lisätietoja Friendica- projektista.";
+$a->strings["Bug reports and issues: please visit"] = "Bugiraportit ja kysymykset: vieraile osoitteessa";
+$a->strings["the bugtracker at github"] = "githubin bugtrackeri";
+$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Ehdotukset ja palaute: lähetä sähköposti osoitteeseen \"info\" at \"friendi - piste - ca";
+$a->strings["Installed addons/apps:"] = "Asennettu lisäosat/sovellukset:";
+$a->strings["No installed addons/apps"] = "Ei asennettuja lisäosia/sovelluksia";
+$a->strings["Read about the <a href=\"%1\$s/tos\">Terms of Service</a> of this node."] = "Lue tämän solmun <a href=\"%1\$s/tos\">käyttöehdot</a>.";
+$a->strings["On this server the following remote servers are blocked."] = "Tällä palvelimella seuraavat etäpalvelimet ovat estetty.";
+$a->strings["Reason for the block"] = "Eston syy";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$a->strings["Profile not found."] = "Profiilia ei löytynyt.";
 $a->strings["Profile deleted."] = "Profiili poistettiin.";
 $a->strings["Profile-"] = "Profiili-";
 $a->strings["New profile created."] = "Uusi profiili luotu.";
@@ -1419,6 +923,7 @@ $a->strings["Sexual Preference"] = "Seksuaalinen suuntautuminen";
 $a->strings["XMPP"] = "XMPP";
 $a->strings["Homepage"] = "Kotisivu";
 $a->strings["Interests"] = "Kiinnostukset";
+$a->strings["Address"] = "Osoite";
 $a->strings["Location"] = "Sijainti";
 $a->strings["Profile updated."] = "Profiili päivitettiin.";
 $a->strings[" and "] = "ja";
@@ -1427,13 +932,13 @@ $a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
 $a->strings[" - Visit %1\$s's %2\$s"] = "";
 $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
 $a->strings["Hide contacts and friends:"] = "Piilota kontaktit ja kaverit:";
+$a->strings["No"] = "Ei";
 $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Piilota tämän profiilin kontakti/kaverilista?";
 $a->strings["Show more profile fields:"] = "Näytä lisää profiilikenttiä:";
 $a->strings["Profile Actions"] = "";
 $a->strings["Edit Profile Details"] = "Muokkaa profiilin yksityiskohdat";
 $a->strings["Change Profile Photo"] = "Vaihda profiilikuva";
 $a->strings["View this profile"] = "Näytä profiilia";
-$a->strings["Edit visibility"] = "Muokkaa näkyvyyttä";
 $a->strings["Create a new profile using these settings"] = "Luo uusi profiili näillä asetuksilla";
 $a->strings["Clone this profile"] = "Kloonaa tämä profiili";
 $a->strings["Delete this profile"] = "Poista tämä profiili";
@@ -1443,12 +948,11 @@ $a->strings["Preferences"] = "Mieltymykset";
 $a->strings["Status information"] = "Tilatiedot";
 $a->strings["Additional information"] = "Lisätietoja";
 $a->strings["Relation"] = "Suhde";
-$a->strings["Miscellaneous"] = "Sekalaista";
 $a->strings["Your Gender:"] = "Sukupuoli:";
 $a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Siviilisääty:";
-$a->strings["Sexual Preference:"] = "Seksuaalinen suuntautuminen:";
 $a->strings["Example: fishing photography software"] = "Esimerkki: kalastus valokuvaus ohjelmistot";
 $a->strings["Profile Name:"] = "Profiilinimi:";
+$a->strings["Required"] = "Vaaditaan";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "";
 $a->strings["Your Full Name:"] = "Koko nimi:";
 $a->strings["Title/Description:"] = "Otsikko/kuvaus:";
@@ -1457,7 +961,6 @@ $a->strings["Locality/City:"] = "Kaupunki:";
 $a->strings["Region/State:"] = "Alue/osavaltio:";
 $a->strings["Postal/Zip Code:"] = "Postinumero:";
 $a->strings["Country:"] = "Maa:";
-$a->strings["Age: "] = "Ikä:";
 $a->strings["Who: (if applicable)"] = "Kuka: (tarvittaessa)";
 $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esimerkkejä: cathy123, Cathy Williams, cathy@example.com";
 $a->strings["Since [date]:"] = "Lähtien [päivämäärä]:";
@@ -1465,15 +968,11 @@ $a->strings["Tell us about yourself..."] = "Kerro vähän itsestäsi...";
 $a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) osoite:";
 $a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "";
 $a->strings["Homepage URL:"] = "Kotisivun URL-osoite:";
-$a->strings["Hometown:"] = "Kotikaupunki:";
-$a->strings["Political Views:"] = "Politiikka:";
 $a->strings["Religious Views:"] = "Uskonto:";
 $a->strings["Public Keywords:"] = "Julkiset avainsanat:";
 $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Käytetään kaveriehdotuksia varten, näkyy muille)";
 $a->strings["Private Keywords:"] = "Yksityiset avainsanat:";
 $a->strings["(Used for searching profiles, never shown to others)"] = "(Käytetään profiilihakua varten, ei näy muille)";
-$a->strings["Likes:"] = "Tykkäykset:";
-$a->strings["Dislikes:"] = "Ei tykkää:";
 $a->strings["Musical interests"] = "Musiikki";
 $a->strings["Books, literature"] = "Kirjat, kirjallisuus";
 $a->strings["Television"] = "Televisio";
@@ -1483,55 +982,63 @@ $a->strings["Love/romance"] = "Rakkaus/romanssi";
 $a->strings["Work/employment"] = "Työ:";
 $a->strings["School/education"] = "Koulutus:";
 $a->strings["Contact information and Social Networks"] = "Yhteystiedot ja sosiaalinen media";
-$a->strings["Profile Image"] = "Profiilikuva";
-$a->strings["visible to everybody"] = "näkyvissä kaikille";
 $a->strings["Edit/Manage Profiles"] = "Muokkaa/hallitse profiilit";
-$a->strings["Change profile photo"] = "Vaihda profiilikuva";
-$a->strings["Create New Profile"] = "Luo uusi profiili";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
-$a->strings["Registration successful."] = "Rekisteröityminen onnistui.";
-$a->strings["Your registration can not be processed."] = "Rekisteröintisi ei voida käsitellä.";
-$a->strings["Your registration is pending approval by the site owner."] = "Rekisteröintisi odottaa ylläpitäjän hyväksyntää.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi.";
-$a->strings["Your OpenID (optional): "] = "OpenID -tunnus (valinnainen):";
-$a->strings["Include your profile in member directory?"] = "Lisää profiilisi jäsenluetteloon?";
-$a->strings["Note for the admin"] = "Viesti ylläpidolle";
-$a->strings["Leave a message for the admin, why you want to join this node"] = "Kerro yllÃ¥pitäjälle miksi haluat liittyä tähän Friendica -sivustoon";
-$a->strings["Membership on this site is by invitation only."] = "Tähän sivustoon voi liittyä vain kutsusta.";
-$a->strings["Your invitation code: "] = "Kutsukoodisi:";
-$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):";
-$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)";
-$a->strings["New Password:"] = "Uusi salasana:";
-$a->strings["Leave empty for an auto generated password."] = "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan.";
-$a->strings["Confirm:"] = "Vahvista:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
-$a->strings["Choose a nickname: "] = "Valitse lempinimi:";
-$a->strings["Register"] = "Rekisteröidy";
-$a->strings["Import your profile to this friendica instance"] = "Tuo profiilisi tähän Friendica -instanssiin.";
-$a->strings["User deleted their account"] = "Käyttäjä poisti tilinsä";
-$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Friendica -solmullasi käyttäjä poisti tilinsä. Varmista että hänen tiedot poistetaan myös varmuuskopioista.";
-$a->strings["The user id is %d"] = "";
-$a->strings["Remove My Account"] = "Poista tilini";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tämä poistaa käyttäjätilisi pysyvästi. Poistoa ei voi perua myöhemmin.";
-$a->strings["Please enter your password for verification:"] = "Syötä salasanasi varmistusta varten:";
+$a->strings["Event can not end before it has started."] = "";
+$a->strings["Event title and start time are required."] = "Tapahtuman nimi ja alkamisaika vaaditaan.";
+$a->strings["View"] = "Katso";
+$a->strings["Create New Event"] = "Luo uusi tapahtuma";
+$a->strings["Previous"] = "Edellinen";
+$a->strings["Next"] = "Seuraava";
+$a->strings["list"] = "luettelo";
+$a->strings["Event details"] = "Tapahtuman tiedot";
+$a->strings["Starting date and Title are required."] = "Aloituspvm ja otsikko vaaditaan.";
+$a->strings["Event Starts:"] = "Tapahtuma alkaa:";
+$a->strings["Finish date/time is not known or not relevant"] = "Päättymispvm ja kellonaika ei ole tiedossa tai niillä ei ole merkitystä";
+$a->strings["Event Finishes:"] = "Tapahtuma päättyy:";
+$a->strings["Adjust for viewer timezone"] = "Ota huomioon katsojan aikavyöhyke";
+$a->strings["Description:"] = "Kuvaus:";
+$a->strings["Title:"] = "Otsikko:";
+$a->strings["Share this event"] = "Jaa tämä tapahtuma";
+$a->strings["Failed to remove event"] = "Tapahtuman poisto epäonnistui";
+$a->strings["Event removed"] = "Tapahtuma poistettu";
+$a->strings["No more system notifications."] = "Ei enää järjestelmäilmoituksia.";
+$a->strings["System Notifications"] = "Järjestelmäilmoitukset";
+$a->strings["Contact not found."] = "Kontaktia ei ole.";
+$a->strings["Friend suggestion sent."] = "Ystäväehdotus lähetettiin.";
+$a->strings["Suggest Friends"] = "Ehdota ystäviä";
+$a->strings["Suggest a friend for %s"] = "Ehdota ystävää ystävälle %s";
+$a->strings["Item not available."] = "Kohde ei saatavilla.";
+$a->strings["Item was not found."] = "Kohdetta ei löytynyt.";
+$a->strings["No friends to display."] = "Ei näytettäviä kavereita.";
+$a->strings["No contacts."] = "Ei kontakteja.";
+$a->strings["Visit %s's profile [%s]"] = "Näytä %s-käyttäjän profiili [%s]";
+$a->strings["Subscribing to OStatus contacts"] = "OStatus -kontaktien tilaaminen";
+$a->strings["No contact provided."] = "Kontakti puuttuu.";
+$a->strings["Couldn't fetch information for contact."] = "Kontaktin tietoja ei voitu hakea.";
+$a->strings["Couldn't fetch friends for contact."] = "Ei voitu hakea kontaktin kaverit.";
+$a->strings["success"] = "onnistui";
+$a->strings["failed"] = "epäonnistui";
+$a->strings["Authorize application connection"] = "Vahvista sovellusyhteys";
+$a->strings["Return to your app and insert this Securty Code:"] = "Palaa takaisin sovellukseen ja lisää tämä turvakoodi:";
+$a->strings["Please login to continue."] = "Ole hyvä ja kirjaudu jatkaaksesi.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Haluatko antaa tälle sovellukselle luvan hakea viestejäsi ja yhteystietojasi ja/tai luoda uusia viestejä?";
+$a->strings["everybody"] = "kaikki";
+$a->strings["Account"] = "Tili";
+$a->strings["Additional features"] = "Lisäominaisuuksia";
 $a->strings["Display"] = "Ulkonäkö";
 $a->strings["Social Networks"] = "Sosiaalinen media";
-$a->strings["Delegations"] = "";
+$a->strings["Addons"] = "Lisäosat";
 $a->strings["Connected apps"] = "Yhdistetyt sovellukset";
+$a->strings["Export personal data"] = "Vie henkilökohtaiset tiedot";
 $a->strings["Remove account"] = "Poista tili";
 $a->strings["Missing some important data!"] = "Tärkeää dataa puuttuu!";
+$a->strings["Update"] = "Päivitä";
 $a->strings["Failed to connect with email account using the settings provided."] = "";
 $a->strings["Email settings updated."] = "Sähköpostin asetukset päivitettiin.";
 $a->strings["Features updated"] = "Ominaisuudet päivitetty";
 $a->strings["Relocate message has been send to your contacts"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Salasanat eivät täsmää. Salasana ennallaan.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Tyhjä salasanakenttä ei ole sallittu. Salasana ennallaan.";
-$a->strings["The new password has been exposed in a public data dump, please choose another."] = "";
 $a->strings["Wrong password."] = "Väärä salasana.";
-$a->strings["Password changed."] = "Salasana vaihdettu.";
-$a->strings["Password update failed. Please try again."] = "Salasanan vaihto epäonnistui. Yritä uudelleen.";
 $a->strings[" Please use a shorter name."] = "Käytä lyhyempää nimeä.";
 $a->strings[" Name too short."] = "Nimi on liian lyhyt.";
 $a->strings["Wrong Password"] = "Väärä salasana";
@@ -1541,20 +1048,22 @@ $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."] = "";
 $a->strings["Settings updated."] = "Asetukset päivitetty.";
 $a->strings["Add application"] = "Lisää sovellus";
+$a->strings["Save Settings"] = "Tallenna asetukset";
+$a->strings["Name"] = "Nimi";
 $a->strings["Consumer Key"] = "Kuluttajan avain";
 $a->strings["Consumer Secret"] = "Kuluttajasalaisuus";
 $a->strings["Redirect"] = "Uudelleenohjaus";
 $a->strings["Icon url"] = "Kuvakkeen URL-osoite";
 $a->strings["You can't edit this application."] = "Et voi muokata tätä sovellusta.";
 $a->strings["Connected Apps"] = "Yhdistetyt sovellukset";
-$a->strings["Edit"] = "Muokkaa";
 $a->strings["Client key starts with"] = "Asiakasavain alkaa";
 $a->strings["No name"] = "Ei nimeä";
 $a->strings["Remove authorization"] = "Poista lupa";
 $a->strings["No Addon settings configured"] = "Lisäosa-asetukset puuttuvat";
 $a->strings["Addon Settings"] = "Lisäosa-asetukset";
+$a->strings["Off"] = "Pois päältä";
+$a->strings["On"] = "Päällä";
 $a->strings["Additional Features"] = "Lisäominaisuuksia";
-$a->strings["Diaspora"] = "Diaspora";
 $a->strings["enabled"] = "käytössä";
 $a->strings["disabled"] = "pois käytöstä";
 $a->strings["Built-in support for %s connectivity is %s"] = "";
@@ -1583,9 +1092,9 @@ $a->strings["Email password:"] = "Sähköpostin salasana:";
 $a->strings["Reply-to address:"] = "Vastausosoite:";
 $a->strings["Send public posts to all email contacts:"] = "Lähetä julkiset julkaisut kaikille kontakteille:";
 $a->strings["Action after import:"] = "";
-$a->strings["Mark as seen"] = "Merkitse luetuksi";
 $a->strings["Move to folder"] = "Siirrä kansioon";
 $a->strings["Move to folder:"] = "Siirrä kansioon:";
+$a->strings["No special theme for mobile devices"] = "Ei mobiiliteemaa";
 $a->strings["%s - (Unsupported)"] = "%s - (Ei tueta)";
 $a->strings["%s - (Experimental)"] = "%s - (Kokeellinen)";
 $a->strings["Display Settings"] = "Näyttöasetukset";
@@ -1666,12 +1175,13 @@ $a->strings["Expire photos:"] = "Kuvat vanhenee:";
 $a->strings["Only expire posts by others:"] = "";
 $a->strings["Account Settings"] = "Tiliasetukset";
 $a->strings["Password Settings"] = "Salasana-asetukset";
+$a->strings["New Password:"] = "Uusi salasana:";
+$a->strings["Confirm:"] = "Vahvista:";
 $a->strings["Leave password fields blank unless changing"] = "Jätä salasana kenttää tyhjäksi jos et halua vaihtaa salasanaa";
 $a->strings["Current Password:"] = "Nykyinen salasana:";
 $a->strings["Your current password to confirm the changes"] = "";
 $a->strings["Password:"] = "Salasana:";
 $a->strings["Basic Settings"] = "Perusasetukset";
-$a->strings["Full Name:"] = "Koko nimi:";
 $a->strings["Email Address:"] = "Sähköpostiosoite:";
 $a->strings["Your Timezone:"] = "Aikavyöhyke:";
 $a->strings["Your Language:"] = "Kieli:";
@@ -1683,10 +1193,12 @@ $a->strings["Maximum Friend Requests/Day:"] = "Kaveripyyntöraja päivässä:";
 $a->strings["(to prevent spam abuse)"] = "(roskapostin estämiseksi)";
 $a->strings["Default Post Permissions"] = "Julkaisun oletuskäyttöoikeudet:";
 $a->strings["(click to open/close)"] = "(klikkaa auki/kiinni)";
+$a->strings["Show to Groups"] = "Näytä ryhmille";
+$a->strings["Show to Contacts"] = "Näytä kontakteille";
 $a->strings["Default Private Post"] = "";
 $a->strings["Default Public Post"] = "";
 $a->strings["Default Permissions for New Posts"] = "Uuden julkaisun oletuskäyttöoikeudet";
-$a->strings["Maximum private messages per day from unknown people:"] = "";
+$a->strings["Maximum private messages per day from unknown people:"] = "Enimmäismäärä yksityisviestejä päivässä tuntemattomilta henkilöiltä:";
 $a->strings["Notification Settings"] = "Huomautusasetukset";
 $a->strings["By default post a status message when:"] = "Oletuksena julkaise tilapäivitys kun:";
 $a->strings["accepting a friend request"] = "hyväksyt kaveripyynnön";
@@ -1712,470 +1224,958 @@ $a->strings["Change the behaviour of this account for special situations"] = "";
 $a->strings["Relocate"] = "Uudelleensijoitus";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
 $a->strings["Resend relocate message to contacts"] = "";
-$a->strings["default"] = "oletus";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Muunnelmat";
-$a->strings["Repeat the image"] = "Toista kuva";
-$a->strings["Will repeat your image to fill the background."] = "";
-$a->strings["Stretch"] = "Venytä";
-$a->strings["Will stretch to width/height of the image."] = "";
-$a->strings["Resize fill and-clip"] = "";
-$a->strings["Resize to fill and retain aspect ratio."] = "";
-$a->strings["Resize best fit"] = "";
-$a->strings["Resize to best fit and retain aspect ratio."] = "";
-$a->strings["Default"] = "Oletus";
-$a->strings["Note"] = "";
-$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
-$a->strings["Select scheme"] = "Valitse malli";
-$a->strings["Navigation bar background color"] = "Navigointipalkin taustaväri";
-$a->strings["Navigation bar icon color "] = "Navigointipalkin kuvakkeiden väri";
-$a->strings["Link color"] = "Linkin väri";
-$a->strings["Set the background color"] = "Valitse taustaväri";
-$a->strings["Content background opacity"] = "Sisällön taustasameus";
-$a->strings["Set the background image"] = "Valitse taustakuva";
-$a->strings["Login page background image"] = "Sisäänkirjautumissivun taustakuva";
-$a->strings["Login page background color"] = "Sisäänkirjautumissivun taustaväri";
-$a->strings["Leave background image and color empty for theme defaults"] = "";
-$a->strings["Guest"] = "Vieras";
-$a->strings["Visitor"] = "Vierailija";
-$a->strings["Logout"] = "Kirjaudu ulos";
-$a->strings["End this session"] = "Lopeta istunto";
-$a->strings["Your posts and conversations"] = "Omat julkaisut ja keskustelut";
-$a->strings["Your profile page"] = "Oma profiilisivu";
-$a->strings["Your photos"] = "Omat kuvat";
-$a->strings["Videos"] = "Videot";
-$a->strings["Your videos"] = "Omat videot";
-$a->strings["Your events"] = "Omat tapahtumat";
-$a->strings["Conversations from your friends"] = "Kavereiden keskustelut";
-$a->strings["Events and Calendar"] = "Tapahtumat ja kalenteri";
-$a->strings["Private mail"] = "Yksityinen posti";
-$a->strings["Account settings"] = "Tiliasetukset";
-$a->strings["Manage/edit friends and contacts"] = "Hallitse/muokkaa kaverit ja kontaktit";
-$a->strings["Alignment"] = "Kohdistaminen";
-$a->strings["Left"] = "Vasemmalle";
-$a->strings["Center"] = "Keskelle";
-$a->strings["Color scheme"] = "Värimalli";
-$a->strings["Posts font size"] = "Julkaisujen fonttikoko";
-$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko";
-$a->strings["Comma separated list of helper forums"] = "";
-$a->strings["don't show"] = "älä näytä";
-$a->strings["show"] = "näytä";
-$a->strings["Set style"] = "Aseta tyyli";
-$a->strings["Community Pages"] = "Yhteisösivut";
-$a->strings["Community Profiles"] = "Yhteisöprofiilit";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "Yhdistä palvelut";
-$a->strings["Find Friends"] = "Etsi kavereita";
-$a->strings["Last users"] = "Viimeisimmät käyttäjät";
-$a->strings["Local Directory"] = "Paikallinen hakemisto";
-$a->strings["Similar Interests"] = "Yhteiset harrastukset";
-$a->strings["Invite Friends"] = "Kutsu kavereita";
-$a->strings["External link to forum"] = "Ulkoinen linkki foorumiin";
-$a->strings["Quick Start"] = "Pika-aloitus";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Virhe: tiedostosta puuttuu versiotiedot! Saattaa olla että tämä ei ole Friendica -tilitiedosto?";
-$a->strings["User '%s' already exists on this server!"] = "Käyttäjä '%s' on jo olemassa tällä palvelimella!";
-$a->strings["User creation error"] = "Virhe käyttäjän luomisessa";
-$a->strings["User profile creation error"] = "Virhe käyttäjäprofiilin luomisessa";
-$a->strings["%d contact not imported"] = [
-       0 => "%d kontakti ei tuotu",
-       1 => "%d kontakteja ei tuotu",
+$a->strings["Account approved."] = "Tili hyväksytty.";
+$a->strings["Registration revoked for %s"] = "";
+$a->strings["Please login."] = "Ole hyvä ja kirjaudu.";
+$a->strings["Group created."] = "Ryhmä luotu.";
+$a->strings["Could not create group."] = "Ryhmää ei voitu luoda.";
+$a->strings["Group not found."] = "Ryhmää ei löytynyt.";
+$a->strings["Group name changed."] = "Ryhmän nimi muutettu.";
+$a->strings["Permission denied"] = "Käyttöoikeus evätty";
+$a->strings["Save Group"] = "Tallenna ryhmä";
+$a->strings["Create a group of contacts/friends."] = "Luo kontakti/kaveriryhmä";
+$a->strings["Group removed."] = "Ryhmä poistettu.";
+$a->strings["Unable to remove group."] = "Ryhmää ei voida poistaa.";
+$a->strings["Delete Group"] = "Poista ryhmä";
+$a->strings["Group Editor"] = "Ryhmien muokkausta";
+$a->strings["Edit Group Name"] = "Muokkaa ryhmän nimeä";
+$a->strings["Members"] = "Jäsenet";
+$a->strings["All Contacts"] = "Kaikki yhteystiedot";
+$a->strings["Remove Contact"] = "Poista kontakti";
+$a->strings["Add Contact"] = "Lisää kontakti";
+$a->strings["Click on a contact to add or remove."] = "Valitse kontakti, jota haluat poistaa tai lisätä.";
+$a->strings["Files"] = "Tiedostot";
+$a->strings["Theme settings updated."] = "Teeman asetukset päivitetty.";
+$a->strings["Overview"] = "Yleiskatsaus";
+$a->strings["Federation Statistics"] = "Liiton tilastotiedot";
+$a->strings["Configuration"] = "Kokoonpano";
+$a->strings["Site"] = "Sivusto";
+$a->strings["Users"] = "Käyttäjät";
+$a->strings["Themes"] = "Teemat";
+$a->strings["Database"] = "Tietokanta";
+$a->strings["DB updates"] = "Tietokannan päivitykset";
+$a->strings["Inspect Queue"] = "Tarkista jono";
+$a->strings["Tools"] = "Työkalut";
+$a->strings["Contact Blocklist"] = "Kontaktien estolista";
+$a->strings["Server Blocklist"] = "Palvelimien estolista";
+$a->strings["Delete Item"] = "Poista kohde";
+$a->strings["Logs"] = "Lokit";
+$a->strings["View Logs"] = "Katso lokit";
+$a->strings["Diagnostics"] = "Diagnostiikka";
+$a->strings["PHP Info"] = "PHP tietoja";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "Tarkista webfinger";
+$a->strings["Addon Features"] = "Lisäosaominaisuudet";
+$a->strings["User registrations waiting for confirmation"] = "Käyttäjärekisteröinnit odottavat hyväksyntää";
+$a->strings["Administration"] = "Ylläpito";
+$a->strings["Display Terms of Service"] = "Näytä käyttöehdot";
+$a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "";
+$a->strings["Display Privacy Statement"] = "Näytä tietosuojalausunto";
+$a->strings["Show some informations regarding the needed information to operate the node according e.g. to <a href=\"%s\" target=\"_blank\">EU-GDPR</a>."] = "";
+$a->strings["The Terms of Service"] = "Käyttöehdot";
+$a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "";
+$a->strings["The blocked domain"] = "Estetty verkkotunnus";
+$a->strings["The reason why you blocked this domain."] = "Verkkotunnuksen estosyy.";
+$a->strings["Delete domain"] = "Poista verkkotunnus";
+$a->strings["Check to delete this entry from the blocklist"] = "Laita rasti poistaaksesi kohde estolistalta";
+$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."] = "";
+$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."] = "";
+$a->strings["Add new entry to block list"] = "Lisää uusi kohde estolistaan";
+$a->strings["Server Domain"] = "Palvelimen verkkotunnus";
+$a->strings["The domain of the new server to add to the block list. Do not include the protocol."] = "";
+$a->strings["Block reason"] = "Estosyy";
+$a->strings["Add Entry"] = "Lisää merkintä";
+$a->strings["Save changes to the blocklist"] = "Tallenna muutoksia estolistaan";
+$a->strings["Current Entries in the Blocklist"] = "Nykyinen estolista";
+$a->strings["Delete entry from blocklist"] = "Poista kohde estolistalta";
+$a->strings["Delete entry from blocklist?"] = "Poista kohde estolistalta?";
+$a->strings["Server added to blocklist."] = "Palvelin lisätty estolistalle";
+$a->strings["Site blocklist updated."] = "Sivuston estolista päivitetty.";
+$a->strings["%s contact unblocked"] = [
+       0 => "%s kontakti poistettu estolistalta",
+       1 => "%s kontaktia poistettu estolistalta",
 ];
-$a->strings["Done. You can now login with your username and password"] = "Suoritettu. Voit nyt kirjautua sisään käyttäjätunnuksellasi.";
-$a->strings["Post to Email"] = "Viesti sähköpostiin";
-$a->strings["Hide your profile details from unknown viewers?"] = "Piilota profiilitietosi tuntemattomilta?";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
-$a->strings["Visible to everybody"] = "Näkyvissä kaikille";
-$a->strings["Close"] = "Sulje";
-$a->strings["Enter new password: "] = "Syötä uusi salasana:";
-$a->strings["Password can't be empty"] = "Salasanakenttä ei saa olla tyhjä";
-$a->strings["System"] = "Järjestelmä";
-$a->strings["Home"] = "Koti";
-$a->strings["Introductions"] = "Esittelyt";
-$a->strings["%s commented on %s's post"] = "%s kommentoi julkaisuun jonka kirjoitti %s";
-$a->strings["%s created a new post"] = "%s loi uuden julkaisun";
-$a->strings["%s liked %s's post"] = "%s tykkäsi julkaisusta jonka kirjoitti %s";
-$a->strings["%s disliked %s's post"] = "%s ei tykännyt julkaisusta jonka kirjoitti %s";
-$a->strings["%s is attending %s's event"] = "%s osallistuu tapahtumaan jonka järjestää %s";
-$a->strings["%s is not attending %s's event"] = "%s ei osallistu tapahtumaan jonka järjestää %s";
-$a->strings["%s may attend %s's event"] = "%s ehkä osallistuu tapahtumaan jonka järjestää %s";
-$a->strings["%s is now friends with %s"] = "%s ja %s ovat kavereita";
-$a->strings["Friend Suggestion"] = "Kaveriehdotus";
-$a->strings["Friend/Connect Request"] = "Ystävä/yhteyspyyntö";
-$a->strings["New Follower"] = "Uusi seuraaja";
-$a->strings["Birthday:"] = "Syntymäpäivä:";
-$a->strings["YYYY-MM-DD or MM-DD"] = "VVVV-KK-PP tai KK-PP";
-$a->strings["never"] = "ei ikinä";
-$a->strings["less than a second ago"] = "alle sekunti sitten";
-$a->strings["year"] = "vuosi";
-$a->strings["years"] = "vuotta";
-$a->strings["months"] = "kuukautta";
-$a->strings["weeks"] = "viikkoa";
-$a->strings["days"] = "päivää";
-$a->strings["hour"] = "tunti";
-$a->strings["hours"] = "tuntia";
-$a->strings["minute"] = "minuutti";
-$a->strings["minutes"] = "inuuttia";
-$a->strings["second"] = "sekunti";
-$a->strings["seconds"] = "sekuntia";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s sitten";
-$a->strings["view full size"] = "näytä täysikokoisena";
-$a->strings["Image/photo"] = "Kuva/valokuva";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["$1 wrote:"] = "$1 kirjoitti:";
-$a->strings["Encrypted content"] = "Salattu sisältö";
-$a->strings["Invalid source protocol"] = "Virheellinen lähdeprotokolla";
-$a->strings["Invalid link protocol"] = "Virheellinen linkkiprotokolla";
-$a->strings["Nothing new here"] = "";
-$a->strings["Clear notifications"] = "Tyhjennä ilmoitukset";
-$a->strings["Personal notes"] = "";
-$a->strings["Your personal notes"] = "";
-$a->strings["Sign in"] = "Kirjaudu sisään";
-$a->strings["Home Page"] = "Kotisivu";
-$a->strings["Create an account"] = "Luo tili";
-$a->strings["Help and documentation"] = "Ohjeet ja dokmentointi";
-$a->strings["Apps"] = "Sovellukset";
-$a->strings["Addon applications, utilities, games"] = "Lisäosa sovelluksia, apuohjelmia, pelejä";
-$a->strings["Search site content"] = "Sivustohaku";
-$a->strings["Community"] = "Yhteisö";
-$a->strings["Conversations on this and other servers"] = "";
-$a->strings["Directory"] = "Luettelo";
-$a->strings["People directory"] = "";
-$a->strings["Information about this friendica instance"] = "Lisätietoja tästä Friendica -instanssista";
-$a->strings["Network Reset"] = "Verkon nollaus";
-$a->strings["Load Network page with no filters"] = "";
-$a->strings["Friend Requests"] = "Kaveripyynnöt";
-$a->strings["See all notifications"] = "Näytä kaikki ilmoitukset";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Inbox"] = "Saapuneet";
-$a->strings["Outbox"] = "Lähtevät";
-$a->strings["Manage"] = "Hallitse";
-$a->strings["Manage other pages"] = "Hallitse muita sivuja";
-$a->strings["Profiles"] = "Profiilit";
-$a->strings["Manage/Edit Profiles"] = "Hallitse/muokka profiilit";
-$a->strings["Site setup and configuration"] = "Sivuston asennus ja asetukset";
-$a->strings["Navigation"] = "Navigointi";
-$a->strings["Site map"] = "Sivustokartta";
-$a->strings["General Features"] = "Yleiset ominaisuudet";
-$a->strings["Multiple Profiles"] = "";
-$a->strings["Ability to create multiple profiles"] = "";
-$a->strings["Photo Location"] = "Kuvan sijainti";
-$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "";
-$a->strings["Export Public Calendar"] = "Vie julkinen kalenteri";
-$a->strings["Ability for visitors to download the public calendar"] = "";
-$a->strings["Post Composition Features"] = "";
-$a->strings["Post Preview"] = "Viestin esikatselu";
-$a->strings["Allow previewing posts and comments before publishing them"] = "";
-$a->strings["Auto-mention Forums"] = "";
-$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "";
-$a->strings["Search by Date"] = "Päivämäärähaku";
-$a->strings["Ability to select posts by date ranges"] = "";
-$a->strings["List Forums"] = "Näytä foorumit";
-$a->strings["Enable widget to display the forums your are connected with"] = "";
-$a->strings["Group Filter"] = "Ryhmäsuodatin";
-$a->strings["Enable widget to display Network posts only from selected group"] = "";
-$a->strings["Network Filter"] = "Verkkosuodatin";
-$a->strings["Enable widget to display Network posts only from selected network"] = "";
-$a->strings["Save search terms for re-use"] = "";
-$a->strings["Network Tabs"] = "Verkko välilehdet";
-$a->strings["Network Personal Tab"] = "";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "";
-$a->strings["Network New Tab"] = "";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Julkaisu/kommentti työkalut";
-$a->strings["Multiple Deletion"] = "";
-$a->strings["Select and delete multiple posts/comments at once"] = "Valitse ja poista monta julkaisua/kommentia yhtaikaa";
-$a->strings["Edit Sent Posts"] = "Muokkaa lähetetyt julkaisut";
-$a->strings["Edit and correct posts and comments after sending"] = "Muokkaa ja korjaa julkaisuja ja kommenteja julkaisun jälkeen";
-$a->strings["Tagging"] = "Tunnisteet";
-$a->strings["Ability to tag existing posts"] = "";
-$a->strings["Post Categories"] = "Julkaisuluokat";
-$a->strings["Add categories to your posts"] = "Luokittele julkaisusi";
-$a->strings["Saved Folders"] = "Tallennetut kansiot";
-$a->strings["Ability to file posts under folders"] = "";
-$a->strings["Dislike Posts"] = "";
-$a->strings["Ability to dislike posts/comments"] = "";
-$a->strings["Star Posts"] = "Tähtimerkityt julkaisut";
-$a->strings["Ability to mark special posts with a star indicator"] = "Salli julkaisujen tähtimerkintä";
-$a->strings["Mute Post Notifications"] = "Mykistä julkaisuilmoitukset";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Advanced Profile Settings"] = "Profiilin lisäasetukset";
-$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "";
-$a->strings["Tag Cloud"] = "Tunnistepilvi";
-$a->strings["Provide a personal tag cloud on your profile page"] = "";
-$a->strings["Display Membership Date"] = "Näytä liittymispäivämäärä";
-$a->strings["Display membership date in profile"] = "Näytä liittymispäivämäärä profiilissa";
-$a->strings["Embedding disabled"] = "Upottaminen poistettu käytöstä";
-$a->strings["Embedded content"] = "Upotettu sisältö";
-$a->strings["Export"] = "Vie";
-$a->strings["Export calendar as ical"] = "Vie kalenteri ical -tiedostona";
-$a->strings["Export calendar as csv"] = "Vie kalenteri csv-tiedostona";
-$a->strings["Add New Contact"] = "Lisää uusi kontakti";
-$a->strings["Enter address or web location"] = "Syötä verkko-osoite";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esimerkki: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = [
-       0 => "%d kutsu saatavilla",
-       1 => "%d kutsuja saatavilla",
-];
-$a->strings["Find People"] = "Löydä ihmisiä";
-$a->strings["Enter name or interest"] = "Syötä nimi tai harrastus";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esim. Matti Meikäläinen, kalastus yms.";
-$a->strings["Random Profile"] = "Satunnainen profiili";
-$a->strings["View Global Directory"] = "Katso maailmanlaajuista luetteloa";
-$a->strings["Networks"] = "Verkot";
-$a->strings["All Networks"] = "Kaikki verkot";
-$a->strings["Everything"] = "Kaikki";
-$a->strings["Categories"] = "Luokat";
-$a->strings["%d contact in common"] = [
-       0 => "%d yhteinen kontakti",
-       1 => "%d yhteistä kontaktia",
+$a->strings["Remote Contact Blocklist"] = "Etäkontakti estolista";
+$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "";
+$a->strings["Block Remote Contact"] = "Estä etäkontakti";
+$a->strings["select all"] = "valitse kaikki";
+$a->strings["select none"] = "älä valitse mitään";
+$a->strings["Block"] = "Estä";
+$a->strings["Unblock"] = "Salli";
+$a->strings["No remote contact is blocked from this node."] = "";
+$a->strings["Blocked Remote Contacts"] = "Estetty etäkontaktit";
+$a->strings["Block New Remote Contact"] = "Estä uusi etäkontakti";
+$a->strings["Photo"] = "Kuva";
+$a->strings["Profile URL"] = "Profiilin URL";
+$a->strings["%s total blocked contact"] = [
+       0 => "Yhteensä %s estetty kontakti",
+       1 => "Yhteensä %s estettyjä kontakteja",
 ];
-$a->strings["Frequently"] = "Usein";
-$a->strings["Hourly"] = "Tunneittain";
-$a->strings["Twice daily"] = "Kahdesti päivässä";
-$a->strings["Daily"] = "Päivittäin";
-$a->strings["Weekly"] = "Viikottain";
-$a->strings["Monthly"] = "Kuukausittain";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora -liitin";
-$a->strings["GNU Social Connector"] = "GNU social -liitin";
-$a->strings["pnut"] = "pnut";
-$a->strings["App.net"] = "App.net";
-$a->strings["Male"] = "Mies";
-$a->strings["Female"] = "Nainen";
-$a->strings["Currently Male"] = "Tällä hetkellä mies";
-$a->strings["Currently Female"] = "Tällä hetkellä nainen";
-$a->strings["Mostly Male"] = "Enimmäkseen mies";
-$a->strings["Mostly Female"] = "Enimmäkseen nainen";
-$a->strings["Transgender"] = "Transsukupuolinen";
-$a->strings["Intersex"] = "Intersukupuolinen";
-$a->strings["Transsexual"] = "Transsukupuolinen";
-$a->strings["Hermaphrodite"] = "Hermafrodiitti";
-$a->strings["Neuter"] = "Neutri";
-$a->strings["Non-specific"] = "Ei-binäärinen";
-$a->strings["Other"] = "Toinen";
-$a->strings["Males"] = "Miehet";
-$a->strings["Females"] = "Naiset";
-$a->strings["Gay"] = "Homo";
-$a->strings["Lesbian"] = "Lesbo";
-$a->strings["No Preference"] = "";
-$a->strings["Bisexual"] = "Biseksuaali";
-$a->strings["Autosexual"] = "";
-$a->strings["Abstinent"] = "Selibaatissa elävä";
-$a->strings["Virgin"] = "Neitsyt";
-$a->strings["Deviant"] = "";
-$a->strings["Fetish"] = "";
-$a->strings["Oodles"] = "";
-$a->strings["Nonsexual"] = "Aseksuaali";
-$a->strings["Single"] = "Sinkku";
-$a->strings["Lonely"] = "Yksinäinen";
-$a->strings["Available"] = "";
-$a->strings["Unavailable"] = "";
-$a->strings["Has crush"] = "Ihastunut";
-$a->strings["Infatuated"] = "Hullaantunut";
-$a->strings["Dating"] = "Seurustelee";
-$a->strings["Unfaithful"] = "";
-$a->strings["Sex Addict"] = "";
-$a->strings["Friends"] = "Kaverit";
-$a->strings["Friends/Benefits"] = "";
-$a->strings["Casual"] = "";
-$a->strings["Engaged"] = "Kihloissa";
-$a->strings["Married"] = "Naimisissa";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Kumppanit";
-$a->strings["Cohabiting"] = "Avoliitossa";
-$a->strings["Common law"] = "Avoliitossa";
-$a->strings["Happy"] = "Iloinen";
-$a->strings["Not looking"] = "Ei etsi";
-$a->strings["Swinger"] = "";
-$a->strings["Betrayed"] = "Petetty";
-$a->strings["Separated"] = "";
-$a->strings["Unstable"] = "Epävakaa";
-$a->strings["Divorced"] = "Eronnut";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Leski";
-$a->strings["Uncertain"] = "Epävarma";
-$a->strings["It's complicated"] = "Se on monimutkaista";
-$a->strings["Don't care"] = "Ei ole väliä";
-$a->strings["Ask me"] = "Kysy minulta";
-$a->strings["There are no tables on MyISAM."] = "";
-$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Virheviesti on\n[pre]%s[/pre]";
-$a->strings["\nError %d occurred during database update:\n%s\n"] = "\n%d virhe tapahtui tietokannan päivityksen aikana:\n%s\n";
-$a->strings["Errors encountered performing database changes: "] = "Tietokannan muokkauksessa tapahtui virheitä:";
-$a->strings[": Database update"] = ": Tietokannan päivitys";
-$a->strings["%s: updating %s table."] = "%s: päivitetään %s-taulukkoa.";
-$a->strings["[no subject]"] = "[ei aihetta]";
-$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ei osallistu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s ehkä osallistuu tapahtumaan %3\$s, jonka järjestää %2\$s";
-$a->strings["Drop Contact"] = "Poista kontakti";
-$a->strings["Organisation"] = "Järjestö";
-$a->strings["News"] = "Uutiset";
-$a->strings["Forum"] = "Keskustelupalsta";
-$a->strings["Connect URL missing."] = "Yhteys URL-linkki puuttuu.";
-$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Yhteensopivia viestintäprotokolleja tai syötteitä ei löytynyt.";
-$a->strings["The profile address specified does not provide adequate information."] = "Annettu profiiliosoite ei sisällä riittävästi tietoa.";
-$a->strings["An author or name was not found."] = "";
-$a->strings["No browser URL could be matched to this address."] = "";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
-$a->strings["Use mailto: in front of address to force email check."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "";
-$a->strings["Unable to retrieve contact information."] = "Kontaktin tietoja ei voitu hakea.";
-$a->strings["%s's birthday"] = "%s: syntymäpäivä";
-$a->strings["Happy Birthday %s"] = "Hyvää syntymäpäivää %s";
-$a->strings["Starts:"] = "Alkaa:";
-$a->strings["Finishes:"] = "Päättyy:";
-$a->strings["all-day"] = "koko päivä";
-$a->strings["Jun"] = "Kes.";
-$a->strings["Sept"] = "Syy.";
-$a->strings["No events to display"] = "Ei näytettäviä tapahtumia.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Muokkaa tapahtumaa";
-$a->strings["Duplicate event"] = "Monista tapahtuma";
-$a->strings["Delete event"] = "Poista tapahtuma";
-$a->strings["D g:i A"] = "";
-$a->strings["g:i A"] = "";
-$a->strings["Show map"] = "Näytä kartta";
-$a->strings["Hide map"] = "Piilota kartta";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
-$a->strings["Default privacy group for new contacts"] = "Oletusryhmä uusille kontakteille";
-$a->strings["Everybody"] = "Kaikki";
-$a->strings["edit"] = "muokkaa";
-$a->strings["Edit group"] = "Muokkaa ryhmää";
-$a->strings["Contacts not in any group"] = "Kontaktit ilman ryhmää";
-$a->strings["Create a new group"] = "Luo uusi ryhmä";
-$a->strings["Edit groups"] = "Muokkaa ryhmiä";
-$a->strings["Requested account is not available."] = "Pyydetty käyttäjätili ei ole saatavilla.";
-$a->strings["Edit profile"] = "Muokkaa profiilia";
-$a->strings["Atom feed"] = "Atom -syöte";
-$a->strings["Manage/edit profiles"] = "Hallitse/muokkaa profiilit";
-$a->strings["g A l F d"] = "";
-$a->strings["F d"] = "";
-$a->strings["[today]"] = "[tänään]";
-$a->strings["Birthday Reminders"] = "Syntymäpäivämuistutukset";
-$a->strings["Birthdays this week:"] = "Syntymäpäiviä tällä viikolla:";
-$a->strings["[No description]"] = "[Ei kuvausta]";
-$a->strings["Event Reminders"] = "Tapahtumamuistutukset";
-$a->strings["Events this week:"] = "Tapahtumia tällä viikolla:";
-$a->strings["Member since:"] = "Liittymispäivämäärä:";
-$a->strings["j F, Y"] = "";
-$a->strings["j F"] = "";
-$a->strings["Age:"] = "Ikä:";
-$a->strings["for %1\$d %2\$s"] = "";
-$a->strings["Religion:"] = "Uskonto:";
-$a->strings["Hobbies/Interests:"] = "Harrastukset:";
-$a->strings["Contact information and Social Networks:"] = "Yhteystiedot ja sosiaalinen media:";
-$a->strings["Musical interests:"] = "Musiikki:";
-$a->strings["Books, literature:"] = "Kirjat, kirjallisuus:";
-$a->strings["Television:"] = "Televisio:";
-$a->strings["Film/dance/culture/entertainment:"] = "Elokuvat/tanssit/kulttuuri/viihde:";
-$a->strings["Love/Romance:"] = "Rakkaus/romanssi:";
-$a->strings["Work/employment:"] = "Työ:";
-$a->strings["School/education:"] = "Koulutus:";
-$a->strings["Forums:"] = "Foorumit:";
-$a->strings["Only You Can See This"] = "Vain sinä näet tämän";
-$a->strings["Login failed"] = "Kirjautuminen epäonnistui";
-$a->strings["Not enough information to authenticate"] = "";
-$a->strings["An invitation is required."] = "";
-$a->strings["Invitation could not be verified."] = "Kutsua ei voitu vahvistaa.";
-$a->strings["Invalid OpenID url"] = "Virheellinen OpenID url-osoite";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
-$a->strings["The error message was:"] = "Virheviesti oli:";
-$a->strings["Please enter the required information."] = "Syötä tarvittavat tiedot.";
-$a->strings["Please use a shorter name."] = "Käytä lyhyempää nimeä.";
-$a->strings["Name too short."] = "Nimi on liian lyhyt.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "";
-$a->strings["Your email domain is not among those allowed on this site."] = "Sähköpostiosoitteesi verkkotunnus on tämän sivuston estolistalla.";
-$a->strings["Not a valid email address."] = "Virheellinen sähköpostiosoite.";
-$a->strings["Cannot use that email."] = "Sähköpostiosoitetta ei voitu käyttää.";
-$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "Nimimerkki voi sisältää a-z, 0-9 ja _.";
-$a->strings["Nickname is already registered. Please choose another."] = "Valitsemasi nimimerkki on jo käytössä. Valitse toinen nimimerkki.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VAKAVA VIRHE: Salausavainten luominen epäonnistui.";
-$a->strings["An error occurred during registration. Please try again."] = "Rekisteröityminen epäonnistui. Yritä uudelleen.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Oletusprofiilin luominen epäonnistui. Yritä uudelleen.";
-$a->strings["An error occurred creating your self contact. Please try again."] = "";
-$a->strings["An error occurred creating your default contact group. Please try again."] = "";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t\t"] = "";
-$a->strings["Registration at %s"] = "Rekisteröityminen kohteessa %s";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t"] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$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\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["%s is now following %s."] = "%s seuraa %s.";
-$a->strings["following"] = "seuraa";
-$a->strings["%s stopped following %s."] = "%s ei enää seuraa %s.";
-$a->strings["stopped following"] = "ei enää seuraa";
-$a->strings["%s\\'s birthday"] = "%s\\ käyttäjän syntymäpäivä";
-$a->strings["Sharing notification from Diaspora network"] = "";
-$a->strings["Attachments:"] = "Liitteitä:";
-$a->strings["(no subject)"] = "(ei aihetta)";
-$a->strings["Create a New Account"] = "Luo uusi käyttäjätili";
-$a->strings["Password: "] = "Salasana:";
-$a->strings["Remember me"] = "Muista minut";
-$a->strings["Or login using OpenID: "] = "Kirjaudu sisään OpenID -tunnuksella:";
-$a->strings["Forgot your password?"] = "Unohditko salasanasi?";
-$a->strings["Website Terms of Service"] = "Verkkosivun käyttöehdot";
-$a->strings["terms of service"] = "käyttöehdot";
-$a->strings["Website Privacy Policy"] = "Sivuston tietosuojakäytäntö";
-$a->strings["privacy policy"] = "tietosuojakäytäntö";
-$a->strings["Logged out."] = "Kirjautunut ulos.";
-$a->strings["Privacy Statement"] = "Tietosuojalausunto";
-$a->strings["At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node's user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication."] = "";
-$a->strings["This data is required for communication and is passed on to the nodes of the communication partners. Users can enter additional private data that may be transmitted to the communication partners accounts."] = "";
-$a->strings["At any point in time a logged in user can export their account data from the <a href=\"%1\$s/settings/uexport\">account settings</a>. If the user wants to delete their account they can do so at <a href=\"%1\$s/removeme\">%1\$s/removeme</a>. The deletion of the account will be permanent."] = "";
-$a->strings["This entry was edited"] = "Tämä kohde oli muokattu";
-$a->strings["save to folder"] = "tallenna kansioon";
-$a->strings["I will attend"] = "Osallistun";
-$a->strings["I will not attend"] = "En aio osallistua";
-$a->strings["I might attend"] = "Ehkä osallistun";
-$a->strings["add star"] = "lisää tähti";
-$a->strings["remove star"] = "poista tähti";
-$a->strings["toggle star status"] = "Tähtitila päälle/pois";
-$a->strings["starred"] = "tähtimerkitty";
-$a->strings["ignore thread"] = "Sivuuta keskustelu";
-$a->strings["unignore thread"] = "Seuraa keskustelua";
-$a->strings["toggle ignore status"] = "Sivuuta/seuraa";
-$a->strings["add tag"] = "lisää tägi";
-$a->strings["like"] = "tykkää";
-$a->strings["dislike"] = "en tykkää";
-$a->strings["Share this"] = "Jaa tämä";
-$a->strings["share"] = "jaa";
-$a->strings["to"] = "";
-$a->strings["via"] = "kautta";
-$a->strings["Wall-to-Wall"] = "";
-$a->strings["via Wall-To-Wall:"] = "";
-$a->strings["%d comment"] = [
-       0 => "%d kommentti",
-       1 => "%d kommentteja",
+$a->strings["URL of the remote contact to block."] = "Estettävän etäkontaktin URL-osoite";
+$a->strings["Delete this Item"] = "Poista tämä kohde";
+$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "";
+$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "";
+$a->strings["GUID"] = "GUID";
+$a->strings["The GUID of the item you want to delete."] = "Poistettavan kohteen GUID.";
+$a->strings["Item marked for deletion."] = "Kohde merkitty poistettavaksi.";
+$a->strings["unknown"] = "tuntematon";
+$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."] = "";
+$a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "";
+$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Tällä hetkellä tämä solmu havaitsee %d muita solmuja joissa %d rekisteröityneitä käyttäjiä. Tarkemmat tiedot:";
+$a->strings["ID"] = "";
+$a->strings["Recipient Name"] = "Vastaanottajan nimi";
+$a->strings["Recipient Profile"] = "Vastaanottajan profiili";
+$a->strings["Created"] = "Luotu";
+$a->strings["Last Tried"] = "Viimeksi yritetty";
+$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."] = "";
+$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 bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"] = "";
+$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "";
+$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Tietokannan päivitys epäonnistui. Suorita komento \"php bin/console.php dbstructure update\" komentoriviltä ja lue mahdolliset virheviestit.";
+$a->strings["The worker was never executed. Please check your database structure!"] = "Workeriä ei ole otettu käyttöön. Tarkista tietokantasi rakenne!";
+$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Viimeisin worker -käynnistys tapahtui klo %s UTC, eli yli tunti sitten. Tarkista crontab -asetukset.";
+$a->strings["Normal Account"] = "Perustili";
+$a->strings["Automatic Follower Account"] = "Automaattinen seuraajatili";
+$a->strings["Public Forum Account"] = "Julkinen foorumitili";
+$a->strings["Automatic Friend Account"] = "Automaattinen kaveritili";
+$a->strings["Blog Account"] = "Blogitili";
+$a->strings["Private Forum Account"] = "Yksityinen foorumitili";
+$a->strings["Message queues"] = "Viestijonot";
+$a->strings["Summary"] = "Yhteenveto";
+$a->strings["Registered users"] = "Rekisteröityneet käyttäjät";
+$a->strings["Pending registrations"] = "Vireillä olevat rekisteröinnit";
+$a->strings["Version"] = "Versio";
+$a->strings["Active addons"] = "Käytössäolevat lisäosat";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Ei voitu jäsentää perusosoitetta. Täytyy sisältää ainakin <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Sivuston asetukset päivitettiin.";
+$a->strings["No community page"] = "Ei yhteisösivua";
+$a->strings["Public postings from users of this site"] = "Julkiset julkaisut tämän sivuston käyttäjiltä";
+$a->strings["Public postings from the federated network"] = "Julkiset julkaisut liittoutuneelta verkolta";
+$a->strings["Public postings from local users and the federated network"] = "Julkiset julkaisut tältä sivustolta ja liittoutuneelta verkolta";
+$a->strings["Disabled"] = "Pois käytöstä";
+$a->strings["Users, Global Contacts"] = "Käyttäjät, maailmanlaajuiset kontaktit";
+$a->strings["Users, Global Contacts/fallback"] = "";
+$a->strings["One month"] = "Yksi kuukausi";
+$a->strings["Three months"] = "Kolme kuukautta";
+$a->strings["Half a year"] = "Puoli vuotta";
+$a->strings["One year"] = "Yksi vuosi";
+$a->strings["Multi user instance"] = "Monen käyttäjän instanssi";
+$a->strings["Closed"] = "Suljettu";
+$a->strings["Requires approval"] = "Edellyttää hyväksyntää";
+$a->strings["Open"] = "Avoin";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "Pakota kaikki linkit käyttämään SSL-yhteyttä";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$a->strings["Don't check"] = "Älä tarkista";
+$a->strings["check the stable version"] = "";
+$a->strings["check the development version"] = "";
+$a->strings["Republish users to directory"] = "";
+$a->strings["Registration"] = "Rekisteröityminen";
+$a->strings["File upload"] = "Tiedoston lataus";
+$a->strings["Policies"] = "Käytännöt";
+$a->strings["Auto Discovered Contact Directory"] = "";
+$a->strings["Performance"] = "Suoritus";
+$a->strings["Worker"] = "Worker";
+$a->strings["Message Relay"] = "";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "";
+$a->strings["Site name"] = "Sivuston nimi";
+$a->strings["Host name"] = "Palvelimen nimi";
+$a->strings["Sender Email"] = "Lähettäjän sähköposti";
+$a->strings["The email address your server shall use to send notification emails from."] = "Lähettäjän sähköpostiosoite palvelimen ilmoitussähköposteissa.";
+$a->strings["Banner/Logo"] = "Banneri/logo";
+$a->strings["Shortcut icon"] = "Pikakuvake";
+$a->strings["Link to an icon that will be used for browsers."] = "Linkki kuvakkeeseen jota selaimet saa käyttää.";
+$a->strings["Touch icon"] = "Kosketusnäyttökuvake";
+$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Linkki kuvakkeeseen jota tabletit ja matkapuhelimet saa käyttää.";
+$a->strings["Additional Info"] = "Lisätietoja";
+$a->strings["For public servers: you can add additional information here that will be listed at %s/servers."] = "";
+$a->strings["System language"] = "Järjestelmän kieli";
+$a->strings["System theme"] = "Järjestelmäteema";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Mobile system theme"] = "Mobiili järjestelmäteema";
+$a->strings["Theme for mobile devices"] = "Mobiiliteema";
+$a->strings["SSL link policy"] = "SSL-linkkikäytäntö";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Määrittää pakotetaanko tuotetut linkit käyttämään SSL-yhteyttä.";
+$a->strings["Force SSL"] = "Pakoita SSL-yhteyden käyttöä";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Hide help entry from navigation menu"] = "";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
+$a->strings["Single user instance"] = "Yksittäisen käyttäjän instanssi";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "";
+$a->strings["Maximum image size"] = "Suurin kuvakoko";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Ladattavan kuvatiedoston enimmäiskoko tavuina. Oletusarvo on 0, eli ei enimmäiskokoa.";
+$a->strings["Maximum image length"] = "Suurin kuvapituus";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Ladattavan kuvatiedoston enimmäispituus pikseleinä. Oletusarvo on -1, eli ei enimmäispituutta.";
+$a->strings["JPEG image quality"] = "JPEG-kuvanlaatu";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Register policy"] = "Rekisteröintipolitiikka";
+$a->strings["Maximum Daily Registrations"] = "Päivittäinen rekisteröitymisraja";
+$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."] = "Mikäli rekisteröityminen on sallittu, tämä asettaa enimmäismäärä uusia rekisteröitymisiä päivässä. Jos reksiteröityminen ei ole sallittu, tällä asetuksella ei ole vaikutusta.";
+$a->strings["Register text"] = "Rekisteröitymisteksti";
+$a->strings["Will be displayed prominently on the registration page. You can use BBCode here."] = "Näkyvästi esillä rekisteröitymissivulla. Voit käyttää BBCodeia.";
+$a->strings["Accounts abandoned after x days"] = "";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Allowed friend domains"] = "Sallittuja kaveri-verkkotunnuksia";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
+$a->strings["Allowed email domains"] = "Sallittuja sähköposti-verkkotunnuksia";
+$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"] = "";
+$a->strings["No OEmbed rich content"] = "";
+$a->strings["Don't show the rich content (e.g. embedded PDF), except from the domains listed below."] = "";
+$a->strings["Allowed OEmbed domains"] = "Sallittuja OEmbed -verkkotunnuksia";
+$a->strings["Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted."] = "";
+$a->strings["Block public"] = "Estä vierailijat";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
+$a->strings["Force publish"] = "";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Global directory URL"] = "Maailmanlaajuisen hakemiston URL-osoite";
+$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
+$a->strings["Private posts by default for new users"] = "";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
+$a->strings["Don't include post content in email notifications"] = "Älä lisää julkaisun sisältö sähköposti-ilmoitukseen";
+$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."] = "";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
+$a->strings["Don't embed private images in posts"] = "Älä upota yksityisiä kuvia julkaisuissa";
+$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."] = "";
+$a->strings["Allow Users to set remote_self"] = "";
+$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."] = "";
+$a->strings["Block multiple registrations"] = "";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["OpenID support"] = "OpenID-tuki";
+$a->strings["OpenID support for registration and logins."] = "OpenID-tuki rekisteröitymiseen ja kirjautumiseen";
+$a->strings["Fullname check"] = "Koko nimi tarkistus";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
+$a->strings["Community pages for visitors"] = "Yhteisösivu vieraille";
+$a->strings["Which community pages should be available for visitors. Local users always see both pages."] = "";
+$a->strings["Posts per user on community page"] = "";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Enimmäismäärä julkaisuja käyttäjää kohden yhteisösivulla. (Ei koske maailmanlaajuista yhteisösivua.)";
+$a->strings["Enable OStatus support"] = "Salli OStatus-tuki";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Only import OStatus threads from our contacts"] = "Ainoastaan tuo OStatus -ketjuja kontakteiltamme";
+$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."] = "";
+$a->strings["OStatus support can only be enabled if threading is enabled."] = "OStatus-tuki voidaan ottaa käyttöön ainoastaan jos ketjuttaminen on jo otettu käyttöön.";
+$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Diaspora -tukea ei voitu ottaa käyttöön koska Friendica on asennettu alihakemistoon.";
+$a->strings["Enable Diaspora support"] = "Salli Diaspora-tuki";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Ota käyttöön Diaspora-yhteensopivuus";
+$a->strings["Only allow Friendica contacts"] = "Salli ainoastaan Friendica -kontakteja";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Kaikkien kontaktien on käytettävä Friendica-protokollaa. Kaikki muut protokollat poistetaan käytöstä.";
+$a->strings["Verify SSL"] = "Vahvista SSL";
+$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."] = "";
+$a->strings["Proxy user"] = "Välityspalvelimen käyttäjä";
+$a->strings["Proxy URL"] = "Välityspalvelimen osoite";
+$a->strings["Network timeout"] = "Verkon aikakatkaisu";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
+$a->strings["Maximum Load Average"] = "Kuorman enimmäiskeksiarvo";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Järjestelmäkuormitus jolloin lähetys- ja kyselyprosessit lykätään (oletusarvo 50).";
+$a->strings["Maximum Load Average (Frontend)"] = "Kuorman enimmäiskeskiarvo (Frontend)";
+$a->strings["Maximum system load before the frontend quits service - default 50."] = "Järjestelmäkuormitus jolloin Frontend poistetaan käytöstä (oletusarvo 50).";
+$a->strings["Minimal Memory"] = "";
+$a->strings["Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated)."] = "";
+$a->strings["Maximum table size for optimization"] = "Taulukon enimmäiskoko optimointia varten";
+$a->strings["Maximum table size (in MB) for the automatic optimization - default 100 MB. Enter -1 to disable it."] = "Taulukon enimmäiskoko (megatavuina) automaattista optimointia varten - oletusarvo 100 mt. Syötä -1 poistamaan optimointi käytöstä.";
+$a->strings["Minimum level of fragmentation"] = "";
+$a->strings["Minimum fragmenation level to start the automatic optimization - default value is 30%."] = "";
+$a->strings["Periodical check of global contacts"] = "";
+$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "";
+$a->strings["Days between requery"] = "";
+$a->strings["Number of days after which a server is requeried for his contacts."] = "";
+$a->strings["Discover contacts from other servers"] = "";
+$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'."] = "";
+$a->strings["Timeframe for fetching global contacts"] = "";
+$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."] = "";
+$a->strings["Search the local directory"] = "Paikallisluettelohaku";
+$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."] = "";
+$a->strings["Publish server information"] = "Julkaise palvelintiedot";
+$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."] = "";
+$a->strings["Check upstream version"] = "";
+$a->strings["Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview."] = "";
+$a->strings["Suppress Tags"] = "Piilota tunnisteet";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
+$a->strings["Path to item cache"] = "";
+$a->strings["The item caches buffers generated bbcode and external images."] = "";
+$a->strings["Cache duration in seconds"] = "";
+$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."] = "";
+$a->strings["Maximum numbers of comments per post"] = "Julkaisun kommentiraja";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["Temp path"] = "";
+$a->strings["If you have a restricted system where the webserver can't access the system temp path, enter another path here."] = "";
+$a->strings["Base path to installation"] = "Asennuksen peruspolku";
+$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."] = "";
+$a->strings["Disable picture proxy"] = "";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Only search in tags"] = "";
+$a->strings["On large systems the text search can slow down the system extremely."] = "";
+$a->strings["New base url"] = "Uusi perusosoite";
+$a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "Vaihtaa tämän palvelimen perus-URL-osoitteen. Lähettää uudelleensijoitusviestit käyttäjien kaikille kontakteille Friendicassa ja Diasporassa*.";
+$a->strings["RINO Encryption"] = "RINO-salaus";
+$a->strings["Encryption layer between nodes."] = "Salauskerros solmujen välillä.";
+$a->strings["Enabled"] = "Käytössä";
+$a->strings["Maximum number of parallel workers"] = "Enimmäismäärä rinnakkaisia workereitä";
+$a->strings["On shared hosters set this to 2. On larger systems, values of 10 are great. Default value is 4."] = "";
+$a->strings["Don't use 'proc_open' with the worker"] = "";
+$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 worker calls in your crontab."] = "";
+$a->strings["Enable fastlane"] = "Käytä fastlane";
+$a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "";
+$a->strings["Enable frontend worker"] = "";
+$a->strings["When enabled the Worker process is triggered when backend access is performed \\x28e.g. messages being delivered\\x29. On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server."] = "";
+$a->strings["Subscribe to relay"] = "";
+$a->strings["Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page."] = "";
+$a->strings["Relay server"] = "";
+$a->strings["Address of the relay server where public posts should be send to. For example https://relay.diasp.org"] = "";
+$a->strings["Direct relay transfer"] = "";
+$a->strings["Enables the direct transfer to other servers without using the relay servers"] = "";
+$a->strings["Relay scope"] = "";
+$a->strings["Can be 'all' or 'tags'. 'all' means that every public post should be received. 'tags' means that only posts with selected tags should be received."] = "";
+$a->strings["all"] = "kaikki";
+$a->strings["tags"] = "tunnisteet";
+$a->strings["Server tags"] = "palvelintunnisteet";
+$a->strings["Comma separated list of tags for the 'tags' subscription."] = "";
+$a->strings["Allow user tags"] = "Salli käyttäjien tunnisteet";
+$a->strings["If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'."] = "";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Database structure update %s was successfully applied."] = "Tietokannan rakenteen %s-päivitys onnistui.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Tietokannan rakennepäivitys %s epäonnistui virheviestillä %s";
+$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Update %s was successfully applied."] = "%s-päivitys onnistui.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["No failed updates."] = "Ei epäonnistuineita päivityksiä.";
+$a->strings["Check database structure"] = "Tarkista tietokannan rakenne";
+$a->strings["Failed Updates"] = "Epäonnistuineita päivityksiä";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$a->strings["Mark success (if update was manually applied)"] = "";
+$a->strings["Attempt to execute this update step automatically"] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
+$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\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["%s user blocked/unblocked"] = [
+       0 => "%s käyttäjä estetty / poistettu estolistalta",
+       1 => "%s käyttäjää estetty / poistettu estolistalta",
+];
+$a->strings["%s user deleted"] = [
+       0 => "%s käyttäjä poistettu",
+       1 => "%s käyttäjää poistettu",
+];
+$a->strings["User '%s' deleted"] = "Käyttäjä '%s' poistettu";
+$a->strings["User '%s' unblocked"] = "Käyttäjä '%s' poistettu estolistalta";
+$a->strings["User '%s' blocked"] = "Käyttäjä '%s' estetty";
+$a->strings["Private Forum"] = "";
+$a->strings["Register date"] = "Rekisteripäivämäärä";
+$a->strings["Last login"] = "Viimeisin kirjautuminen";
+$a->strings["Last item"] = "Viimeisin kohde";
+$a->strings["Type"] = "";
+$a->strings["Add User"] = "Lisää käyttäjä";
+$a->strings["User registrations waiting for confirm"] = "";
+$a->strings["User waiting for permanent deletion"] = "";
+$a->strings["Request date"] = "Pyynnön päivämäärä";
+$a->strings["No registrations."] = "Ei rekisteröintejä.";
+$a->strings["Note from the user"] = "";
+$a->strings["Approve"] = "Hyväksy";
+$a->strings["Deny"] = "Kieltäydy";
+$a->strings["Site admin"] = "Sivuston ylläpito";
+$a->strings["Account expired"] = "Tili vanhentunut";
+$a->strings["New User"] = "Uusi käyttäjä";
+$a->strings["Deleted since"] = "Poistettu";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "";
+$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?"] = "";
+$a->strings["Name of the new user."] = "Uuden käyttäjän nimi.";
+$a->strings["Nickname"] = "Lempinimi";
+$a->strings["Nickname of the new user."] = "Uuden käyttäjän lempinimi";
+$a->strings["Email address of the new user."] = "Uuden käyttäjän sähköpostiosoite.";
+$a->strings["Addon %s disabled."] = "Lisäosa %s poistettu käytöstä.";
+$a->strings["Addon %s enabled."] = "Lisäosa %s käytössä.";
+$a->strings["Disable"] = "Poista käytöstä";
+$a->strings["Enable"] = "Ota käyttöön";
+$a->strings["Toggle"] = "Vaihda";
+$a->strings["Author: "] = "Tekijä";
+$a->strings["Maintainer: "] = "Ylläpitäjä:";
+$a->strings["Reload active addons"] = "";
+$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "";
+$a->strings["No themes found."] = "Teemoja ei löytynyt.";
+$a->strings["Screenshot"] = "Kuvakaappaus";
+$a->strings["Reload active themes"] = "Lataa aktiiviset teemat uudelleen";
+$a->strings["No themes found on the system. They should be placed in %1\$s"] = "";
+$a->strings["[Experimental]"] = "[Kokeellinen]";
+$a->strings["[Unsupported]"] = "[Ei tueta]";
+$a->strings["Log settings updated."] = "Lokiasetukset päivitetty.";
+$a->strings["PHP log currently enabled."] = "PHP-loki käytössä";
+$a->strings["PHP log currently disabled."] = "PHP-loki pois käytöstä";
+$a->strings["Clear"] = "Tyhjennä";
+$a->strings["Enable Debugging"] = "Ota virheenkorjaustila käyttöön";
+$a->strings["Log file"] = "Lokitiedosto";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "Lokitaso";
+$a->strings["PHP logging"] = "PHP-loki";
+$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."] = "";
+$a->strings["Error trying to open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s exist and is readable."] = "";
+$a->strings["Couldn't open <strong>%1\$s</strong> log file.\\r\\n<br/>Check to see if file %1\$s is readable."] = "";
+$a->strings["Lock feature %s"] = "Lukitse ominaisuus %s";
+$a->strings["Manage Additional Features"] = "Hallitse lisäominaisuudet";
+$a->strings["Parent user not found."] = "";
+$a->strings["No parent user"] = "";
+$a->strings["Parent Password:"] = "";
+$a->strings["Please enter the password of the parent account to legitimize your request."] = "";
+$a->strings["Parent User"] = "";
+$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "";
+$a->strings["Delegates"] = "";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
+$a->strings["Existing Page Delegates"] = "";
+$a->strings["Potential Delegates"] = "";
+$a->strings["Remove"] = "Poista";
+$a->strings["Add"] = "Lisää";
+$a->strings["No entries."] = "";
+$a->strings["Recent Photos"] = "Viimeaikaisia kuvia";
+$a->strings["Upload New Photos"] = "Lähetä uusia kuvia";
+$a->strings["Contact information unavailable"] = "Kontaktin tietoja ei saatavilla";
+$a->strings["Album not found."] = "Albumia ei ole.";
+$a->strings["Delete Album"] = "Poista albumi";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Haluatko varmasti poistaa tämän albumin ja kaikki sen kuvat?";
+$a->strings["Delete Photo"] = "Poista valokuva";
+$a->strings["Do you really want to delete this photo?"] = "Haluatko varmasti poistaa kuvan?";
+$a->strings["a photo"] = "valokuva";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s merkattiin kuvaan %2\$s ystävän %3\$s toimesta";
+$a->strings["Image upload didn't complete, please try again"] = "Kuvan lataus ei onnistunut, yritä uudelleen";
+$a->strings["Image file is missing"] = "Kuvatiedosto puuttuu";
+$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "";
+$a->strings["Image file is empty."] = "Kuvatiedosto on tyhjä.";
+$a->strings["No photos selected"] = "Ei valittuja kuvia";
+$a->strings["Access to this item is restricted."] = "Pääsy kohteeseen on rajoitettu.";
+$a->strings["Upload Photos"] = "Lähetä kuvia";
+$a->strings["New album name: "] = "Albumin uusi nimi: ";
+$a->strings["or existing album name: "] = "tai olemassaolevan albumin nimi: ";
+$a->strings["Do not show a status post for this upload"] = "Älä näytä tilaviestiä tälle lähetykselle";
+$a->strings["Edit Album"] = "Muokkaa albumia";
+$a->strings["Show Newest First"] = "Näytä uusin ensin";
+$a->strings["Show Oldest First"] = "Näytä vanhin ensin";
+$a->strings["View Photo"] = "Näytä kuva";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Estetty. Tämän kohteen käyttöä on saatettu rajoittaa.";
+$a->strings["Photo not available"] = "Kuva ei ole saatavilla";
+$a->strings["View photo"] = "Näytä kuva";
+$a->strings["Edit photo"] = "Muokkaa kuvaa";
+$a->strings["Use as profile photo"] = "Käytä profiilikuvana";
+$a->strings["View Full Size"] = "Näytä täysikokoisena";
+$a->strings["Tags: "] = "Merkinnät:";
+$a->strings["[Remove any tag]"] = "[Poista mikä tahansa merkintä]";
+$a->strings["New album name"] = "Uusi nimi albumille";
+$a->strings["Caption"] = "Kuvateksti";
+$a->strings["Add a Tag"] = "Lisää merkintä";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esimerkki: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Do not rotate"] = "Älä kierrä";
+$a->strings["Rotate CW (right)"] = "Käännä oikealle";
+$a->strings["Rotate CCW (left)"] = "Käännä vasemmalle";
+$a->strings["Map"] = "Kartta";
+$a->strings["View Album"] = "Näytä albumi";
+$a->strings["Edit contact"] = "Muokkaa kontaktia";
+$a->strings["Contacts who are not members of a group"] = "Kontaktit jotka eivät kuulu ryhmään";
+$a->strings["Community option not available."] = "Yhteisö vaihtoehto ei saatavilla.";
+$a->strings["Not available."] = "Ei saatavilla.";
+$a->strings["Local Community"] = "Paikallinen yhteisö";
+$a->strings["Posts from local users on this server"] = "Tämän palvelimen julkaisut";
+$a->strings["Global Community"] = "Maailmanlaajuinen yhteisö";
+$a->strings["Posts from users of the whole federated network"] = "Maailmanlaajuisen verkon julkaisut";
+$a->strings["No results."] = "Ei tuloksia.";
+$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "";
+$a->strings["No recipient selected."] = "Vastaanottaja puuttuu.";
+$a->strings["Unable to locate contact information."] = "Kontaktin tiedot ei löydy.";
+$a->strings["Message could not be sent."] = "Viestiä ei voitu lähettää.";
+$a->strings["Message collection failure."] = "Viestin noutaminen epäonnistui.";
+$a->strings["Message sent."] = "Viesti lähetetty.";
+$a->strings["Do you really want to delete this message?"] = "Haluatko varmasti poistaa viestin?";
+$a->strings["Message deleted."] = "Viesti poistettu.";
+$a->strings["Conversation removed."] = "Keskustelu poistettu.";
+$a->strings["Send Private Message"] = "Lähetä yksityisviesti";
+$a->strings["To:"] = "Vastaanottaja:";
+$a->strings["Subject:"] = "Aihe:";
+$a->strings["No messages."] = "Ei viestejä.";
+$a->strings["Message not available."] = "Viesti ei saatavilla.";
+$a->strings["Delete message"] = "Poista viesti";
+$a->strings["D, d M Y - g:i A"] = "";
+$a->strings["Delete conversation"] = "Poista keskustelu";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "Lähetä vastaus";
+$a->strings["Unknown sender - %s"] = "Tuntematon lähettäjä - %s";
+$a->strings["You and %s"] = "Sinä ja %s";
+$a->strings["%s and You"] = "%s ja sinä";
+$a->strings["%d message"] = [
+       0 => "%d viesti",
+       1 => "%d viestiä",
 ];
-$a->strings["Bold"] = "Lihavoitu";
-$a->strings["Italic"] = "Kursivoitu";
-$a->strings["Underline"] = "Alleviivaus";
-$a->strings["Quote"] = "Lainaus";
-$a->strings["Code"] = "Koodi";
-$a->strings["Image"] = "Kuva";
-$a->strings["Link"] = "Linkki";
-$a->strings["Video"] = "Video";
-$a->strings["Delete this item?"] = "Poista tämä kohde?";
-$a->strings["show fewer"] = "näytä vähemmän";
-$a->strings["Update %s failed. See error logs."] = "%s päivitys epäonnistui, katso virhelokit.";
+$a->strings["Do you really want to delete this video?"] = "Haluatko varmasti poistaa tämän videon?";
+$a->strings["Delete Video"] = "Poista video";
+$a->strings["No videos selected"] = "Ei videoita valittuna";
+$a->strings["Recent Videos"] = "Viimeisimmät videot";
+$a->strings["Upload New Videos"] = "Lataa uusia videoita";
+$a->strings["Credits"] = "Lopputekstit";
+$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "";
+$a->strings["Contact wasn't found or can't be unfollowed."] = "";
+$a->strings["Contact unfollowed"] = "Kontaktia ei enää seurata";
+$a->strings["Submit Request"] = "Lähetä pyyntö";
+$a->strings["You aren't a friend of this contact."] = "Et ole kontaktin kaveri.";
+$a->strings["Unfollowing is currently not supported by your network."] = "Seuraamisen lopettaminen ei tällä hetkellä tueta verkossasi.";
+$a->strings["Disconnect/Unfollow"] = "Katkaise / Lopeta seuraaminen";
+$a->strings["Your Identity Address:"] = "Identiteettisi osoite:";
+$a->strings["Invalid request."] = "Virheellinen pyyntö.";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "";
+$a->strings["Or - did you try to upload an empty file?"] = "Yrititkö ladata tyhjän tiedoston?";
+$a->strings["File exceeds size limit of %s"] = "Tiedosto ylittää kokorajoituksen %s";
+$a->strings["File upload failed."] = "Tiedoston lähettäminen epäonnistui.";
+$a->strings["Tips for New Members"] = "Vinkkejä uusille käyttäjille";
+$a->strings["Time Conversion"] = "Aikamuunnos";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
+$a->strings["UTC time: %s"] = "UTC-aika: %s";
+$a->strings["Current timezone: %s"] = "Aikavyöhyke: %s";
+$a->strings["Converted localtime: %s"] = "Muunnettu paikallisaika: %s";
+$a->strings["Please select your timezone:"] = "Valitse aikavyöhykkeesi:";
+$a->strings["This introduction has already been accepted."] = "Tämä esittely on jo hyväksytty.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiilin sijainti on viallinen tai se ei sisällä profiilitietoja.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Varoitus: profiilin sijainnissa ei ole tunnistettavaa omistajan nimeä.";
+$a->strings["Warning: profile location has no profile photo."] = "Varoitus: profiilin sijainnissa ei ole profiilikuvaa.";
+$a->strings["%d required parameter was not found at the given location"] = [
+       0 => "",
+       1 => "",
+];
+$a->strings["Introduction complete."] = "Esittely valmis.";
+$a->strings["Unrecoverable protocol error."] = "Vakava protokollavirhe.";
+$a->strings["Profile unavailable."] = "Profiili ei saatavilla.";
+$a->strings["%s has received too many connection requests today."] = "%s on saanut liikaa yhteyspyyntöjä tänään.";
+$a->strings["Spam protection measures have been invoked."] = "Roskapostisuojaukset otettu käyttöön.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Ystäviä suositellaan yrittämään uudelleen vuorokauden sisällä.";
+$a->strings["Invalid locator"] = "Viallinen paikannin";
+$a->strings["You have already introduced yourself here."] = "Olet jo esitellyt itsesi täällä.";
+$a->strings["Apparently you are already friends with %s."] = "Ilmeisesti olet jo ystävystynyt henkilön %s kanssa.";
+$a->strings["Invalid profile URL."] = "Viallinen profiiliosoite.";
+$a->strings["Failed to update contact record."] = "Kontaktitietojen päivitys epäonnistui.";
+$a->strings["Your introduction has been sent."] = "Esittelysi lähetettiin.";
+$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "";
+$a->strings["Please login to confirm introduction."] = "Kirjaudu vahvistaaksesi esittelysi.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Väärä identiteetti kirjautuneena sisään. Kirjaudu <strong>tähän</strong> profiiliin.";
+$a->strings["Confirm"] = "Vahvista";
+$a->strings["Hide this contact"] = "Piilota kontakti";
+$a->strings["Welcome home %s."] = "Tervetuloa kotiin %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Vahvista esittelysi/yhteyspyyntösi henkilölle %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Anna \"henkilöllisyysosoitteesi\" joissakin seuraavista tuetuista viestintäverkoista:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"%s\">follow this link to find a public Friendica site and join us today</a>."] = "";
+$a->strings["Friend/Connection Request"] = "Ystävä/yhteyspyyntö";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de"] = "Esim. jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@gnusocial.de";
+$a->strings["Please answer the following:"] = "Vastaa seuraavaan:";
+$a->strings["Does %s know you?"] = "Tunteeko %s sinut?";
+$a->strings["Add a personal note:"] = "Lisää oma merkintä:";
+$a->strings["GNU Social (Pleroma, Mastodon)"] = "GNU Social (Pleroma, Mastodon)";
+$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - Ã¤lä käytä tätä lomaketta. Kirjoita sen sijaan %s Diaspora-hakupalkkiisi.";
+$a->strings["Contact settings applied."] = "Kontaktiasetukset tallennettu.";
+$a->strings["Contact update failed."] = "Kontaktipäivitys epäonnistui.";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>VAROITUS: Tämä on erittäin vaativaa</strong> ja jos kirjoitat virheellisiä tietoja, viestintäsi tämän henkilön kanssa voi lakata toimimasta.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Ole hyvä ja paina selaimesi 'Takaisin'-painiketta <strong>nyt</strong>, jos olet epävarma tämän sivun toiminnoista.";
+$a->strings["No mirroring"] = "Ei peilausta";
+$a->strings["Mirror as forwarded posting"] = "Peilaa välitettynä julkaisuna";
+$a->strings["Mirror as my own posting"] = "Peilaa omana julkaisuna";
+$a->strings["Return to contact editor"] = "Palaa kontaktin muokkaamiseen";
+$a->strings["Refetch contact data"] = "";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "Peilaa tämän kontaktin julkaisut";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Account Nickname"] = "Tilin lempinimi";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - ohittaa Nimen/Nimimerkin";
+$a->strings["Account URL"] = "Tilin URL-osoite";
+$a->strings["Friend Request URL"] = "URL kaveripyyntöä varten";
+$a->strings["Friend Confirm URL"] = "URL kaverin vahvistusta varten";
+$a->strings["Notification Endpoint URL"] = "URL huomautuksia varten";
+$a->strings["Poll/Feed URL"] = "URL Ã¤Ã¤nestyksiä/syötteitä varten";
+$a->strings["New photo from this URL"] = "Uusi kuva osoitteesta";
+$a->strings["Welcome to %s"] = "Tervetuloa %s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s toivottaa tervetulleeksi ystävän %2\$s";
+$a->strings["Poke/Prod"] = "Tökkää";
+$a->strings["poke, prod or do other things to somebody"] = "";
+$a->strings["Recipient"] = "Vastaanottaja";
+$a->strings["Choose what you wish to do to recipient"] = "Valitse mitä haluat tehdä vastaanottajalle";
+$a->strings["Make this post private"] = "Muuta julkaisu yksityiseksi";
+$a->strings["Post successful."] = "Viestin lähetys onnistui.";
+$a->strings["Access denied."] = "Käyttö estetty.";
+$a->strings["Invalid request identifier."] = "Virheellinen pyyntötunniste.";
+$a->strings["Discard"] = "Hylkää";
+$a->strings["Ignore"] = "Jätä huomiotta";
+$a->strings["Network Notifications"] = "Verkkoilmoitukset";
+$a->strings["Personal Notifications"] = "Henkilökohtaiset ilmoitukset";
+$a->strings["Home Notifications"] = "Koti-ilmoitukset";
+$a->strings["Show Ignored Requests"] = "Näytä ohitetut pyynnöt";
+$a->strings["Hide Ignored Requests"] = "Piilota ohitetut pyynnöt";
+$a->strings["Notification type: "] = "Ilmoitustyyppi:";
+$a->strings["suggested by %s"] = "ehdottaa %s";
+$a->strings["Hide this contact from others"] = "Piilota kontakti muilta";
+$a->strings["Post a new friend activity"] = "";
+$a->strings["if applicable"] = "tarvittaessa";
+$a->strings["Claims to be known to you: "] = "Väittää tuntevansa sinut:";
+$a->strings["yes"] = "kyllä";
+$a->strings["no"] = "ei";
+$a->strings["Shall your connection be bidirectional or not?"] = "Kaksisuuntainen yhteys?";
+$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."] = "";
+$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."] = "";
+$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."] = "";
+$a->strings["Friend"] = "Kaveri";
+$a->strings["Sharer"] = "Jakaja";
+$a->strings["Subscriber"] = "Tilaaja";
+$a->strings["No introductions."] = "Ei esittelyjä.";
+$a->strings["Show unread"] = "Näytä lukemattomat";
+$a->strings["Show all"] = "Näytä kaikki";
+$a->strings["No more %s notifications."] = "Ei muita %s ilmoituksia.";
+$a->strings["Not Extended"] = "Ei laajennettu";
+$a->strings["Not Found"] = "Ei löydetty";
+$a->strings["The contact could not be added."] = "Kontaktia ei voitu lisätä.";
+$a->strings["You already added this contact."] = "Olet jo lisännyt tämän kontaktin.";
+$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diaspora -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
+$a->strings["OStatus support is disabled. Contact can't be added."] = "OStatus -tuki ei ole käytössä. Kontaktia ei voi lisätä.";
+$a->strings["The network type couldn't be detected. Contact can't be added."] = "Verkkotyyppiä ei voitu havaita. Kontaktia ei voitu lisätä.";
+$a->strings["This calendar format is not supported"] = "Tätä kalenteriformaattia ei tueta";
+$a->strings["No exportable data found"] = "Vientikelpoista dataa ei löytynyt";
+$a->strings["calendar"] = "kalenteri";
+$a->strings["%d contact edited."] = [
+       0 => "%d kontakti muokattu",
+       1 => "%d kontakteja muokattu",
+];
+$a->strings["Could not access contact record."] = "Yhteystietoon ei päästä käsiksi.";
+$a->strings["Could not locate selected profile."] = "Valittua profiilia ei löydy.";
+$a->strings["Contact updated."] = "Yhteystietopäivitys onnistui.";
+$a->strings["Contact has been blocked"] = "Henkilö on estetty";
+$a->strings["Contact has been unblocked"] = "Henkilö on jälleen sallittu";
+$a->strings["Contact has been ignored"] = "Henkilöä ei enää huomioida";
+$a->strings["Contact has been unignored"] = "Henkilö on jälleen huomioituna.";
+$a->strings["Contact has been archived"] = "Henkilö on arkistoitu.";
+$a->strings["Contact has been unarchived"] = "Henkilö on otettu pois arkistosta.";
+$a->strings["Drop contact"] = "Poista kontakti";
+$a->strings["Do you really want to delete this contact?"] = "Haluatko todella poistaa tämän yhteystiedon?";
+$a->strings["Contact has been removed."] = "Yhteystieto on poistettu.";
+$a->strings["You are mutual friends with %s"] = "Olet kaveri %s kanssa.";
+$a->strings["You are sharing with %s"] = "Olet jakanut jotakin %s:n kanssa";
+$a->strings["%s is sharing with you"] = "%s jakaa sinulle jotakin.";
+$a->strings["Private communications are not available for this contact."] = "Yksityiskeskustelu ei ole käytettävissä tälle henkilölle.";
+$a->strings["Never"] = "Ei koskaan";
+$a->strings["(Update was successful)"] = "(Päivitys onnistui)";
+$a->strings["(Update was not successful)"] = "(Päivitys epäonnistui)";
+$a->strings["Suggest friends"] = "Ehdota ystäviä";
+$a->strings["Network type: %s"] = "Verkkotyyppi: %s";
+$a->strings["Communications lost with this contact!"] = "Yhteys tähän henkilöön menetettiin!";
+$a->strings["Fetch further information for feeds"] = "";
+$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "";
+$a->strings["Fetch information"] = "Nouda tiedot";
+$a->strings["Fetch keywords"] = "Nouda avainsanat";
+$a->strings["Fetch information and keywords"] = "Nouda tiedot ja avainsanat";
+$a->strings["Contact"] = "Kontakti";
+$a->strings["Profile Visibility"] = "Profiilin näkyvyys";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Valitse profiili, jonka haluat näyttää %s:lle, kun hän haluaa katsoa profiiliasi turvallisesti.";
+$a->strings["Contact Information / Notes"] = "Yhteystiedot / Muistiinpanot";
+$a->strings["Their personal note"] = "";
+$a->strings["Edit contact notes"] = "Muokkaa yhteystietojen muistiinpanoja";
+$a->strings["Block/Unblock contact"] = "Estä/salli henkilö";
+$a->strings["Ignore contact"] = "Jätä henkilö huomiotta";
+$a->strings["Repair URL settings"] = "Korjaa URL-asetukset";
+$a->strings["View conversations"] = "Katso keskusteluja";
+$a->strings["Last update:"] = "Viimeksi päivitetty:";
+$a->strings["Update public posts"] = "Päivitä julkiset postaukset";
+$a->strings["Update now"] = "Päivitä nyt";
+$a->strings["Unignore"] = "Ota huomioon";
+$a->strings["Currently blocked"] = "Estetty tällä hetkellä";
+$a->strings["Currently ignored"] = "Jätetty huomiotta tällä hetkellä";
+$a->strings["Currently archived"] = "Arkistoitu tällä hetkellä";
+$a->strings["Awaiting connection acknowledge"] = "Odotetaan yhteyden kuittausta";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
+$a->strings["Notification for new posts"] = "Uusien postausten ilmoitus";
+$a->strings["Send a notification of every new post of this contact"] = "Lähetä ilmoitus tälle henkilölle kaikista uusista postauksista";
+$a->strings["Blacklisted keywords"] = "Kielletyt avainsanat";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
+$a->strings["Actions"] = "Toimenpiteet";
+$a->strings["Contact Settings"] = "Yhteystietoasetukset";
+$a->strings["Suggestions"] = "Ehdotukset";
+$a->strings["Suggest potential friends"] = "Ehdota mahdollisille ystäville";
+$a->strings["Show all contacts"] = "Näytä kaikki yhteystiedot";
+$a->strings["Unblocked"] = "Sallittu";
+$a->strings["Only show unblocked contacts"] = "Näytä vain sallitut henkilöt";
+$a->strings["Blocked"] = "Estetty";
+$a->strings["Only show blocked contacts"] = "Näytä vain estetyt henkilöt";
+$a->strings["Ignored"] = "Jätetty huomiotta";
+$a->strings["Only show ignored contacts"] = "Näytä vain henkilöt, jotka jätetty huomiotta";
+$a->strings["Archived"] = "Arkistoitu";
+$a->strings["Only show archived contacts"] = "Näytä vain arkistoidut henkilöt";
+$a->strings["Hidden"] = "Piilotettu";
+$a->strings["Only show hidden contacts"] = "Näytä vain piilotetut henkilöt";
+$a->strings["Search your contacts"] = "Etsi henkilöitä";
+$a->strings["Results for: %s"] = "Tulokset haulla: %s";
+$a->strings["Archive"] = "Arkistoi";
+$a->strings["Unarchive"] = "Poista arkistosta";
+$a->strings["Batch Actions"] = "";
+$a->strings["View all contacts"] = "Näytä kaikki kontaktit";
+$a->strings["Common Friends"] = "Yhteisiä kavereita";
+$a->strings["View all common friends"] = "Näytä kaikki yhteiset kaverit";
+$a->strings["Advanced Contact Settings"] = "Kontakti-lisäasetukset";
+$a->strings["Mutual Friendship"] = "Yhteinen kaveruus";
+$a->strings["is a fan of yours"] = "on fanisi";
+$a->strings["you are a fan of"] = "fanitat";
+$a->strings["Toggle Blocked status"] = "Estetty tila päälle/pois";
+$a->strings["Toggle Ignored status"] = "Sivuuta/seuraa";
+$a->strings["Toggle Archive status"] = "Arkistotila päälle/pois";
+$a->strings["Delete contact"] = "Poista kontakti";
+$a->strings["The post was created"] = "Julkaisu luotu";
+$a->strings["No valid account found."] = "Voimassa olevaa tiliä ei löytynyt.";
+$a->strings["Password reset request issued. Check your email."] = "Salasanan nollauspyyntö lähetetty. Tarkista sähköpostisi.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
+$a->strings["Password reset requested at %s"] = "Salasanan nollauspyyntö kohteessa %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Pyyntöä ei voitu vahvistaa. (Saatoit lähettää pyyntöä aikaisemmin.) Salasanan nollaus epäonnistui.";
+$a->strings["Request has expired, please make a new one."] = "Pyyntö on vanhentunut, tehkää uusi pyyntö.";
+$a->strings["Forgot your Password?"] = "Unohditko salasanasi?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "";
+$a->strings["Reset"] = "Nollaus";
+$a->strings["Your password has been reset as requested."] = "Salasanasi on nollattu pyynnöstäsi.";
+$a->strings["Your new password is"] = "Uusi salasanasi on";
+$a->strings["Save or copy your new password - and then"] = "Tallenna tai kopioi uusi salasanasi, ja sitten";
+$a->strings["click here to login"] = "kirjaudu klikkaamalla tästä";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Salsanaa voi vaihtaa <em>asetussivulta</em> kirjautumisen jälkeen.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "";
+$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tKäyttäjätilisi tiedot:\n\n\t\t\tSivuston osoite:\t%1\$s\n\t\t\tKäyttäjätunnus:\t%2\$s\n\t\t\tSalasana:\t%3\$s\n\n\t\t\tVoit vaihtaa salasanasi kirjautumisen jälkeen asetussivulta.\n\t\t";
+$a->strings["Your password has been changed at %s"] = "Salasanasi on vaihdettu sivustolla %s";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica viestinnän palvelin - asetukset";
+$a->strings["Could not connect to database."] = "Tietokantaan ei saada yhteyttä.";
+$a->strings["Could not create table."] = "Taulun luominen epäonnistui.";
+$a->strings["Your Friendica site database has been installed."] = "Friendica-sivustosi tietokanta on asennettu.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Sinun on ehkä tuotava tiedosto \"database.sql\" manuaalisesti käyttämällä phpMyAdminia tai MySQL:ää.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lue tiedosto \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Tietokanta on jo käytössä.";
+$a->strings["System check"] = "Järjestelmän tarkistus";
+$a->strings["Check again"] = "Tarkista uudelleen";
+$a->strings["Database connection"] = "Tietokantayhteys";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Jotta voit asentaa Friendican, tarvitaan tieto siitä, miten tietokantaasi saa yhteyden.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Ota yhteyttä web-palveluntarjoajaasi tai sivuston ylläpitäjään, jos sinulla on näihin asetuksiin liittyviä kysymyksiä.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Alla määritetyn tietokannan tulisi olla jo olemassa. Jos se ei ole, luo se ennen kuin jatkat.";
+$a->strings["Database Server Name"] = "Tietokannan palvelimen nimi";
+$a->strings["Database Login Name"] = "Tietokannan käyttäjän nimi";
+$a->strings["Database Login Password"] = "Tietokannan käyttäjän salasana";
+$a->strings["For security reasons the password must not be empty"] = "Turvallisuussyistä salasanakenttä ei saa olla tyhjä";
+$a->strings["Database Name"] = "Tietokannan nimi";
+$a->strings["Site administrator email address"] = "Sivuston ylläpitäjän sähköpostiosoite";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Tilisi sähköpostiosoitteen on vastattava tätä, jotta voit käyttää ylläpitokäyttöliittymää.";
+$a->strings["Please select a default timezone for your website"] = "Valitse oletusaikavyöhyke sivustollesi";
+$a->strings["Site settings"] = "Sivuston asetukset";
+$a->strings["System Language:"] = "Järjestelmän kieli:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Valitse Friendica-sivustosi oletuskieli.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komentoriviversiota PHP:stä ei löytynyt web-palvelimen PATH:ista.";
+$a->strings["If you don't have a command line version of PHP installed on your 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-worker'>'Setup the worker'</a>"] = "";
+$a->strings["PHP executable path"] = "Polku PHP-ohjelmaan";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Kirjoita koko polku PHP-ohjelmaan. Voit jättää sen tyhjäksi, jos haluat jatkaa asennusta.";
+$a->strings["Command line PHP"] = "Komentorivi-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
+$a->strings["Found PHP version: "] = "PHP-versio löydetty:";
+$a->strings["PHP cli binary"] = "PHP cli -binääritiedosto";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Järjestelmäsi komentorivi-PHP:ssä ei ole käytössä asetusta \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "Asetus vaaditaan viestien lähettämiseen.";
+$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"] = "Virhe: järjestelmäsi \"openssl_pkey_new\" -funktio ei pysty generoimaan salausavaimia.";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jos on kyse Windows-pavelimesta, katso \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Luo salausavaimet";
+$a->strings["libCurl PHP module"] = "PHP-moduuli libCurl";
+$a->strings["GD graphics PHP module"] = "PHP-moduuli GD graphics";
+$a->strings["OpenSSL PHP module"] = "PHP-moduuli OpenSSL";
+$a->strings["PDO or MySQLi PHP module"] = "PDO tai MySQLi PHP-moduuli";
+$a->strings["mb_string PHP module"] = "PHP-moduuli mb_string";
+$a->strings["XML PHP module"] = "XML PHP-moduuli";
+$a->strings["iconv PHP module"] = "iconv PHP-moduuli";
+$a->strings["POSIX PHP module"] = "POSIX PHP-moduuli";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite -moduuli";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Virhe: Apache-palvelimen mod-rewrite -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Virhe: libCURL PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Virhe: GD graphics PHP -moduuli JPEG-tuella vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Virhe: openssl PHP -moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Virhe: PDO tai MySQLi PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: The MySQL driver for PDO is not installed."] = "Virhe: PDO:n MySQL-ajuri ei ole asennettu";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Virhe: PHP-moduuli mb_string vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Virhe: iconv PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$a->strings["Error: POSIX PHP module required but not installed."] = "Virhe: POSIX PHP-moduuli vaadittaan, mutta sitä ei ole asennettu.";
+$a->strings["Error, XML PHP module required but not installed."] = "Virhe: XML PHP-moduuli vaaditaan, mutta sitä ei ole asennettu.";
+$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."] = "Web-asennuksen pitäisi pystyä luomaan tiedosto nimeltä \".htconfig.php\" palvelimesi ylimpään kansioon, mutta se ei nyt onnistu.";
+$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."] = "Tämä on yleensä käyttöoikeusasetus, jolloin web-palvelimesi ei pysty kirjoittamaan tiedostoja kansioosi, vaikka itse siihen pystyisit.";
+$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."] = "Tämän menettelyn lopussa annamme sinulle tekstin tallennettavaksi tiedostoon nimeltä .htconfig.php Friendican ylätason kansiossa.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php on kirjoitettava";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$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."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$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."] = "";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 on kirjoitettava";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL-osoitteen uudelleenkirjoitus .htaccess-tiedostossa ei toimi. Tarkista palvelimen asetukset.";
+$a->strings["Url rewrite is working"] = "URL-osoitteen uudellenkirjoitus toimii";
+$a->strings["ImageMagick PHP extension is not installed"] = "ImageMagick PHP-laajennus ei ole asetettu";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP-laajennus on asetettu";
+$a->strings["ImageMagick supports GIF"] = "ImageMagik tukee GIF-formaattia";
+$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."] = "Tietokannan asetustiedostoa \".htconfig.php\" ei pystytty kirjoittamaan. Käytä mukaanliitettyä tekstiä luomaan asetustiedosto web-palvelimesi juureen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Mitä seuraavaksi</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "TÄRKEÄÄ: Sinun pitää asettaa [manuaalisesti] ajastettu tehtävä Workerille.";
+$a->strings["Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "";
+$a->strings["Source input"] = "";
+$a->strings["BBCode::toPlaintext"] = "";
+$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (raaka HTML)";
+$a->strings["BBCode::convert"] = "BBCode::convert";
+$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode";
+$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown";
+$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert";
+$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode";
+$a->strings["BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown =>  Markdown::convert => HTML::toBBCode";
+$a->strings["Source input \\x28Diaspora format\\x29"] = "";
+$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode";
+$a->strings["Raw HTML input"] = "Raaka HTML-syöte";
+$a->strings["HTML Input"] = "HTML-syöte";
+$a->strings["HTML::toBBCode"] = "HTML::toBBCode";
+$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext";
+$a->strings["Source text"] = "Lähdeteksti";
+$a->strings["BBCode"] = "BBCode";
+$a->strings["Markdown"] = "Markdown";
+$a->strings["HTML"] = "HTML";
+$a->strings["Remote privacy information not available."] = "Yksityisyyden etätietoja ei saatavilla.";
+$a->strings["Visible to:"] = "Näkyvissä:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "%s-käyttäjän päivittäinen seinäviestiraja ylitetty. Viestin lähettäminen epäonnistui.";
+$a->strings["Unable to check your home location."] = "Kotisijaintisi ei voitu tarkistaa.";
+$a->strings["No recipient."] = "Vastaanottaja puuttuu.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Avainsanat puuttuu. Lisää avainsanoja oletusprofiiliisi.";
+$a->strings["is interested in:"] = "on kiinnostunut seuraavista aiheista:";
+$a->strings["Profile Match"] = "Vastaavien profiilien haku";
+$a->strings["System down for maintenance"] = "Järjestelmä poiskytketty huoltoa varten";
+$a->strings["Tag removed"] = "Tägi poistettiin";
+$a->strings["Remove Item Tag"] = "Poista tägi";
+$a->strings["Select a tag to remove: "] = "Valitse tägi poistamista varten:";
+$a->strings["You must be logged in to use this module"] = "Sinun pitää kirjautua sisään, jotta voit käyttää tätä moduulia";
+$a->strings["Source URL"] = "Lähde URL";
+$a->strings["Only logged in users are permitted to perform a search."] = "";
+$a->strings["Too Many Requests"] = "Liian monta pyyntöä";
+$a->strings["Only one search per minute is permitted for not logged in users."] = "";
+$a->strings["Items tagged with: %s"] = "Kohteet joilla tunnisteet: %s";
+$a->strings["Export account"] = "Vie tili";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Vie tilin tiedot ja yhteystiedot. Käytä tätä tilisi varmuuskopiointiin ja/tai siirtämiseen toiselle palvelimelle.";
+$a->strings["Export all"] = "Vie kaikki";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Vie tilin tiedot, yhteystiedot ja kaikki nimikkeesi json-muodossa. Saattaa luoda hyvin suuren tiedoston ja kestää todella pitkään. Tämän avulla voit ottaa täydellisen varmuuskopion tilistäsi (valokuvia ei viedä)";
+$a->strings["Welcome to Friendica"] = "Tervetuloa Friendicaan";
+$a->strings["New Member Checklist"] = "Uuden jäsenen tarkistuslista";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
+$a->strings["Getting Started"] = "Ensiaskeleet";
+$a->strings["Friendica Walk-Through"] = "Friendica -läpikäynti";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
+$a->strings["Go to Your Settings"] = "Omat Asetukset";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "";
+$a->strings["Edit Your Profile"] = "Muokkaa profiilisi";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "";
+$a->strings["Profile Keywords"] = "Profiilin avainsanat";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "";
+$a->strings["Connecting"] = "Yhdistetään";
+$a->strings["Importing Emails"] = "Sähköpostin tuominen";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
+$a->strings["Go to Your Contacts Page"] = "Näytä minun kontaktit";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
+$a->strings["Go to Your Site's Directory"] = "Näytä oman sivuston luettelo";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "";
+$a->strings["Finding New People"] = "Kavereiden hankkiminen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
+$a->strings["Group Your Contacts"] = "Järjestä kontaktit ryhmiin";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "";
+$a->strings["Why Aren't My Posts Public?"] = "Miksi julkaisuni eivät ole julkisia?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
+$a->strings["Getting Help"] = "Avun saaminen";
+$a->strings["Go to the Help Section"] = "Näytä ohjeet";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
+$a->strings["Response from remote site was not understood."] = "Etäsivuston vastaus oli epäselvä.";
+$a->strings["Unexpected response from remote site: "] = "Odottamaton vastaus etäsivustolta:";
+$a->strings["Confirmation completed successfully."] = "Vahvistus onnistui.";
+$a->strings["Temporary failure. Please wait and try again."] = "Tilapäinen vika. Yritä myöhemmin uudelleen.";
+$a->strings["Introduction failed or was revoked."] = "Kaverikutsu epäonnistui tai oli peruutettu.";
+$a->strings["Remote site reported: "] = "";
+$a->strings["Unable to set contact photo."] = "Kontaktin kuvaa ei voitu asettaa";
+$a->strings["No user record found for '%s' "] = "";
+$a->strings["Our site encryption key is apparently messed up."] = "Sivustomme salausavain on sekaisin.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
+$a->strings["Contact record was not found for you on our site."] = "";
+$a->strings["Site public key not available in contact record for URL %s."] = "";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
+$a->strings["Unable to set your contact credentials on our system."] = "";
+$a->strings["Unable to update your contact profile details on our system"] = "";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s on liittynyt kohteeseen %2\$s";
+$a->strings["- select -"] = "- valitse -";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Rekisteröityminen onnistui. Saat kohta lisäohjeita sähköpostitse.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
+$a->strings["Registration successful."] = "Rekisteröityminen onnistui.";
+$a->strings["Your registration can not be processed."] = "Rekisteröintisi ei voida käsitellä.";
+$a->strings["Your registration is pending approval by the site owner."] = "Rekisteröintisi odottaa ylläpitäjän hyväksyntää.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jos OpenID ei ole tuttu, jätä kenttä tyhjäksi.";
+$a->strings["Your OpenID (optional): "] = "OpenID -tunnus (valinnainen):";
+$a->strings["Include your profile in member directory?"] = "Lisää profiilisi jäsenluetteloon?";
+$a->strings["Note for the admin"] = "Viesti ylläpidolle";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Kerro yllÃ¥pitäjälle miksi haluat liittyä tähän Friendica -sivustoon";
+$a->strings["Membership on this site is by invitation only."] = "Tähän sivustoon voi liittyä vain kutsusta.";
+$a->strings["Your invitation code: "] = "Kutsukoodisi:";
+$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Koko nimi (esim. Matti Meikäläinen, Aku Ankka):";
+$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Sähköpostiosoite: (pitää olla toimiva osoite että rekisteröityminen onnistuu)";
+$a->strings["Leave empty for an auto generated password."] = "Jätä tyhjäksi jos haluat automaattisesti luotu salasanan.";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@%s</strong>'."] = "";
+$a->strings["Choose a nickname: "] = "Valitse lempinimi:";
+$a->strings["Import your profile to this friendica instance"] = "Tuo profiilisi tähän Friendica -instanssiin.";
+$a->strings["No contacts in common."] = "Ei yhteisiä kontakteja.";
+$a->strings["Only logged in users are permitted to perform a probing."] = "";
+$a->strings["Help:"] = "Ohje:";
+$a->strings["Page not found."] = "Sivua ei löytynyt.";
+$a->strings["Invalid profile identifier."] = "Virheellinen profiilitunniste.";
+$a->strings["Profile Visibility Editor"] = "Profiilin näkyvyyden muokkaaminen";
+$a->strings["Visible To"] = "Näkyvyys";
+$a->strings["All Contacts (with secure profile access)"] = "";
+$a->strings["Unable to locate original post."] = "Alkuperäinen julkaisu ei löydy.";
+$a->strings["Empty post discarded."] = "Tyhjä julkaisu hylätty.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
+$a->strings["You may visit them online at %s"] = "";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "";
+$a->strings["%s posted an update."] = "%s julkaisi päivityksen.";
+$a->strings["Item not found"] = "Kohdetta ei löytynyt";
+$a->strings["Edit post"] = "Muokkaa viestiä";
+$a->strings["Alignment"] = "Kohdistaminen";
+$a->strings["Left"] = "Vasemmalle";
+$a->strings["Center"] = "Keskelle";
+$a->strings["Color scheme"] = "Värimalli";
+$a->strings["Posts font size"] = "Julkaisujen fonttikoko";
+$a->strings["Textareas font size"] = "Tekstikenttien fonttikoko";
+$a->strings["Repeat the image"] = "Toista kuva";
+$a->strings["Will repeat your image to fill the background."] = "";
+$a->strings["Stretch"] = "Venytä";
+$a->strings["Will stretch to width/height of the image."] = "";
+$a->strings["Resize fill and-clip"] = "";
+$a->strings["Resize to fill and retain aspect ratio."] = "";
+$a->strings["Resize best fit"] = "";
+$a->strings["Resize to best fit and retain aspect ratio."] = "";
+$a->strings["Default"] = "Oletus";
+$a->strings["Note"] = "";
+$a->strings["Check image permissions if all users are allowed to visit the image"] = "";
+$a->strings["Select scheme"] = "Valitse malli";
+$a->strings["Navigation bar background color"] = "Navigointipalkin taustaväri";
+$a->strings["Navigation bar icon color "] = "Navigointipalkin kuvakkeiden väri";
+$a->strings["Link color"] = "Linkin väri";
+$a->strings["Set the background color"] = "Valitse taustaväri";
+$a->strings["Content background opacity"] = "Sisällön taustasameus";
+$a->strings["Set the background image"] = "Valitse taustakuva";
+$a->strings["Login page background image"] = "Sisäänkirjautumissivun taustakuva";
+$a->strings["Login page background color"] = "Sisäänkirjautumissivun taustaväri";
+$a->strings["Leave background image and color empty for theme defaults"] = "";
+$a->strings["Guest"] = "Vieras";
+$a->strings["Visitor"] = "Vierailija";
+$a->strings["Comma separated list of helper forums"] = "";
+$a->strings["Set style"] = "Aseta tyyli";
+$a->strings["Community Pages"] = "Yhteisösivut";
+$a->strings["Community Profiles"] = "Yhteisöprofiilit";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "Yhdistä palvelut";
+$a->strings["Find Friends"] = "Etsi kavereita";
+$a->strings["Last users"] = "Viimeisimmät käyttäjät";
+$a->strings["Local Directory"] = "Paikallinen hakemisto";
+$a->strings["Quick Start"] = "Pika-aloitus";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Muunnelmat";
 $a->strings["toggle mobile"] = "Mobiilisivusto päälle/pois";
diff --git a/view/templates/wall/content_filter.tpl b/view/templates/wall/content_filter.tpl
new file mode 100644 (file)
index 0000000..1e2b99c
--- /dev/null
@@ -0,0 +1,22 @@
+{{if count($reasons) > 1}}
+<ul class="content-filter-reasons">
+       {{foreach $reasons as $reason}}
+       <li>{{$reason|escape:html}}</li>
+       {{/foreach}}
+</ul>
+<p>
+       <button type="button" id="content-filter-wrap-{{$rnd}}" class="btn btn-default btn-small content-filter-button" onclick="openClose('content-filter-{{$rnd}}');">
+               <i class="glyphicon glyphicon-eye-open"></i> {{$openclose}}
+       </button>
+</p>
+{{else}}
+<p>
+       {{$reasons.0|escape:html}}
+       <button type="button" id="content-filter-wrap-{{$rnd}}" class="btn btn-default btn-xs content-filter-button" onclick="openClose('content-filter-{{$rnd}}');">
+               <i class="glyphicon glyphicon-eye-open"></i> {{$openclose}}
+       </button>
+</p>
+{{/if}}
+<div id="content-filter-{{$rnd}}" class="content-filter-content" style="display: none;">
+       {{$html}}
+</div>
index cbcd53453b7e92c14ff57f4b7921cd7a3b0917f3..b690577d1135d2062a7516ec1aeac17312002d97 100644 (file)
@@ -1,17 +1,20 @@
 
-#admin-users.adminpage { padding-left:0; padding-right: 0;}
 #admin-users.adminpage > h1 { padding: 0 15px; }
-
-#admin-users td { word-break: break-all; }
+#admin-users.adminpage .panel-collapse { margin-left: -15px; margin-right: -15px; }
 
 #admin-users #users th:first-of-type { width: 1em; }
 #admin-users #users th:nth-of-type(2) { width: 40px; }
 #admin-users #users th:last-of-type { width: 1em; }
+#admin-users .admin-settings-footer-elements { padding-left: 8px; padding-right: 8px; }
 
 #admin-users #deleted th:first-of-type { width: 40px; }
 
 #admin-users #users img.avatar-nano, #deleted img.avatar-nano { height: 24px; width: 24px; }
 .opened .caret { transform: rotate(180deg); }
 tr.details td,
-tr.details th
-{ border-top: 0!important; }
+tr.details th {
+    border-top: 0!important;
+}
+
+.adminpage td > .checkbox { margin: 0; }
+.adminpage td { word-break: break-all; }
\ No newline at end of file
index 35c577b5a826f6dac7f732775de03dccd46bf112..1614547b85d411b8b69540b97da67798e555864d 100644 (file)
@@ -2654,7 +2654,8 @@ ul li:hover .contact-wrapper .contact-action-link:hover {
     margin-left: -15px;
     margin-right: -15px;
 }
-.panel-group-settings > .panel {
+.panel-group-settings > .panel,
+.panel-group-settings > form > .panel {
     padding-left: 15px;
     padding-right: 15px;
 }
@@ -2939,6 +2940,22 @@ section.help-content-wrapper li {
 #adminpage .plugin .desc {
     padding-left: 10px;
 }
+.adminpage .admin-settings-action-link,
+.adminpage .admin-settings-action-link:hover {
+    color: #555;
+}
+.adminpage .admin-settings-action-link:hover {
+    opacity: 1;
+}
+.adminpage .admin-settings-action-link {
+    opacity: 0.8;
+}
+#admin-users tr.blocked {
+    background-color: #f8efc0;
+}
+.adminpage .table-hover > tbody > tr:hover + tr.details {
+    background-color: #f5f5f5;
+}
 
 /* Register Page*/
 #register-openid-wrapper, #register-name-wrapper, #register-invite-wrapper, #profile-publish-wrapper {
index dc8abe054b51cc1ea4e4c0fadd0530d304fcad4a..188b4809863c7d1b697f2bda43d4d58722365159 100644 (file)
@@ -9,7 +9,9 @@ $(function() {
                selectnone($(this).data('selectNone'));
        });
 
-       $('body').on('change', 'input[type=checkbox].select', function() {
+       // Toggle checkbox status to all or none for all checkboxes of a specific
+       // css class.
+       $('body').on('change', 'input[type=checkbox].selecttoggle', function() {
                $this = $(this);
                if ($this.prop('checked')) {
                        selectall($this.data('selectClass'));
@@ -20,6 +22,26 @@ $(function() {
                }
        });
 
+       // Use AJAX calls to reorder the table (so we don't need to reload the page).
+       $('body').on('click', '.table-order', function(e) {
+               e.preventDefault();
+
+               // Get the parent table element.
+               var table = $(this).parents('table');
+               var orderUrl = this.getAttribute("data-order-url");
+               table.fadeTo("fast", 0.33);
+
+               $("body").css("cursor", "wait");
+
+               $.get(orderUrl, function(data) {
+                       // Find the table element in the html we got.
+                       var result = $(data).find('#' + table[0].id);
+                       // And add the new table html to the parent.
+                       $(table).parent().html(result);
+
+                       $("body").css("cursor", "auto");
+               });
+       });
 
        function selectall(cls) {
                $('.' + cls).prop('checked', true);
@@ -39,7 +61,7 @@ function confirm_delete(msg, uname){
 }
 
 function details(uid) {
-       $("#user-"+uid+"-detail").toggleClass("hidden");
-       $("#user-"+uid).toggleClass("opened");
+       $("#user-" + uid + "-detail").toggleClass("hidden");
+       $("#user-" + uid).toggleClass("opened");
        return false;
 }
index f330854bc9694220930b16fc8173df56044bbb4f..3173c238b65f7c0c53db6ef2269c1fa4ccd5ca38 100644 (file)
 <script type="text/javascript" src="view/theme/frio/js/mod_admin.js"></script>
-<div id="adminpage">
+<link rel="stylesheet" href="view/theme/frio/css/mod_admin.css" type="text/css" media="screen"/>
+
+<div id="admin-contactblock" class="adminpage generic-page-wrapper">
        <h1>{{$title}} - {{$page}}</h1>
        <p>{{$description}}</p>
-       <form action="{{$baseurl}}/admin/contactblock" method="post">
-        <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
-
-               <h3>{{$h_contacts}}</h3>
-       {{if $contacts}}
-               <table id="contactblock" class="table table-condensed table-striped">
-                       <thead>
-                               <tr>
-                                       <th><input type="checkbox" class="select contacts_ckbx" data-select-class="contacts_ckbx" data-select-all="{{$select_all}}"  data-select-none="{{$select_none}}" title="{{$select_all}}"/></th>
-                                               {{foreach $th_contacts as $th}}
-                                       <th>
-                                               {{$th}}
-                                       </th>
-                                       {{/foreach}}
-                                       <th></th>
-                               </tr>
-                       </thead>
-                       <tbody>
-                               {{foreach $contacts as $contact}}
-                               <tr>
-                                       <td><input type="checkbox" class="contacts_ckbx" id="id_contact_{{$contact.id}}" name="contacts[]" value="{{$contact.id}}"/></td>
-                                       <td><img class="icon" src="{{$contact.micro}}" alt="{{$contact.nickname}}" title="{{$contact.addr}}"></td>
-                                       <td class="name">{{$contact.name}}</td>
-                                       <td class="addr" colspan="2"><a href="{{$contact.url}}" title="{{$contact.addr}}" >{{$contact.url}}</a></td>
-                               </tr>
-                               {{/foreach}}
-                       </tbody>
-                       <tfoot>
-                               <tr>
-                                       <td><input type="checkbox" class="select contacts_ckbx" data-select-class="contacts_ckbx" data-select-all="{{$select_all}}"  data-select-none="{{$select_none}}" title="{{$select_all}}"/></td>
-                                       <td colspan="3">
-                                               {{$total_contacts}}
-                                       </td>
-                               </tr>
-                       </tfoot>
-               </table>
-               <div class="submit"><button type="submit" class="btn btn-small btn-default" name="page_contactblock_unblock" value="1">{{$unblock|escape:'html'}}</button></div>
-               {{$paginate}}
-       {{else}}
-               <p>{{$no_data|escape:'html'}}</p>
-       {{/if}}
-       </form>
-
-       <h3>{{$h_newblock}}</h3>
-       <form action="{{$baseurl}}/admin/contactblock" method="post">
-               <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
-               <table id="contactblock">
-                       <tbody>
-                               <tr>
-                                       <td>{{include file="field_input.tpl" field=$contacturl}}</td>
-                               </tr>
-                       </tbody>
-               </table>
-               <div class="submit"><button type="submit" class="btn btn-primary" name="page_contactblock_block" value="1">{{$submit|escape:'html'}}</button></div>
-       </form>
+
+       {{* We organize the settings in collapsable panel-groups *}}
+       <div class="panel-group panel-group-settings" id="admin-settings" role="tablist" aria-multiselectable="true">
+               {{* The form for entering user profile which should be blocked *}}
+               <div class="panel">
+                       <div class="section-subtitle-wrapper" role="tab" id="admin-settings-contactblock-block">
+                               <h4>
+                                       <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-contactblock-block-collapse" aria-expanded="false" aria-controls="admin-settings-contactblock-block-collapse">
+                                               {{$h_newblock}}
+                                       </a>
+                               </h4>
+                       </div>
+
+                       <div id="admin-settings-contactblock-block-collapse" class="panel-collapse collapse" role="tabpanel" aria-labelledby="admin-settings-contactblock-block">
+                               <form action="{{$baseurl}}/admin/contactblock" method="post">
+                                       <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
+
+                                       {{include file="field_input.tpl" field=$contacturl}}
+
+                                       <div class="admin-settings-submit-wrapper form-group pull-right">
+                                               <button type="submit" class="btn btn-primary" name="page_contactblock_block" value="1">{{$submit|escape:'html'}}</button>
+                                       </div>
+                                       <div class="clear"></div>
+                               </form>
+                       </div>
+               </div>
+
+               {{* The list of blocked user profiles with the possibility to unblock them *}}
+               <div class="panel">
+                       <div class="section-subtitle-wrapper" role="tab" id="admin-settings-contactblock-blocked">
+                               <h4>
+                                       <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-contactblock-blocked-collapse" aria-expanded="{{if count($contacts) > 0}}true{{else}}false{{/if}}" aria-controls="admin-settings-contactblock-blocked-collapse">
+                                               {{$h_contacts}} ({{count($contacts)}})
+                                       </a>
+                               </h4>
+                       </div>
+
+                       <div id="admin-settings-contactblock-blocked-collapse" class="panel-collapse collapse {{if count($contacts) > 0}}in{{/if}}" role="tabpanel" aria-labelledby="admin-settings-contactblock-blocked">
+                               <form action="{{$baseurl}}/admin/contactblock" method="post">
+                                       <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
+
+                                       {{if $contacts}}
+                                       <table id="contactblock" class="table table-condensed table-striped">
+                                               <thead>
+                                                       <tr>
+                                                               <th></th>
+                                                               {{foreach $th_contacts as $th}}
+                                                                       <th>
+                                                                               {{$th}}
+                                                                       </th>
+                                                               {{/foreach}}
+                                                               <th></th>
+                                                       </tr>
+                                               </thead>
+                                               <tbody>
+                                                       {{foreach $contacts as $contact}}
+                                                               <tr>
+                                                                       <td>
+                                                                               <div class="checkbox">
+                                                                                       <input type="checkbox" class="contacts_ckbx" id="id_contact_{{$contact.id}}" name="contacts[]" value="{{$contact.id}}"/>
+                                                                                       <label for="id_contact_{{$contact.id}}"></label>
+                                                                               </div>
+                                                                       </td>
+                                                                       <td><img class="icon" src="{{$contact.micro}}" alt="{{$contact.nickname}}" title="{{$contact.addr}}"></td>
+                                                                       <td class="name">{{$contact.name}}</td>
+                                                                       <td class="addr" colspan="3"><a href="{{$contact.url}}" title="{{$contact.addr}}" >{{$contact.url}}</a></td>
+                                                               </tr>
+                                                       {{/foreach}}
+                                               </tbody>
+                                               <tfoot>
+                                                       <tr>
+                                                               <td>
+                                                                       {{* Checkbox to select all blocked contacts *}}
+                                                                       <div class="checkbox">
+                                                                               <input type="checkbox" id="contactblock-select" class="selecttoggle contacts_ckbx" data-select-class="contacts_ckbx" data-select-all="{{$select_all}}" data-select-none="{{$select_none}}" title="{{$select_all}}"/>
+                                                                               <label for="contactblock-select"></label>
+                                                                       </div>
+                                                               </td>
+                                                               <td colspan="5">
+                                                                       {{$total_contacts}}
+                                                                       <div class="admin-settings-submit-wrapper form-group pull-right">
+                                                                               <button type="submit" class="btn btn-small btn-default pull-right" name="page_contactblock_unblock" value="1">{{$unblock|escape:'html'}}</button>
+                                                                       </div>
+                                                                       <div class="clear"></div>
+                                                               </td>
+                                                       </tr>
+                                               </tfoot>
+                                       </table>
+
+                                       {{$paginate}}
+
+                                       {{else}}
+                                       <p>{{$no_data|escape:'html'}}</p>
+                                       {{/if}}
+                               </form>
+                       </div>
+               </div>
+       </div>
 </div>
index 784d46b2072bb4d16654736a6b8bbd175f9e02e2..92ef9be6fa4c7115f43f2d3ea5021c7da01e7a92 100644 (file)
 <script type="text/javascript" src="view/theme/frio/js/mod_admin.js"></script>
 <link rel="stylesheet" href="view/theme/frio/css/mod_admin.css" type="text/css" media="screen"/>
 
-<div id="admin-users" class="adminpage  generic-page-wrapper">
+<div id="admin-users" class="adminpage generic-page-wrapper">
        <h1>{{$title}} - {{$page}}</h1>
 
        <form action="{{$baseurl}}/admin/users" method="post">
                <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
 
+               {{* We organize the settings in collapsable panel-groups *}}
+               <div class="panel-group panel-group-settings" id="admin-settings" role="tablist" aria-multiselectable="true">
 
-               <!--
-                       **
-                       *
-                       *               PENDING Users table
-                       *
-                       **
-               -->
-               <div class="panel panel-default">
-                       <div class="panel-heading"><h3 class="panel-title">{{$h_pending}}</h3></div>
+                       <!--
+                               **
+                               *
+                               *               PENDING Users table
+                               *
+                               **
+                       -->
+                       <div class="panel">
+                               <div class="section-subtitle-wrapper" role="tab" id="admin-settings-pending">
+                                       <h4>
+                                               <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-pending-collapse" aria-expanded="{{if count($pending) > 0}}true{{else}}false{{/if}}" aria-controls="admin-settings-pending-collapse">
+                                                       {{$h_pending}} ({{count($pending)}})
+                                               </a>
+                                       </h4>
+                               </div>
 
-                       {{if $pending}}
-                               <table id="pending" class="table table-hover">
-                                       <thead>
-                                       <tr>
-                                               <th></th>
-                                               {{foreach $th_pending as $th}}<th>{{$th}}</th>{{/foreach}}
-                                               <th></th>
-                                       </tr>
-                                       </thead>
-                                       <tbody>
-                               {{foreach $pending as $u}}
-                                       <tr>
-                                               <td><input type="checkbox" class="pending_ckbx" id="id_pending_{{$u.hash}}" name="pending[]" value="{{$u.hash}}" /></td>
-                                               <td>{{$u.created}}</td>
-                                               <td>{{$u.name}}</td>
-                                               <td>{{$u.email}}</td>
-                                               <td>
-                                                       <a href="{{$baseurl}}/regmod/allow/{{$u.hash}}" title="{{$approve}}"><i class="fa fa-thumbs-up" aria-hidden="true"></i></a>
-                                                       <a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" title="{{$deny}}"><i class="fa fa-thumbs-down" aria-hidden="true"></i></a>
-                                               </td>
-                                       </tr>
-                                       <tr class="details">
-                                               <td></td>
-                                               <th>{{$pendingnotetext}}</th>
-                                               <td colspan="4">{{$u.note}}</td>
-                                       </tr>
-                               {{/foreach}}
-                                       </tbody>
-                               </table>
-                               <div class="panel-footer">
-                                       <div class="row">
-                                               <div class="col-xs-3">
-                                                       <div class="btn-group" role="group">
-                                                               <button type="button" class="btn btn-default selectall" data-select-all="pending_ckbx"><i class="fa fa-check-square-o" aria-hidden="true"></i></button>
-                                                               <button type="button" class="btn btn-default selectnone" data-select-none="pending_ckbx"><i class="fa fa-square-o" aria-hidden="true"></i></button>
+                               <div id="admin-settings-pending-collapse" class="panel-collapse collapse {{if count($pending) > 0}}in{{/if}}" role="tabpanel" aria-labelledby="admin-settings-pending">
+                                       {{if $pending}}
+                                       <table id="pending" class="table table-hover">
+                                               <thead>
+                                                       <tr>
+                                                               <th></th>
+                                                               {{foreach $th_pending as $th}}<th>{{$th}}</th>{{/foreach}}
+                                                               <th></th>
+                                                       </tr>
+                                               </thead>
+                                               <tbody>
+                                               {{foreach $pending as $u}}
+                                                       <tr>
+                                                               <td>
+                                                                       <div class="checkbox">
+                                                                               <input type="checkbox" class="pending_ckbx" id="id_pending_{{$u.hash}}" name="pending[]" value="{{$u.hash}}" />
+                                                                               <label for="id_pending_{{$u.hash}}"></label>
+                                                                       </div>
+                                                               </td>
+                                                               <td>{{$u.created}}</td>
+                                                               <td>{{$u.name}}</td>
+                                                               <td>{{$u.email}}</td>
+                                                               <td>
+                                                                       <a href="{{$baseurl}}/regmod/allow/{{$u.hash}}" class="admin-settings-action-link" title="{{$approve}}"><i class="fa fa-check" aria-hidden="true"></i></a>
+                                                                       <a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" class="admin-settings-action-link" title="{{$deny}}"><i class="fa fa-trash-o" aria-hidden="true"></i></a>
+                                                               </td>
+                                                       </tr>
+                                                       {{if $u.note}}
+                                                       <tr class="details">
+                                                               <td></td>
+                                                               <th>{{$pendingnotetext}}</th>
+                                                               <td colspan="4">{{$u.note}}</td>
+                                                       </tr>
+                                                       {{/if}}
+                                               {{/foreach}}
+                                               </tbody>
+                                       </table>
+                                       <div class="panel-footer">
+                                               <div class="row">
+                                                       <div class="col-xs-3 admin-settings-footer-elements">
+                                                               <div class="checkbox">
+                                                                       <input type="checkbox" id="admin-settings-pending-select" class="selecttoggle" data-select-class="pending_ckbx"/>
+                                                                       <label for="admin-settings-pending-select"></label>
+                                                               </div>
+                                                       </div>
+                                                       <div class="col-xs-9 admin-settings-footer-elements text-right">
+                                                               <button type="submit" name="page_users_deny" value="1" class="btn btn-primary">
+                                                                       <i class="fa fa-trash-o" aria-hidden="true"></i> {{$deny}}
+                                                               </button>
+                                                               <button type="submit" name="page_users_approve" value="1" class="btn btn-warinig">
+                                                                       <i class="fa fa-check" aria-hidden="true"></i> {{$approve}}
+                                                               </button>
                                                        </div>
-                                               </div>
-                                               <div class="col-xs-9 text-right">
-                                                       <button type="submit" name="page_users_deny" class="btn btn-primary"><i class="fa fa-thumbs-down" aria-hidden="true"></i> {{$deny}}</button>
-                                                       <button type="submit" name="page_users_approve" class="btn btn-warinig"><i class="fa fa-thumbs-up" aria-hidden="true"></i> {{$approve}}</button>
                                                </div>
                                        </div>
+                                       {{else}}
+                                       <div class="panel-body text-center text-muted">{{$no_pending}}</div>
+                                       {{/if}}
+                               </div>
+                       </div>
+
+                       <!--
+                               **
+                               *
+                               *               USERS Table
+                               *
+                               **
+                       -->
+                       <div class="panel">
+                               <div class="section-subtitle-wrapper" role="tab" id="admin-settings-user">
+                                       <h4>
+                                               <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-user-collapse" aria-expanded="false" aria-controls="admin-settings-user-collapse">
+                                                       {{$h_users}} ({{count($users)}})
+                                               </a>
+                                       </h4>
                                </div>
-                       {{else}}
-                               <div class="panel-body text-center text-muted">{{$no_pending}}</div>
-                       {{/if}}
-               </div>
 
-<!--
-       **
-       *
-       *               USERS Table
-       *
-       **
--->
-       <div class="panel panel-default">
-               <div class="panel-heading"><h3 class="panel-title">{{$h_users}}</h3></div>
-               {{if $users}}
+                               <div id="admin-settings-user-collapse" class="panel-collapse collapse" role="tabpanel" aria-labelledby="admin-settings-user">
 
-                       <table id="users" class="table table-hover">
-                               <thead>
-                               <tr>
-                                       <th></th>
-                                       <th></th>
-                                       {{foreach $th_users as $k=>$th}}
-                                       {{if $k < 2 || $order_users == $th.1 || ($k==5 && !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1])) }}
-                                       <th class="th-{{$k}}">
-                                               <a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th.1}}">
-                                                       {{if $order_users == $th.1}}
-                                                               {{if $order_direction_users == "+"}}
-                                                               &#8595;
+                                       {{if $users}}
+                                       <table id="users" class="table table-hover">
+                                               <thead>
+                                                       <tr>
+                                                               <th></th>
+                                                               <th></th>
+                                                               {{foreach $th_users as $k=>$th}}
+                                                                       {{if $k < 2 || $order_users == $th.1 || ($k==5 && !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1])) }}
+                                                                       <th class="th-{{$k}}">
+                                                                               <button type="button" data-order-url="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th.1}}" class="btn-link table-order">
+                                                                                       {{if $order_users == $th.1}}
+                                                                                               {{if $order_direction_users == "+"}}
+                                                                                               &#8595;
+                                                                                               {{else}}
+                                                                                               &#8593;
+                                                                                               {{/if}}
+                                                                                       {{else}}
+                                                                                       &#8597;
+                                                                                       {{/if}}
+                                                                                       {{$th.0}}
+                                                                               </button>
+                                                                       </th>
+                                                                       {{/if}}
+                                                               {{/foreach}}
+                                                               <th></th>
+                                                       </tr>
+                                               </thead>
+                                               <tbody>
+                                               {{foreach $users as $u}}
+                                                       <tr id="user-{{$u.uid}}" class="{{if $u.blocked != 0}}blocked{{/if}}">
+                                                               <td>
+                                                               {{if $u.is_deletable}}
+                                                               <div class="checkbox">
+                                                                       <input type="checkbox" class="users_ckbx" id="id_user_{{$u.uid}}" name="user[]" value="{{$u.uid}}"/>
+                                                                       <label for="id_user_{{$u.uid}}"></label>
+                                                               </div>
                                                                {{else}}
-                                                               &#8593;
+                                                               &nbsp;
+                                                               {{/if}}
+                                                               </td>
+                                                               <td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
+                                                               <td><a href="{{$u.url}}" title="{{$u.nickname}}"> {{$u.name}}</a></td>
+                                                               <td>{{$u.email}}</td>
+                                                               {{if $order_users == $th_users.2.1}}
+                                                               <td>{{$u.register_date}}</td>
                                                                {{/if}}
-                                                       {{else}}
-                                                               &#8597;
-                                                       {{/if}}
-                                               {{$th.0}}</a>
-                                       </th>
-                                       {{/if}}
-                                       {{/foreach}}
-                                       <th></th>
-                               </tr>
-                               </thead>
-                               <tbody>
-                               {{foreach $users as $u}}
-                                       <tr id="user-{{$u.uid}}">
-                                               <td>
-                                               {{if $u.is_deletable}}
-                                                       <input type="checkbox" class="users_ckbx" id="id_user_{{$u.uid}}" name="user[]" value="{{$u.uid}}"/>
-                                               {{else}}
-                                                       &nbsp;
-                                               {{/if}}
-                                               </td>
-                                               <td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
-                                               <td><a href="{{$u.url}}" title="{{$u.nickname}}"> {{$u.name}}</a></td>
-                                               <td>{{$u.email}}</td>
-                                               {{if $order_users == $th_users.2.1}}
-                                               <td>{{$u.register_date}}</td>
-                                               {{/if}}
 
-                                               {{if $order_users == $th_users.3.1}}
-                                               <td>{{$u.login_date}}</td>
-                                               {{/if}}
+                                                               {{if $order_users == $th_users.3.1}}
+                                                               <td>{{$u.login_date}}</td>
+                                                               {{/if}}
 
-                                               {{if $order_users == $th_users.4.1}}
-                                               <td>{{$u.lastitem_date}}</td>
-                                               {{/if}}
+                                                               {{if $order_users == $th_users.4.1}}
+                                                               <td>{{$u.lastitem_date}}</td>
+                                                               {{/if}}
 
-                                               {{if !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
+                                                               {{if !in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
+                                                               <td>
+                                                                       <i class="fa
+                                                                               {{if $u.page_flags_raw==0}}fa-user{{/if}}               {{* PAGE_NORMAL *}}
+                                                                               {{if $u.page_flags_raw==1}}fa-bullhorn{{/if}}           {{* PAGE_SOAPBOX *}}
+                                                                               {{if $u.page_flags_raw==2}}fa-users{{/if}}              {{* PAGE_COMMUNITY *}}
+                                                                               {{if $u.page_flags_raw==3}}fa-heart{{/if}}              {{* PAGE_FREELOVE *}}
+                                                                               {{if $u.page_flags_raw==4}}fa-rss{{/if}}                {{* PAGE_BLOG *}}
+                                                                               {{if $u.page_flags_raw==5}}fa-user-secret{{/if}}        {{* PAGE_PRVGROUP *}}
+                                                                               " title="{{$u.page_flags}}">
+                                                                       </i>
+                                                                       {{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}
+                                                                       <i class="fa
+                                                                               {{if $u.account_type_raw==1}}fa-sitemap{{/if}}          {{* ACCOUNT_TYPE_ORGANISATION *}}
+                                                                               {{if $u.account_type_raw==2}}fa-newspaper-o{{/if}}      {{* ACCOUNT_TYPE_NEWS *}}
+                                                                               {{if $u.account_type_raw==3}}fa-comments{{/if}}         {{* ACCOUNT_TYPE_COMMUNITY *}}
+                                                                               " title="{{$u.account_type}}">
+                                                                       </i>
+                                                                       {{/if}}
+                                                                       {{if $u.is_admin}}<i class="fa fa-user-md text-primary" title="{{$siteadmin}}"></i>{{/if}}
+                                                                       {{if $u.account_expired}}<i class="fa fa-clock-o text-warning" title="{{$accountexpired}}"></i>{{/if}}
+                                                               </td>
+                                                               {{/if}}
 
-                                               <td>
-                                                       <i class="fa
-                                                               {{if $u.page_flags_raw==0}}fa-user{{/if}}                                       {{* PAGE_NORMAL *}}
-                                                               {{if $u.page_flags_raw==1}}fa-bullhorn{{/if}}                   {{* PAGE_SOAPBOX *}}
-                                                               {{if $u.page_flags_raw==2}}fa-users{{/if}}                              {{* PAGE_COMMUNITY *}}
-                                                               {{if $u.page_flags_raw==3}}fa-heart{{/if}}                              {{* PAGE_FREELOVE *}}
-                                                               {{if $u.page_flags_raw==4}}fa-rss{{/if}}                                        {{* PAGE_BLOG *}}
-                                                               {{if $u.page_flags_raw==5}}fa-user-secret{{/if}}        {{* PAGE_PRVGROUP *}}
-                                                       " title="{{$u.page_flags}}"></i>
-                                                       {{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}
-                                                       <i class="fa
-                                                               {{if $u.account_type_raw==1}}fa-sitemap{{/if}}                  {{* ACCOUNT_TYPE_ORGANISATION *}}
-                                                               {{if $u.account_type_raw==2}}fa-newspaper-o{{/if}}      {{* ACCOUNT_TYPE_NEWS *}}
-                                                               {{if $u.account_type_raw==3}}fa-comments{{/if}}                 {{* ACCOUNT_TYPE_COMMUNITY *}}
-                                                       " title="{{$u.account_type}}"></i>
-                                                       {{/if}}
-                                                       {{if $u.is_admin}}<i class="fa fa-user-md text-primary" title="{{$siteadmin}}"></i>{{/if}}
-                                                       {{if $u.account_expired}}<i class="fa fa-clock-o text-warning" title="{{$accountexpired}}"></i>{{/if}}
-                                               </td>
-                                               {{/if}}
-                                               <td class="text-right">
-                                                       <button type="button" class="btn-link" onclick="return details({{$u.uid}})"><span class="caret"></span></button>
-                                               </td>
-                                       </tr>
-                                       <tr id="user-{{$u.uid}}-detail" class="hidden details">
-                                               <td>&nbsp;</td>
-                                               <td colspan="4">
-                                                       {{if $order_users != $th_users.2.1}}
-                                                               <p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.2.1}}">
-                                                                       &#8597; {{$th_users.2.0}}</a> : {{$u.register_date}}</p>
-                                                       {{/if}}
+                                                               <td class="text-right">
+                                                                       <button type="button" class="btn-link admin-settings-action-link" onclick="return details({{$u.uid}})"><span class="caret"></span></button>
+                                                               </td>
+                                                       </tr>
+                                                       <tr id="user-{{$u.uid}}-detail" class=" details hidden {{if $u.blocked != 0}}blocked{{/if}}">
+                                                               <td>&nbsp;</td>
+                                                               <td colspan="4">
+                                                                       {{if $order_users != $th_users.2.1}}
+                                                                       <p>
+                                                                               <button type="button" data-order-url="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.2.1}}" class="btn-link table-order">
+                                                                               &#8597; {{$th_users.2.0}}</button> : {{$u.register_date}}
+                                                                       </p>
+                                                                       {{/if}}
 
-                                                       {{if $order_users != $th_users.3.1}}
-                                                               <p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.3.1}}">
-                                                                               &#8597; {{$th_users.3.0}}</a> : {{$u.login_date}}</p>
-                                                       {{/if}}
+                                                                       {{if $order_users != $th_users.3.1}}
+                                                                       <p>
+                                                                               <button type="button" data-order-url="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.3.1}}" class="btn-link table-order">
+                                                                                       &#8597; {{$th_users.3.0}}</button> : {{$u.login_date}}
+                                                                       </p>
+                                                                       {{/if}}
 
-                                                       {{if $order_users != $th_users.4.1}}
-                                                               <p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.4.1}}">
-                                                                               &#8597; {{$th_users.4.0}}</a> : {{$u.lastitem_date}}</p>
-                                                       {{/if}}
+                                                                       {{if $order_users != $th_users.4.1}}
+                                                                       <p>
+                                                                               <button type="button" data-order-url="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.4.1}}" class="btn-link table-order">
+                                                                                       &#8597; {{$th_users.4.0}}</button> : {{$u.lastitem_date}}
+                                                                       </p>
+                                                                       {{/if}}
 
-                                                       {{if in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
-                                                               <p><a href="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.5.1}}">
-                                                                               &#8597; {{$th_users.5.0}}</a> : {{$u.page_flags}}{{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}, {{$u.account_type}}{{/if}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</p>
-                                                       {{/if}}
+                                                                       {{if in_array($order_users,[$th_users.2.1, $th_users.3.1, $th_users.4.1]) }}
+                                                                       <p>
+                                                                               <button type="button" data-order-url="{{$baseurl}}/admin/users/?o={{if $order_direction_users == "+"}}-{{/if}}{{$th_users.5.1}}" class="btn-link table-order">
+                                                                                       &#8597; {{$th_users.5.0}}</button> : {{$u.page_flags}}{{if $u.page_flags_raw==0 && $u.account_type_raw > 0}}, {{$u.account_type}}{{/if}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}
+                                                                       </p>
+                                                                       {{/if}}
 
-                                               </td>
-                                               <td class="text-right">
-                                                       {{if $u.is_deletable}}
-                                                               <a href="{{$baseurl}}/admin/users/block/{{$u.uid}}?t={{$form_security_token}}" title="{{if $u.blocked}}{{$unblock}}{{else}}{{$block}}{{/if}}">
-                                                                       {{if $u.blocked==0}}
-                                                                       <i class="fa fa-ban" aria-hidden="true"></i>
+                                                               </td>
+                                                               <td class="text-right">
+                                                                       {{if $u.is_deletable}}
+                                                                       <a href="{{$baseurl}}/admin/users/block/{{$u.uid}}?t={{$form_security_token}}" class="admin-settings-action-link"title="{{if $u.blocked}}{{$unblock}}{{else}}{{$block}}{{/if}}">
+                                                                               {{if $u.blocked == 0}}
+                                                                               <i class="fa fa-ban" aria-hidden="true"></i>
+                                                                               {{else}}
+                                                                               <i class="fa fa-circle-o" aria-hidden="true"></i>
+                                                                               {{/if}}
+                                                                       </a>
+                                                                       <a href="{{$baseurl}}/admin/users/delete/{{$u.uid}}?t={{$form_security_token}}" class="admin-settings-action-link" title="{{$delete}}" onclick="return confirm_delete('{{$confirm_delete}}','{{$u.name}}')">
+                                                                               <i class="fa fa-trash" aria-hidden="true"></i>
+                                                                       </a>
                                                                        {{else}}
-                                                                       <i class="fa fa-circle-o" aria-hidden="true"></i>
+                                                                       &nbsp;
                                                                        {{/if}}
-                                                               </a>
-                                                               <a href="{{$baseurl}}/admin/users/delete/{{$u.uid}}?t={{$form_security_token}}" title="{{$delete}}" onclick="return confirm_delete('{{$confirm_delete}}','{{$u.name}}')"><i class="fa fa-trash" aria-hidden="true"></i></a>
-                                                       {{else}}
-                                                               &nbsp;
-                                                       {{/if}}
-                                               </td>
-                                       </tr>
-                               {{/foreach}}
-                               </tbody>
-                       </table>
-                       <div class="panel-footer">
-                               <div class="row">
-                                       <div class="col-xs-3">
-                                               <div class="btn-group" role="group">
-                                                       <button type="button" class="btn btn-default selectall" data-select-all="users_ckbx"><i class="fa fa-check-square-o" aria-hidden="true"></i></button>
-                                                       <button type="button" class="btn btn-default selectnone" data-select-none="users_ckbx"><i class="fa fa-square-o" aria-hidden="true"></i></button>
+                                                               </td>
+                                                       </tr>
+                                               {{/foreach}}
+                                               </tbody>
+                                       </table>
+                                       <div class="panel-footer">
+                                               <div class="row">
+                                                       <div class="col-xs-3 admin-settings-footer-elements">
+                                                               <div class="checkbox">
+                                                                       <input type="checkbox" id="admin-settings-users-select" class="selecttoggle" data-select-class="users_ckbx"/>
+                                                                       <label for="admin-settings-users-select"></label>
+                                                               </div>
+                                                       </div>
+                                                       <div class="col-xs-9 admin-settings-footer-elements text-right">
+                                                               <button type="submit" name="page_users_block" value="1" class="btn btn-warning">
+                                                                       <i class="fa fa-ban" aria-hidden="true"></i> {{$block}} / <i class="fa fa-circle-o" aria-hidden="true"></i> {{$unblock}}
+                                                               </button>
+                                                               <button type="submit" name="page_users_delete" value="1" class="btn btn-danger" onclick="return confirm_delete('{{$confirm_delete_multi}}')">
+                                                                       <i class="fa fa-trash" aria-hidden="true"></i> {{$delete}}
+                                                               </button>
+                                                       </div>
                                                </div>
                                        </div>
-                                       <div class="col-xs-9 text-right">
-                                                       <button type="submit" name="page_users_block" class="btn btn-warning">  <i class="fa fa-ban" aria-hidden="true"></i> {{$block}} / <i class="fa fa-circle-o" aria-hidden="true"></i> {{$unblock}}</button>
-                                                       <button type="submit" name="page_users_delete" class="btn btn-danger" onclick="return confirm_delete('{{$confirm_delete_multi}}')"><i class="fa fa-trash" aria-hidden="true"></i> {{$delete}}</button>
-                                       </div>
+                                       {{else}}
+                                       <div class="panel-body text-center bg-danger">NO USERS?!?</div>
+                                       {{/if}}
                                </div>
                        </div>
-               {{else}}
-                       <div class="panel-body text-center bg-danger">NO USERS?!?</div>
-               {{/if}}
-               </div>
-
-
-
-       </form>
 
 
+                       <!--
+                               **
+                               *
+                               *               DELETED Users table
+                               *
+                               **
+                       -->
+                       {{if $deleted}}
+                       <div class="panel">
+                               <div class="section-subtitle-wrapper" role="tab" id="admin-settings-deleted">
+                                       <h4>
+                                               <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-deleted-collapse" aria-expanded="false" aria-controls="admin-settings-deleted-collapse">
+                                                       {{$h_deleted}} ({{count($deleted)}})
+                                               </a>
+                                       </h4>
+                               </div>
 
+                               <div id="admin-settings-deleted-collapse" class="panel-collapse collapse" role="tabpanel" aria-labelledby="admin-settings-deleted">
+                                       <table id="deleted" class="table table-hover">
+                                               <thead>
+                                                       <tr>
+                                                               <th></th>
+                                                               {{foreach $th_deleted as $k=>$th}}
+                                                                       {{if in_array($k,[0,1,5])}}
+                                                                       <th>{{$th}}</th>
+                                                                       {{/if}}
+                                                               {{/foreach}}
+                                                       </tr>
+                                               </thead>
+                                               <tbody>
+                                               {{foreach $deleted as $u}}
+                                                       <tr>
+                                                               <td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
+                                                               <td><a href="{{$u.url}}" title="{{$u.nickname}}" >{{$u.name}}</a></td>
+                                                               <td>{{$u.email}}</td>
+                                                               <td>{{$u.deleted}}</td>
+                                                       </tr>
+                                               {{/foreach}}
+                                               </tbody>
+                                       </table>
+                               </div>
+                       </div>
+                       {{/if}}
 
 
-<!--
-       **
-       *
-       *               DELETED Users table
-       *
-       **
--->
-       {{if $deleted}}
-       <div class="panel panel-default">
-               <div class="panel-heading"><h3 class="panel-title">{{$h_deleted}}</h3></div>
-               <table id="deleted" class="table table-hover">
-                       <thead>
-                       <tr>
-                               <th></th>
-                               {{foreach $th_deleted as $k=>$th}}
-                                       {{if in_array($k,[0,1,5])}}
-                                       <th>{{$th}}</th>
-                                       {{/if}}
-                               {{/foreach}}
-                       </tr>
-                       </thead>
-                       <tbody>
-                       {{foreach $deleted as $u}}
-                               <tr>
-                                       <td><img class="avatar-nano" src="{{$u.micro}}" title="{{$u.nickname}}"></td>
-                                       <td><a href="{{$u.url}}" title="{{$u.nickname}}" >{{$u.name}}</a></td>
-                                       <td>{{$u.email}}</td>
-                                       <td>{{$u.deleted}}</td>
-                               </tr>
-                       {{/foreach}}
-                       </tbody>
-               </table>
-       </div>
-{{/if}}
 
+                       <!--
+                               **
+                               *
+                               *               NEW USER Form
+                               *
+                               **
+                       -->
+                       <div class="panel">
+                               <div class="section-subtitle-wrapper" role="tab" id="admin-settings-new-user">
+                                       <h4>
+                                               <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#admin-settings" href="#admin-settings-new-user-collapse" aria-expanded="false" aria-controls="admin-settings-new-user-collapse">
+                                                       {{$h_newuser}}
+                                               </a>
+                                       </h4>
+                               </div>
 
+                               <div id="admin-settings-new-user-collapse" class="panel-collapse collapse" role="tabpanel" aria-labelledby="admin-settings-new-user">
+                                       <div class="panel-body">
+                                               {{include file="field_input.tpl" field=$newusername}}
+                                               {{include file="field_input.tpl" field=$newusernickname}}
+                                               {{include file="field_input.tpl" field=$newuseremail}}
+                                       </div>
+                                       <div class="panel-footer text-right">
+                                               <button type="submit" class="btn btn-primary">{{$submit}}</button>
+                                       </div>
 
-<!--
-       **
-       *
-       *               NEW USER Form
-       *
-       **
--->
-       <form action="{{$baseurl}}/admin/users" method="post">
-               <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
 
-               <div class="panel panel-default">
-                       <div class="panel-heading"><h3 class="panel-title">{{$h_newuser}}</h3></div>
-                       <div class="panel-body">
-                               {{include file="field_input.tpl" field=$newusername}}
-                               {{include file="field_input.tpl" field=$newusernickname}}
-                               {{include file="field_input.tpl" field=$newuseremail}}
+                               </div>
                        </div>
-                       <div class="panel-footer text-right">
-                               <button type="submit" class="btn btn-primary">{{$submit}}</button>
-                       </form>
                </div>
        </form>
-
 </div>